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

# CLI 本地测试输出
demo-app/
test-output/

# 测试与工具缓存
.pytest_cache/
.ruff_cache/
.coverage
htmlcov/

# 环境变量与密钥
.env
.env.*
!.env.example

# IDE
.idea/
.vscode/
*.swp

# OS
.DS_Store
Thumbs.db
