# Internal (not shipped in OSS)
internal/

# Environment
.env
.env.*
!.env.example

# Local scaffolded harness config (defaults ship in monkeybot-cli scaffold_defaults/)
/monkeybot_config/

# Demo agent live config (materialized from monkeybot_config_example/ by demo_agent/run.sh)
demo_agent/monkeybot_config/

# Live eval run artifacts (only evals/baselines/ is versioned)
/evals/runs/

# Python
__pycache__/
*.py[cod]
*.pyo
*.pyd
.Python
*.egg-info/
dist/
build/
.eggs/
*.egg

# uv
.venv/
.uv/

# Data (SQLite DB + memory files — never commit)
data/

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

# macOS
.DS_Store

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

# Docker
docker/data/

# Planning Documents
.prt/
.monkeymode/

# Reference clones (read-only)
code/

# Local venv for evals dependency experiments
.evals-venv/