# Secrets - never commit
.env
.env.*
!.env.example

# Local client config (machine-specific, not for the published repo)
.mcp.json

# Python
__pycache__/
*.py[cod]
*$py.class
*.egg-info/
.eggs/
build/
dist/
wheels/

# Virtual environments
.venv/
venv/
env/

# uv
# (uv.lock IS committed - it pins the dependency graph)

# Test / lint caches
.pytest_cache/
.ruff_cache/
.mypy_cache/
.coverage
htmlcov/

# Editors / OS
.vscode/
.idea/
*.swp
.DS_Store
Thumbs.db
