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

.pytest_cache/
.mypy_cache/
.ruff_cache/
.coverage
htmlcov/

.venv/
venv/

# local scratch / preview artifacts
tmp/
env/

.lynx/
*.db
*.db-journal
*.db-wal
*.db-shm

.DS_Store
.idea/
.vscode/

# Secrets — never commit. .env.example is allowed for templates.
.env
.env.*
!.env.example

# Locally generated by `lynx init` in the repo root — never commit.
/policy.yaml
/lynx.toml
/demo-workspace/
/data/

# Wheel/sdist build outputs
dist/
*.whl
*.tar.gz

# Internal working docs — research notes, planning, scratch.
# Never gets committed; see internal/README.md for what lives there.
/internal/

# Demo / promo material — animation scripts, rendered videos, screen
# recordings. Local-only. See demo/README.md.
/demo/

# Agent/session tooling — local only, never commit.
.claude/

# Audit-log output from running examples (e.g. jsonl_sink, example 06) —
# runtime artifacts, never source.
*.jsonl

