# Secrets — never commit. There is a populated .env in AI_CODE/; committing it
# would put the key in history permanently, where deleting the file later does
# not remove it.
.env
.env.*
!.env.example
*.pem
*.key

# Build artefacts
dist/
build/
*.egg-info/

# Python
__pycache__/
*.py[cod]
*.egg-info/
.venv/
venv/
.pytest_cache/
.mypy_cache/
.ruff_cache/

# Local databases and generated output
*.sqlite
*.sqlite3
*.db
diagram_output/

# OS
Thumbs.db
desktop.ini
.DS_Store

# Internal operating documents. Not secret, but not the public's business either:
# release checklists, market research, and the legal/ownership record, which
# names real people. Nothing here helps somebody use the library.
private/

# Harvested corpora. Several megabytes of other people's CC BY-SA prose,
# fetched once and reused. What belongs in the repository is what this project
# derived from it -- counts, clusters, conclusions -- plus the links back.
data/corpus/

# The generated outreach draft, kept at the root so it is easy to find and
# edit. Regenerate any time with `python ops.py draft reddit_pcb`; the edited
# version is yours and does not belong in the published history.
reddit_post.md
