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

# Test / tooling
.pytest_cache/
.ruff_cache/
.mypy_cache/

# Env / secrets — ship .env.example only
.env
.env.*
!.env.example

# OS / editor
.DS_Store
.idea/
*.swp

# Strategy / business docs — never in the public tree (canonical set lives in Notion)
private/
# Internal planning under docs/ stays private; the public PRODUCT docs
# (docs/*.md, docs/assets/) ship in the open tree.
docs/decisions/
docs/discovery/
docs/strategy/
docs/superpowers/
# root project instructions only — the provider skill kit ships its own skills/CLAUDE.md
/CLAUDE.md

# Claude Code local config, agents, and skills (internal)
.claude/

# MCP — real config carries a token; ship .mcp.json.example instead
.mcp.json
!skills/.mcp.json
