# Version control & CI
.git/
.github/

# IDE & editor
.claude/
.vscode/
.editorconfig

# Python artifacts
.venv/
agent/.venv/
__pycache__/
*.pyc
.pytest_cache/
.ruff_cache/
agent/vibe_trading.egg-info/
agent/vibe_trading_ai.egg-info/
agent/__pycache__/

# Runtime data (generated at runtime, not in repo)
data/
agent/runs/
agent/sessions/
agent/.swarm/runs/
agent/.ui_runtime/
agent/.tasks/

# Env files (mounted via docker-compose env_file)
.env
agent/.env

# Frontend build (built inside Docker, don't copy local)
frontend/dist/
frontend/node_modules/
frontend/tsconfig.tsbuildinfo

# Tests & docs (not needed in production image)
agent/tests/
docs/
assets/
build/
dist/

# Project docs
CLAUDE.md
CONTRIBUTING.md
*.md
!README.md
!LICENSE
