# Environment
.env
.env.*
!.env.example

# Python
__pycache__/
*.pyc
.pytest_cache/
.venv/
venv/
*.egg-info/

# Node
node_modules/
dist/

# Claude
.claude/

# Logs
*.log

# OS
.DS_Store

# Reports
reports/

# Prompts (contains proprietary prompts)
backend/prompts/

# Backend runtime data (profiles, exports, cached results)
backend/data/*
# But track knowledge base (ships with build, needed in production)
!backend/data/knowledge/
# Feedback logs are runtime data, not KB
backend/data/knowledge/feedback/*.jsonl

# Documentation (generated)
docs/
