47 lines
688 B
Plaintext
47 lines
688 B
Plaintext
# OS, editor, and local dotfiles
|
|
.DS_Store
|
|
.*
|
|
!**/.gitignore
|
|
|
|
# Python caches and build artifacts
|
|
**/__pycache__/
|
|
*.py[oc]
|
|
build/
|
|
dist/
|
|
wheels/
|
|
*.egg-info/
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
|
|
# Local secrets and provider configuration
|
|
**/provider.json
|
|
|
|
# Runtime data, logs, and generated reports
|
|
*.log
|
|
*.diff
|
|
*.patch
|
|
log*/
|
|
pytest-cache-files-*/
|
|
.pytest_cache/
|
|
sandbox/
|
|
sandbox*/
|
|
**/data/
|
|
**/agent_logs/*
|
|
agent_logs/*
|
|
**/trace_indices/
|
|
|
|
# Non-public experiment and image assets
|
|
experiment/
|
|
experiments/
|
|
img/
|
|
|
|
# Generated documentation directories
|
|
**/docs/
|
|
|
|
# Workspace: keep skill references, ignore generated outputs
|
|
workspace/*
|
|
!workspace/.gitignore
|
|
!workspace/skills/
|
|
!workspace/skills/**
|