SOUL.md
Who the agent is.
Identity, voice, values, hard limits.
Plain markdown you can save, edit, and version. Download one file or all seven, drop them into a folder, and point your agent at them. Same sources as the interactive overview. For a one-page map of roles and read order, open README.md (also under /templates/).
Tip: if Download is blocked, use Open raw then “Save as…” — or Copy to paste straight into your editor.
Who the agent is.
Identity, voice, values, hard limits.
Where the agent lives.
Metadata, routing, model config, multi-agent settings.
How the agent operates.
Workflows, decision rules, escalation paths, communication patterns.
Who the agent serves.
You. Preferences, projects, contacts, flagged priorities.
What the agent has learned.
Evergreen long-term memory. One fact per line. Never deleted, only superseded.
How the agent acts on its own.
Scheduled tasks. Morning briefs. Weekly reviews. Conditional alerts.
What the agent can reach for.
Every skill, MCP, and built-in capability — with usage rules.
Grab the seven .md files. One at a time, copy-paste, or curl them from /templates/ once your site is live. For a reading map, see README.md in the same folder.
Replace [AgentName], [Your Name], ports, models — everything is human-readable and diff-friendly.
Drop the folder as system context or workspace rules. Same files power the overview on the home page.
Use memory/[date].md for daily notes and session summaries. Promote confirmed facts to MEMORY.md — evergreen, one line per fact, supersede instead of delete.
Replace YOUR_ORIGIN with your deployed site (e.g. https://example.com). Filenames match the templates above.
# Download all seven into the current directory BASE="YOUR_ORIGIN" for n in SOUL IDENTITY AGENTS USER MEMORY HEARTBEAT TOOLS; do curl -fsSL "$BASE/templates/${n}.md" -o "${n}.md" done