**Änderung: Option A - logs/ im Repo**
Vorher:
- Logs in ~/.{character}_logs/ (User Home Directory)
- Multi-Projekt aber verstreut
- Nicht im Repo sichtbar
Nachher:
- Logs in logs/{character}/ (Repo Directory)
- Projekt-spezifisch & übersichtlich
- Mit Fallback: ${CRUMB_LOGS_DIR:-$HOME/.{character}_logs}
- Für Standalone-Nutzung
**Geänderte Files:**
- lib/waldwaechter.sh: CRUMB_LOGS_DIR exportiert
- Alle 17 crumbforest_roles/*: LOGDIR updated
- missions/robots/*: Mission logs → logs/missions/
- .gitignore: logs/ hinzugefügt
**Log-Struktur:**
```
logs/
├── tobi/
│ ├── tobi_history.json
│ ├── token_log.json
│ └── ...
├── crabbyrust/
├── mayaeule/
└── missions/
```
**Tested:** ✅ Tobi funktioniert, Logs landen in logs/tobi/
🌲 "Was kostet die Frage eines Kindes?" - jetzt transparent im Repo!
🤖 Generated with Claude Code
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
111 lines
1.4 KiB
Plaintext
111 lines
1.4 KiB
Plaintext
# === CF_Zero_V1 .gitignore ===
|
|
|
|
# AI Assistant Logs (contain conversation history and token usage)
|
|
# Repo-based logs directory
|
|
logs/
|
|
|
|
# Legacy: Home directory logs (deprecated, now using logs/)
|
|
.mayaeule_logs/
|
|
.eule_logs/
|
|
.deepbit_logs/
|
|
.bugsy_logs/
|
|
.schnippsi_logs/
|
|
.tobi_logs/
|
|
.templatus_logs/
|
|
.schraubaer_logs/
|
|
.schnecki_logs/
|
|
.dumbosql_logs/
|
|
.funkfox_logs/
|
|
.taichitaube_logs/
|
|
.snakepy_logs/
|
|
.pepperphp_logs/
|
|
.crabbyrust_logs/
|
|
.spider_logs/
|
|
.vektor_logs/
|
|
.asciimonster_logs/
|
|
# Legacy/Old names
|
|
.bits_logs/
|
|
.dumbo_logs/
|
|
.pepper_logs/
|
|
.snake_logs/
|
|
.stage_logs/
|
|
.taube_logs/
|
|
.missionstage_log/
|
|
.bugsy_log/
|
|
|
|
# Individual log files (but keep demo logs in missions/)
|
|
*.jsonl
|
|
*_log.json
|
|
*.log
|
|
mission_log_*.log
|
|
|
|
# But allow mission demo logs
|
|
!missions/**/*.log
|
|
!missions/**/demo_*.txt
|
|
|
|
# Environment variables (API keys!)
|
|
.env
|
|
.env.local
|
|
*.key
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
env/
|
|
venv/
|
|
ENV/
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
|
|
# Camera/Video temp files
|
|
*.mp4
|
|
*.avi
|
|
*.mov
|
|
|
|
# Backups
|
|
*.zip
|
|
*.bak
|
|
*.backup
|
|
*_backup_*.zip
|
|
.pp_backup/
|
|
|
|
# Personal/Secret directories
|
|
geheimversteck/
|
|
usr/
|
|
|
|
# MacOS
|
|
.DS_Store
|
|
.AppleDouble
|
|
.LSOverride
|
|
|
|
# Cache
|
|
.cache/
|
|
*.cache
|
|
|
|
# Node modules (for ttyd/html)
|
|
node_modules/
|
|
package-lock.json
|
|
yarn.lock
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Config directories that may contain keys
|
|
.config/
|
|
.local/
|
|
.crumbair/
|
|
.dotnet/
|
|
|
|
# Temporary files
|
|
/tmp/
|
|
*.tmp
|
|
*.temp
|