PLAN.md

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

# PocketTeam init artifacts (generated by `pocketteam init`)
# These are runtime files, not source code.
# When bootstrapping, they live here but are never committed.
.pocketteam/
.claude/
# .github/ is needed for CI (GitHub Actions) — do NOT ignore it
# User projects get their own .gitignore via `pocketteam init`
.mcp.json

# Node / Dashboard
node_modules/
dashboard/dist/

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

# Secrets / Credentials (belt and suspenders)
*.pem
*.key
*.p12
.pypirc
credentials.json
service-account.json

# macOS
.DS_Store

# Testing
.coverage
htmlcov/
.pytest_cache/

# mypy / ruff
.mypy_cache/
.ruff_cache/
