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

# Test/Coverage
.coverage
.coverage.*
htmlcov/
.pytest_cache/
.mypy_cache/
.ruff_cache/
.hypothesis/

# IDE
.vscode/
.idea/
*.swp

# OS
.DS_Store

# Local audit logs created by examples / tests
*.jsonl
!docs/**/*.jsonl
!examples/**/sample-*.jsonl
!tests/fixtures/**/*.jsonl
!tests/eval/**/*.jsonl

# Secrets
.env
.env.*
!.env.example

# Hatchling
.hatch/

# Internal dev-tooling — must not ship in the public OSS repo.
# .great_cto/  Great-CTO project framework (an internal author tool)
# .claude/     Claude Code session state: agent memory, worktrees, schedules
# .beads/      Beads task tracker — local task DB, not for users
.claude/
.great_cto/
.beads/

# CI / coverage artefacts
coverage.xml
reports/
