# Python bytecode and build artifacts
__pycache__/
*.py[cod]
*.egg-info/
.eggs/
build/
dist/

# Virtual environments
.venv/
venv/
env/

# Tooling caches
.pytest_cache/
.mypy_cache/
.ruff_cache/
.coverage
htmlcov/

# Local agent tooling state (never ship or commit)
.atl/
.codegraph/
.hermes/

# Environment files — keep the committed template, never the real one
.env
.env.*
!.env.example

# OS noise
.DS_Store
Thumbs.db
