# --- Python bytecode ---
__pycache__/
*.py[cod]
*.pyo

# --- Build / packaging ---
.eggs/
*.egg-info/
dist/
build/

# --- Virtual environments ---
.venv/
venv/
env/

# --- Tool caches ---
.mypy_cache/
.ruff_cache/
.pytest_cache/

# --- Coverage ---
htmlcov/
.coverage
.coverage.*

# --- Misc ---
*.html
*.log
.DS_Store

# --- Secrets / credentials (NEVER commit) ---
.env
*.pem
*.key
credentials.json
config.json
*_credentials*

# --- Claude memory / design docs (local only, never commit) ---
CLAUDE.md
plan/
plan/*.md
docs/PROGRESS.md

# --- CASCAQit mock state ---
.mock_state.txt

