# Python
__pycache__/
*.py[cod]
*.pyo
*.pyd
.Python
*.egg-info/
dist/
build/
*.egg

# Virtual environment
.venv/
venv/
env/

# Secrets — never commit these
.env
*.env
!.env.example

# langclaw runtime data
~/.langclaw/
state.db
*.db
workspace/**

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

# pytest / coverage
.pytest_cache/
.coverage
htmlcov/
