# AI development config (private)
.claude/
.codex/
.gemini/
CLAUDE.md
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/

# Frontend build output (bundled into wheel via hatch artifacts)
src/insight_blueprint/static/

# Frontend dependencies
frontend/node_modules/

# Playwright test artifacts
test-results/
frontend/test-results/
frontend/playwright-report/

