# Python virtual environments
.venv/
venv/
env/
.env/

# Python bytecode
__pycache__/
*.py[cod]
*$py.class
*.so

# Distribution / packaging
dist/
build/
*.egg-info/
*.egg

# Environment files
.env
.env.local
.env.*.local

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

# OS files
.DS_Store
Thumbs.db

# Test artifacts (generated during testing)
tests/**/output/
tests/**/*.db
tests/**/faiss_index/
tests/**/chroma_db/
tests/**/docs/*.pdf
tests/**/docs/*.txt

# Local plugin settings (user-specific)
# .claude/settings.local.json  # Uncomment if you want to ignore local settings

# Local test scenarios (scratch/exploratory)
tests/

# Testing system artifacts
testing/.metrics.db
testing/reports/*.md
testing/reports/*.html
