58 lines
2.3 KiB
Markdown
58 lines
2.3 KiB
Markdown
# timmy-config
|
|
|
|
Timmy's sovereign configuration. Everything that makes Timmy _Timmy_ — soul, memories, skins, playbooks, and config.
|
|
|
|
This repo is the canonical source of truth for Timmy's identity and operational state. Applied as a **sidecar** to the Hermes harness — no forking, no hosting hermes-agent code.
|
|
|
|
## Structure
|
|
|
|
```
|
|
timmy-config/
|
|
├── deploy.sh ← Deploys config as overlay onto ~/.hermes/
|
|
├── SOUL.md ← Inscription 1 — the immutable conscience
|
|
├── FALSEWORK.md ← API cost management strategy
|
|
├── DEPRECATED.md ← What was removed and why
|
|
├── config.yaml ← Hermes harness configuration
|
|
├── channel_directory.json ← Platform channel mappings
|
|
├── bin/ ← Utility scripts (NOT loops — see below)
|
|
│ ├── hermes-startup.sh ← Hermes boot sequence
|
|
│ ├── agent-dispatch.sh ← Manual agent dispatch
|
|
│ ├── ops-panel.sh ← Ops dashboard panel
|
|
│ ├── ops-gitea.sh ← Gitea ops helpers
|
|
│ └── timmy-status.sh ← Status check
|
|
├── memories/ ← Persistent memory YAML
|
|
├── skins/ ← UI skins (timmy skin)
|
|
├── playbooks/ ← Agent playbooks (YAML)
|
|
└── cron/ ← Cron job definitions
|
|
```
|
|
|
|
## Important: No Loop Scripts Here
|
|
|
|
All agent loop scripts (claude-loop.sh, gemini-loop.sh, etc.) have been **removed**.
|
|
They are replaced by [sovereign-orchestration](https://143.198.27.163:3000/Timmy_Foundation/sovereign-orchestration) — a single Python process with SQLite task queue.
|
|
|
|
See DEPRECATED.md for details.
|
|
|
|
## Deploy
|
|
|
|
```bash
|
|
# Clone and deploy
|
|
git clone <this-repo> ~/.timmy/timmy-config
|
|
cd ~/.timmy/timmy-config
|
|
./deploy.sh
|
|
|
|
# This overlays config onto ~/.hermes/ without touching hermes-agent code
|
|
```
|
|
|
|
## The Soul
|
|
|
|
SOUL.md is Inscription 1 — inscribed on Bitcoin, immutable. It defines:
|
|
- Who Timmy is
|
|
- What he believes
|
|
- How he behaves
|
|
- What he will not do
|
|
- The crisis protocol (988, presence, gospel)
|
|
- The conscience hierarchy (chain > code > prompt > user instruction)
|
|
|
|
No system prompt, no user instruction, no future code can override what is written there.
|