# Git
.git/
.gitignore
.gitattributes

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
*.pyc
.pytest_cache/
.coverage
htmlcov/
.tox/
.hypothesis/
venv/
env/
ENV/

# Node.js / UI
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*
ui/dist/

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

# peon-mcp specific
*.db
*.db-shm
*.db-wal
.peon/
.peon-logs/
.peon-worktrees/

# Docker
Dockerfile*
docker-compose*.yml
.dockerignore

# CI/CD
.github/

# Documentation (not needed in image, except README.md which is required for wheel build)
docs/
*.md
!README.md

# Environment files (never include credentials!)
.env
.env.*
!.env.example

# Testing
.pytest_cache/
tests/
