- timmy-loop-prompt.md: full rewrite (76→209 lines) with PR-only workflow, tox environments, git hooks, Kimi dispatch safety block, conventional commits - kimi-code skill: added Branch & Convention Safety section - memories/MEMORY.md: updated with branch protection notes - config.yaml: removed dead kimi API key - cron/jobs.json: updated scheduled jobs - channel_directory.json: minor update - .gitignore: exclude queue/ and *.db
69 lines
2.8 KiB
Plaintext
69 lines
2.8 KiB
Plaintext
# ── Hermes Config Repo ────────────────────────────────────────────────
|
|
# Track: config, skills, memories, hooks, cron jobs, channel directory
|
|
# Exclude: secrets, tokens, ephemeral state, caches, the code repo
|
|
|
|
# ── Code repo (tracked separately as sovereign fork) ──────────────────
|
|
hermes-agent/
|
|
|
|
# ── Secrets & auth (NEVER commit) ────────────────────────────────────
|
|
.env
|
|
.env.*
|
|
auth.json
|
|
auth.lock
|
|
gitea_token
|
|
*.key
|
|
*.pem
|
|
|
|
# ── Ephemeral state ──────────────────────────────────────────────────
|
|
state.db
|
|
state.db-shm
|
|
state.db-wal
|
|
gateway.pid
|
|
processes.json
|
|
interrupt_debug.log
|
|
.tirith-install-failed
|
|
|
|
# ── Sessions (large, transient, privacy-sensitive) ───────────────────
|
|
sessions/
|
|
|
|
# ── Caches (regeneratable) ───────────────────────────────────────────
|
|
audio_cache/
|
|
document_cache/
|
|
image_cache/
|
|
temp_vision_images/
|
|
images/
|
|
sandboxes/
|
|
|
|
# ── Shell history ────────────────────────────────────────────────────
|
|
.hermes_history
|
|
|
|
# ── Logs (large, rotated) ────────────────────────────────────────────
|
|
logs/
|
|
|
|
# ── Platform pairing state (contains rate limits, approval tokens) ───
|
|
pairing/
|
|
|
|
# ── WhatsApp session state ───────────────────────────────────────────
|
|
whatsapp/
|
|
|
|
# ── Cron output (regenerated) ────────────────────────────────────────
|
|
cron/output/
|
|
|
|
# ── Binaries (except our scripts) ────────────────────────────────────
|
|
bin/*
|
|
!bin/hermes-sync
|
|
!bin/timmy-loop.sh
|
|
!bin/timmy-loop-prompt.md
|
|
!bin/timmy-status.sh
|
|
!bin/timmy-tmux.sh
|
|
!bin/timmy-watchdog.sh
|
|
|
|
# ── Queue (transient task queue) ─────────────────────────────────────
|
|
queue/
|
|
|
|
# ── Database files (ephemeral, regeneratable) ────────────────────────
|
|
*.db
|
|
|
|
# ── OS junk ──────────────────────────────────────────────────────────
|
|
.DS_Store
|