| # Python | |
| __pycache__/ | |
| *.py[cod] | |
| *$py.class | |
| *.so | |
| .Python | |
| build/ | |
| develop-eggs/ | |
| dist/ | |
| downloads/ | |
| eggs/ | |
| .eggs/ | |
| lib/ | |
| lib64/ | |
| parts/ | |
| sdist/ | |
| var/ | |
| wheels/ | |
| *.egg-info/ | |
| .installed.cfg | |
| *.egg | |
| # Virtual environments | |
| .venv/ | |
| venv/ | |
| ENV/ | |
| # IDE | |
| .idea/ | |
| .vscode/ | |
| *.swp | |
| *.swo | |
| *~ | |
| # Testing | |
| .pytest_cache/ | |
| .coverage | |
| htmlcov/ | |
| .tox/ | |
| .nox/ | |
| .hypothesis/ | |
| # Data (runtime generated) | |
| data/memory.jsonl | |
| data/codebook.json | |
| data/concepts.json | |
| data/synapses.json | |
| data/warm_tier/*.mmap | |
| data/warm_tier/*.json | |
| data/warm_tier/*.npy | |
| data/cold_archive/*.gz | |
| vector_core/corpus_ready.json | |
| # Logs | |
| *.log | |
| logs/ | |
| # Local dependency/vendor dumps | |
| deps/ | |
| # Benchmarks and ad-hoc outputs | |
| results*.txt | |
| benchmark_results.txt | |
| # OS | |
| .DS_Store | |
| Thumbs.db | |
| # Secrets (should never exist, but just in case) | |
| .env | |
| *.pem | |
| *.key | |
| # Internal planning documents – NOT for public repo | |
| AGENT_MASTER_PLAN.md | |
| # Local IDE / agent settings | |
| .claude/ | |
| # Runtime artifacts | |
| error_log.txt | |