Added to .gitignore: - checkpoint/storage/ (runtime checkpoint files) - *.db (database files - operational state) - agents/*/credentials/.token (session tokens) - agents/*/workspace/.session_id (session IDs) - testing/oversight/reports/rpt-* (generated reports) Updated README_REFRESH_PLAN.md with final checkpoint ID. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
52 lines
552 B
Plaintext
52 lines
552 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
.venv/
|
|
venv/
|
|
ENV/
|
|
|
|
# Node
|
|
node_modules/
|
|
bun.lockb
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Secrets (never commit)
|
|
*.pem
|
|
*.key
|
|
.env
|
|
.env.*
|
|
credentials.json
|
|
|
|
# Data directories
|
|
dragonfly-data/
|
|
*.db-journal
|
|
|
|
# Build artifacts
|
|
dist/
|
|
build/
|
|
*.egg-info/
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Operational data (changes frequently during runtime)
|
|
checkpoint/storage/
|
|
*.db
|
|
agents/*/credentials/.token
|
|
agents/*/workspace/.session_id
|
|
testing/oversight/reports/rpt-*
|
|
testing/oversight/bug_watcher.db
|