60 lines
742 B
Plaintext
60 lines
742 B
Plaintext
# Secrets — never commit these
|
|
.env
|
|
auth.json
|
|
honcho.json
|
|
|
|
# Ephemeral runtime data
|
|
logs/
|
|
cache/
|
|
sessions/
|
|
state-snapshots/
|
|
checkpoints/
|
|
spawn-trees/
|
|
sandboxes/
|
|
whatsapp/
|
|
pairing/
|
|
notes/
|
|
plugins/
|
|
cron/output/
|
|
backups/
|
|
|
|
# Downloaded binaries
|
|
node/
|
|
bin/
|
|
lsp/
|
|
hermes-agent/
|
|
platforms/
|
|
|
|
# SQLite databases (handled by daily snapshot cron)
|
|
memory_store.db
|
|
memory_store.db-shm
|
|
memory_store.db-wal
|
|
state.db
|
|
state.db-shm
|
|
state.db-wal
|
|
|
|
# Lock files
|
|
*.lock
|
|
gateway.pid
|
|
gateway_state.json
|
|
processes.json
|
|
|
|
# Shell history
|
|
.hermes_history
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Generated metadata
|
|
.install_method
|
|
.skills_prompt_snapshot.json
|
|
.update_check
|
|
interrupt_debug.log
|
|
models_dev_cache.json
|
|
|
|
# Backup files
|
|
*.bak.*
|
|
|
|
# Git credentials
|
|
.git-credentials |