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

# Tooling caches
.pytest_cache/
.ruff_cache/
.mypy_cache/
.coverage
htmlcov/

# Runspool runtime state (local-first: never commit task data or databases)
workspace/
*.db
*.db-journal
*.db-wal
.env

# Ignore a config.yaml created at the repo root by `runspool init`, but keep the
# committed example configs under examples/ (note the leading slash anchors this
# to the repo root only).
/config.yaml

# Examples create their own local state
examples/**/workspace/
examples/**/runspool.db

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