| 1 | # Build artifacts |
| 2 | /target |
| 3 | *.pdb |
| 4 | *.exe |
| 5 | *.dll |
| 6 | *.so |
| 7 | *.dylib |
| 8 | *.rlib |
| 9 | *.o |
| 10 | |
| 11 | # Development |
| 12 | .env |
| 13 | .env.* |
| 14 | !.env.example |
| 15 | node_modules/ |
| 16 | .vscode/ |
| 17 | .idea/ |
| 18 | *.swp |
| 19 | *.swo |
| 20 | *~ |
| 21 | .DS_Store |
| 22 | Thumbs.db |
| 23 | |
| 24 | # Python |
| 25 | __pycache__/ |
| 26 | *.py[cod] |
| 27 | *$py.class |
| 28 | .pytest_cache/ |
| 29 | venv/ |
| 30 | ENV/ |
| 31 | env/ |
| 32 | .venv/ |
| 33 | *.egg-info/ |
| 34 | dist/ |
| 35 | |
| 36 | # Logs |
| 37 | *.log |
| 38 | |
| 39 | # Generated |
| 40 | outputs/ |
| 41 | tmp/ |
| 42 | |
| 43 | # Reference papers / large research blobs (keep locally if needed, don't ship) |
| 44 | docs/DeepSeek_V4.pdf |
| 45 | docs/*.pdf |
| 46 | |
| 47 | # Note: Cargo.lock is intentionally NOT ignored for reproducible builds |
| 48 | |
| 49 | # Local dev scripts and temp files |
| 50 | *.sh |
| 51 | !scripts/** |
| 52 | test.txt |
| 53 | TODO*.md |
| 54 | todo*.md |
| 55 | CLAUDE.md |
| 56 | NEXT_SESSION.md |
| 57 | AI_HANDOFF.md |
| 58 | result.json |
| 59 | count_deps.py |
| 60 | project_overhaul_prompt.md |
| 61 | .codex/ |
| 62 | .context/ |
| 63 | |
| 64 | # Local runtime state |
| 65 | .deepseek/ |
| 66 | **/session_*.json |
| 67 | *.db |
| 68 | |
| 69 | # Companion app (tracked separately) |
| 70 | apps/ |
| 71 | |
| 72 | # Claude Code runtime artifacts |
| 73 | .claude/scheduled_tasks.lock |
| 74 | .claude/worktrees/ |
| 75 | .worktrees/ |
| 76 | .ace-tool/ |
| 77 | |
| 78 | # Local-only Claude / ralph notes |
| 79 | .claude/*.local.md |
| 80 | .claude/*.local.json |
| 81 | |
| 82 | # Maintainer-internal design notes (trade-secret material, never published) |
| 83 | .private/ |
| 84 |