# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
dist/
downloads/
eggs/
.eggs/
*.egg-info/
*.egg
wheels/
share/python-wheels/
MANIFEST

# Virtual environments
.venv/
venv/
env/
ENV/
.python-version

# Packaging / build backends
.hatch/

# Test / coverage / type / lint caches
.pytest_cache/
.mypy_cache/
.ruff_cache/
.coverage
.coverage.*
htmlcov/
coverage.xml
.tox/
.nox/

# Type checking
.dmypy.json
dmypy.json

# Environments / secrets
.env
.env.*
*.local

# pip / private index credentials (never commit)
pip.conf
.pypirc

# IDE / OS
.idea/
.vscode/
*.swp
.DS_Store

# Local data / artifacts (durable run store, artifact store, etc. when run locally)
*.db
*.sqlite3
/data/
/artifacts/

# Only the tracked examples ship; any other example dir is local-only.
examples/*
!examples/__init__.py
!examples/po_demo/
!examples/quickstart/

# Local-only live/integration evaluation tests (need running services; see tests/local/README.md).
tests/local/

# Local-only build/agent context — not for end users (kept on disk, out of git and sdists).
/CLAUDE.md
/docs/DESIGN.md
