| # Python bytecode and caches | |
| __pycache__/ | |
| *.py[cod] | |
| *$py.class | |
| .claude/ | |
| # Virtual environments | |
| .venv/ | |
| venv/ | |
| env/ | |
| # Test and tooling caches | |
| .pytest_cache/ | |
| .mypy_cache/ | |
| .ruff_cache/ | |
| .coverage | |
| .coverage.* | |
| htmlcov/ | |
| # Build and packaging | |
| build/ | |
| dist/ | |
| *.egg-info/ | |
| .eggs/ | |
| # Logs | |
| *.log | |
| # Environment and secrets | |
| .env | |
| .env.* | |
| !.env.example | |
| # IDE and editor | |
| .vscode/ | |
| .idea/ | |
| # OS files | |
| .DS_Store | |
| Thumbs.db | |
| *.zip | |
| context/ | |