# Version control
.git
.gitignore

# Python artifacts
__pycache__
*.pyc
*.pyo
*.egg-info
dist/
build/
*.egg

# Virtual environments
.venv
venv
env

# IDE / editor
.vscode
.idea
*.swp
*.swo

# Test artifacts
.pytest_cache
htmlcov
.coverage

# TrueMend runtime artifacts
.truemend/cache
.truemend-workflow.json

# Build artifacts
dist/
*.exe

# Documentation source (not needed in container)
docs/
tasks/
CLAUDE.md
KICKOFF.md
*.md
!prompts/*.md

# Keys (never ship private keys)
keys/
*.pem

# Node packages (for npx wrapper, not needed in Python image)
packages/
node_modules/
