# Git files
.git/
.gitignore
.github/

# Python cache
__pycache__/
*.py[cod]
*$py.class
*.so
*.egg
*.egg-info/
dist/
build/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# Virtual environments
venv/
ENV/
env/
.venv/
.poetry/

# IDE files
.vscode/
.idea/
*.swp
*.swo
*.swn
.DS_Store

# Testing
.pytest_cache/
.coverage
htmlcov/
.tox/
.mypy_cache/
.dmypy.json
dmypy.json

# Documentation (except required files)
docs/
*.md
!README.md
!CHANGELOG.md

# Homebrew tap (separate repository)
homebrew-claude-cto/

# Handoff docs
HANDOFF_DOCS_TO_NEXT_DEVELOPER/

# Test artifacts
tests/
test-directory/
pytest.ini
run_tests.sh
coverage.xml
tests/reports/

# Local development files
*.log
*.sqlite
*.db
.env
.env.*

# Build artifacts
*.whl
*.tar.gz

# Claude CTO specific
~/.claude-cto/
logs/
*.raw.log
task_*.log

# Temporary files
tmp/
temp/
*.tmp

# Scripts (not needed in container)
scripts/
*.sh
!docker-entrypoint.sh

# CI/CD
.travis.yml
.gitlab-ci.yml
azure-pipelines.yml

# Node modules (if any)
node_modules/

# Docker files (not needed in build context)
docker-compose*.yml
Dockerfile.*