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

# Databases / ledger artifacts
*.db
*.db-journal
*.sqlite
*.sqlite3

# Virtual environments (local artifact, never committed)
.venv/
venv/
env/

# Benchmark output artifacts (README shows a representative run instead)
benchmark/results/*
!benchmark/results/.gitkeep

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

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

# Editor / OS
.vscode/
.idea/
.DS_Store
Thumbs.db

# Internal build/planning docs — NOT for the public repository. These are the
# private specs used to build Memzia; they stay on the maintainer's machine.
PRD.md
CLAUDE_CODE_BUILD_PROMPT.md
INSTRUCTIONS.md

# Local AI-assistant guidance (Claude Code). Useful locally, not published.
CLAUDE.md
