Budget defaults raised from 50/10/50 to 100/100/100 (read-only, non-read-only, no-agent). Per-agent max_tool_calls from AGENTS.md still overrides. Added .claude/worktrees/ to .codecontextignore to prevent get_codebase_overview from parsing empty stub files in stale worktree node_modules. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
35 lines
507 B
Plaintext
35 lines
507 B
Plaintext
# .codecontextignore — paths codecontext skips during analysis
|
|
# Copy to your project root and customize. Same syntax as .gitignore.
|
|
|
|
# Dependencies / vendored code
|
|
node_modules/
|
|
vendor/
|
|
.venv/
|
|
venv/
|
|
__pycache__/
|
|
target/
|
|
|
|
# Build artifacts
|
|
dist/
|
|
build/
|
|
out/
|
|
.next/
|
|
.nuxt/
|
|
.svelte-kit/
|
|
|
|
# IDE / tooling
|
|
.opencode/
|
|
.vscode/
|
|
.idea/
|
|
.claude/worktrees/
|
|
|
|
# Test artifacts / coverage
|
|
coverage/
|
|
.nyc_output/
|
|
.pytest_cache/
|
|
|
|
# Lock files (rarely have meaningful symbols)
|
|
package-lock.json
|
|
yarn.lock
|
|
pnpm-lock.yaml
|