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

# Model weights / caches — never commit (multi-GB; belong in ComfyUI/models or HF cache)
*.gguf
*.safetensors
*.bin
*.pt
*.pth
models/
.cache/

# Instrumentation / trace dumps
*.trace.json
traces/
outputs/

# flip-book tool: generated per-step frames (regenerable, not source)
tools/flipbook/out/

# Tooling
.pytest_cache/
.ruff_cache/
.mypy_cache/
.coverage
# ADR-CDG-013 §3: `[tool.coverage.run] parallel = true` names per-process
# files `.coverage.<host>.<pid>.<rand>` (unit suite + e2e-battery subprocess
# data, pre-`coverage combine`) — never committed.
.coverage.*

# Editor / OS
.vscode/
.idea/
.DS_Store
.claude/

# Agent-ops residue (kept locally, never shipped in the public tree)
handoffs/
CLAUDE.md
plan.md
loose-ends.md
test-coverage-plan.md

