Terminal-based AI coding agent with interactive TUI for autonomous code generation.
Features: - Interactive TUI with React/Ink - Autonomous agent with tool calls (bash, read, write, edit, glob, grep) - Permission system with pattern-based rules - Session management with auto-compaction - Dual providers: GitHub Copilot and Ollama - MCP server integration - Todo panel and theme system - Streaming responses - GitHub-compatible project context
This commit is contained in:
263
.gitignore
vendored
Normal file
263
.gitignore
vendored
Normal file
@@ -0,0 +1,263 @@
|
||||
# Codetyper.nvim - AI coding partner files
|
||||
*.coder.*
|
||||
.coder/
|
||||
.codetyper/
|
||||
.claude/
|
||||
# Node + TypeScript (generated via gitignore.io)
|
||||
|
||||
# Logs
|
||||
logs
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
pnpm-debug.log*
|
||||
|
||||
# Runtime data
|
||||
pids
|
||||
*.pid
|
||||
*.seed
|
||||
*.pid.lock
|
||||
|
||||
# Directory for instrumented libs generated by jscoverage/JSCover
|
||||
lib-cov
|
||||
|
||||
# Coverage directory
|
||||
coverage/
|
||||
*.lcov
|
||||
.nyc_output
|
||||
|
||||
# Grunt intermediate storage
|
||||
.grunt
|
||||
|
||||
# Bower dependency directory
|
||||
bower_components/
|
||||
|
||||
# Compiled binary addons
|
||||
build/Release
|
||||
|
||||
# Dependency directories
|
||||
node_modules/
|
||||
jspm_packages/
|
||||
|
||||
# TypeScript build info
|
||||
*.tsbuildinfo
|
||||
|
||||
# Compiled output
|
||||
dist/
|
||||
out/
|
||||
build/
|
||||
lib/
|
||||
|
||||
# Next.js, Nuxt.js, SvelteKit, Vercel, etc.
|
||||
.next/
|
||||
.nuxt/
|
||||
.svelte-kit/
|
||||
.vercel/
|
||||
.cache/
|
||||
.parcel-cache/
|
||||
.output/
|
||||
.turbo/
|
||||
|
||||
# Serverless directories
|
||||
.serverless/
|
||||
|
||||
# Environment files
|
||||
.env
|
||||
.env.*.local
|
||||
.env.local
|
||||
|
||||
# IDEs and editors
|
||||
.vscode/
|
||||
!.vscode/settings.json
|
||||
!.vscode/tasks.json
|
||||
!.vscode/launch.json
|
||||
!.vscode/extensions.json
|
||||
.idea/
|
||||
*.sublime-project
|
||||
*.sublime-workspace
|
||||
|
||||
# Misc
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
*.swp
|
||||
|
||||
# OS generated files
|
||||
Desktop.ini
|
||||
*/Thumbs.db
|
||||
|
||||
# Optional npm cache
|
||||
.npm
|
||||
|
||||
# Yarn Integrity file
|
||||
.yarn-integrity
|
||||
|
||||
# Yarn v2
|
||||
.pnp.*
|
||||
.yarn/*
|
||||
!.yarn/releases
|
||||
!.yarn/plugins
|
||||
!.yarn/sdks
|
||||
!.yarn/versions
|
||||
|
||||
# Coverage and test output
|
||||
coverage/
|
||||
test-results/
|
||||
|
||||
# Temporary files
|
||||
tmp/
|
||||
temp/
|
||||
|
||||
# eslint cache
|
||||
.eslintcache
|
||||
|
||||
# Node + TypeScript (generated via gitignore.io)
|
||||
# Logs
|
||||
logs
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
pnpm-debug.log*
|
||||
lerna-debug.log*
|
||||
|
||||
# Runtime data
|
||||
pids
|
||||
*.pid
|
||||
*.seed
|
||||
*.pid.lock
|
||||
|
||||
# Directory for instrumented libs generated by jscoverage/JSCover
|
||||
lib-cov
|
||||
|
||||
# Coverage directory
|
||||
coverage/
|
||||
*.lcov
|
||||
.nyc_output
|
||||
|
||||
# Grunt intermediate storage
|
||||
.grunt
|
||||
|
||||
# Bower dependency directory
|
||||
bower_components/
|
||||
|
||||
# Compiled binary addons
|
||||
build/Release
|
||||
|
||||
# Dependency directories
|
||||
node_modules/
|
||||
jspm_packages/
|
||||
|
||||
# TypeScript build info
|
||||
*.tsbuildinfo
|
||||
|
||||
# Compiled output
|
||||
dist/
|
||||
out/
|
||||
build/
|
||||
lib/
|
||||
|
||||
# Next.js, Nuxt.js, SvelteKit, Vercel, etc.
|
||||
.next/
|
||||
.nuxt/
|
||||
.svelte-kit/
|
||||
.vercel/
|
||||
.cache/
|
||||
.parcel-cache/
|
||||
.output/
|
||||
.turbo/
|
||||
|
||||
# Serverless directories
|
||||
.serverless/
|
||||
|
||||
# Environment files
|
||||
.env
|
||||
.env.*.local
|
||||
.env.local
|
||||
.env.test
|
||||
.env.production.local
|
||||
|
||||
# dotenv environment variables for direnv
|
||||
.envrc
|
||||
|
||||
# Local env files
|
||||
.local/
|
||||
|
||||
# IDEs and editors
|
||||
.vscode/
|
||||
!.vscode/settings.json
|
||||
!.vscode/tasks.json
|
||||
!.vscode/launch.json
|
||||
!.vscode/extensions.json
|
||||
.idea/
|
||||
*.sublime-project
|
||||
*.sublime-workspace
|
||||
|
||||
# Misc
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
*.swp
|
||||
|
||||
# OS generated files
|
||||
Desktop.ini
|
||||
*/Thumbs.db
|
||||
|
||||
# Optional npm cache
|
||||
.npm
|
||||
|
||||
# Yarn Integrity file
|
||||
.yarn-integrity
|
||||
|
||||
# Yarn v2 / Plug'n'Play
|
||||
.pnp.*
|
||||
.yarn/*
|
||||
!.yarn/releases
|
||||
!.yarn/plugins
|
||||
!.yarn/sdks
|
||||
!.yarn/versions
|
||||
|
||||
# pnpm
|
||||
.pnpm-store/
|
||||
.pnpm-debug.log
|
||||
|
||||
# Coverage and test output
|
||||
coverage/
|
||||
test-results/
|
||||
jest-test-results.json
|
||||
|
||||
# Temporary files
|
||||
tmp/
|
||||
temp/
|
||||
|
||||
# eslint cache
|
||||
.eslintcache
|
||||
|
||||
# Parcel cache
|
||||
.cache/
|
||||
.parcel-cache/
|
||||
|
||||
# Turborepo
|
||||
.turbo/
|
||||
|
||||
# Storybook build outputs
|
||||
out-storybook/
|
||||
storybook-static/
|
||||
|
||||
# Build artifacts from tools
|
||||
*.tgz
|
||||
*.snapshot
|
||||
|
||||
# Generated files
|
||||
*.log.*
|
||||
npm-debug.log*
|
||||
|
||||
# Lockfiles (if you prefer to ignore; typically keep them)
|
||||
# package-lock.json
|
||||
# yarn.lock
|
||||
# pnpm-lock.yaml
|
||||
|
||||
# Local build files
|
||||
.cache-loader
|
||||
!.env.example
|
||||
|
||||
# Other
|
||||
.vscode-test/
|
||||
coverage-final.json
|
||||
Reference in New Issue
Block a user