# OS
.DS_Store

# Python caches
__pycache__/
*.py[cod]
.pytest_cache/
.mypy_cache/
.ruff_cache/

# Packaging/build artifacts
*.egg-info/
build/
dist/

# Local virtualenvs
.venv/
venv/

# uv caches
.uv-cache/

# Local env files (never commit)
.env
.env.*
*.env
!.env.example
!**/.env.example

# Local DB compose (developers can run Postgres locally)
agents-db/docker-compose.yml

# Agent runtime state
*_data.json
private_keys.json
agents/reel-agent/output/

# Local tooling folders
_tools/
.pycache/

