# .claudesignore

# 1. SECURITY & SECRETS (Absolute Priority)
.env
.env.*
*.pem
*.key
secrets.json
credentials.json

# 2. PYTHON VIRTUAL ENVIRONMENTS 
# (Claude shouldn't read thousands of library files)
venv/
.venv/
env/
.env_python/

# 3. COMPILED CODE & CACHES 
# (Wastes tokens and confuses the AI)
__pycache__/
*.py[cod]
*$py.class
.pytest_cache/
.ruff_cache/
build/
dist/
*.egg-info/

# 4. IDE & SYSTEM FILES
.vscode/
.idea/
.DS_Store