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

# Testing
.pytest_cache/
.coverage
htmlcov/
coverage.xml
.mypy_cache/
.ruff_cache/

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

# OS
.DS_Store
Thumbs.db

# Project
.tmp/
*.log
.env
.env.*

# Local working files (not committed)
docs/superpowers/
.claude/
hyperi-ai/
.mcp.json
CLAUDE.md
STATE.md
TODO.md
.ai-version

# Git worktrees
.worktrees/

# OS junk (never useful in repo)
*~

# Local environment files (never commit -- contain secrets)
!.env.example
!.env.example.*

# hyperi-ai per-project context + tool-specific equivalents.
# Real files in project tree (Claude Code / Codex / Gemini / Cursor
# all load these from project root natively). Local-only, never
# committed -- mirrored in .git/info/exclude.
AGENTS.md
GEMINI.md
.codex/
.cursor/
.gemini/
.cursorrules

# Local scratch / tmp (CORE.md: scratch goes here, gitignored, NOT
# /tmp). Bare patterns (no leading slash) match a tmp dir at ANY
# depth, so these cover top-level .tmp/ and tmp/ as well as nested
# ones like tests/tmp/. Mirrored in attach.py _DEFAULT_EXCLUDES.
tmp/

# Python build artefacts
*.so
.Python
develop-eggs/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
.installed.cfg
MANIFEST

# Python virtual envs and caches
env/
ENV/
.pyre/
.pytype/
.coverage.*
.tox/
.nox/
pip-wheel-metadata/
