# AI development config
# CLAUDE.md, .claude/rules, .claude/hooks are tracked (dev-flow source of truth).
# Only personal/local settings are ignored.
.claude/settings.local.json
.codex/
.gemini/
CLAUDE.local.md

# Environment
.env
.env.*
!.env.example

# Secrets
*.pem
*.key
credentials*
*secret*

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
.venv/
venv/
ENV/
.eggs/
*.egg-info/
dist/
build/

# Test / Coverage
.pytest_cache/
.coverage
htmlcov/
.tox/
.nox/

# Type checking
.mypy_cache/
.dmypy.json

# IDE
.idea/
.vscode/
*.swp
*.swo

# OS
.DS_Store
Thumbs.db

# Generated images
summary.png

# Logs
*.log
logs/

# insight-blueprint runtime state (batch runs, approval tokens, per-clone stubs)
.insight/runs/
.insight/premortem/
.insight/.sqlite/
.insight/config.yaml
.insight/rules/analysis_rules.yaml
.insight/rules/review_rules.yaml
.insight/rules/extracted_knowledge.yaml

# Jupyter
.ipynb_checkpoints/

