# Python bytecode / caches
__pycache__/
*.py[cod]
.pytest_cache/
.ruff_cache/
.mypy_cache/

# Virtual environments
.venv/
venv/

# Build / packaging artifacts
dist/
build/
*.egg-info/

# Secrets / environment
.env
.env.*
!.env.example

# RepoLens local runtime state (config + SQLite databases)
.repolens/
*.sqlite3

# Documentation: publish user-facing docs; keep internal/strategy docs local.
docs/implementation-plan.md
docs/harvest/
docs/architecture/
docs/adrs/
docs/dogfood/

# Local run / smoke-test scratch directories
.live-run/
.smoke-venv/
.smoke-repo/

# Vendored reference projects: local-only architecture references.
# Reference-only, excluded from the sdist, ~199MB, and each contains its own
# nested .git. Kept out of the published repo; the harvest analysis lives in docs/.
external/

# Local agent / editor tooling config (not part of the product)
.claude/

# Preserved original README before docs links were trimmed (local only)
readmeoriginal.md
