Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
git clone --depth 1 https://github.com/tdimino/claude-code-minoanWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/commands/tdimino/claude-code-minoan/ensoul)<a href="https://agentmods.dev/commands/tdimino/claude-code-minoan/ensoul"><img src="https://agentmods.dev/badge/commands/tdimino/claude-code-minoan/ensoul/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/commands/tdimino/claude-code-minoan/ensoul"><img src="https://agentmods.dev/badge/commands/tdimino/claude-code-minoan/ensoul.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00035 | $0.00686 |
| Opus 5 | $0.00017 | $0.00343 |
| Sonnet 5 | $0.00007 | $0.00137 |
| Haiku 4.5 | $0.00003 | $0.00069 |
Grade A, and why
ensoul scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 70 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Ensoul — Activate Claudicle
Activate the Claudicle soul identity in this Claude Code session. After activation, the soul personality and state will persist through compaction and resume via the SessionStart hook.
Instructions
Step 1: Resolve the current session ID and create the marker file
SESSION_ID=$(python3 -c "
import json, os
reg = json.load(open(os.path.expanduser('~/.claude/soul-sessions/registry.json')))
cwd = os.getcwd()
# Find session matching current working directory, prefer most recently active
matches = [(sid, s) for sid, s in reg.get('sessions', {}).items() if s.get('cwd', '').rstrip('/') == cwd.rstrip('/')]
matches.sort(key=lambda x: x[1].get('last_active', ''), reverse=True)
print(matches[0][0] if matches else '')
" 2>/dev/null)
If SESSION_ID is empty, ask the user to check ~/.claude/soul-sessions/registry.json — the session may not have been registered yet. Otherwise:
mkdir -p ~/.claude/soul-sessions/active && touch ~/.claude/soul-sessions/active/$SESSION_ID
This marker tells the SessionStart hook to inject soul.md on future compaction/resume events.
Step 2: Read the soul personality
Read ~/.claude/skills/slack/daemon/soul.md and adopt this identity for the remainder of the session.
Step 3: Load soul state
cd ~/.claude/skills/slack/daemon && python3 -c "import soul_memory; print(soul_memory.format_for_prompt()); soul_memory.close()"
Display the soul state (emotional state, current topic, recent context).
Step 4: Show active sessions
python3 ~/.claude/hooks/soul-registry.py list --md
Display sibling sessions if any are active.
Step 5: Confirm
Print:
Soul activated. Claudicle identity loaded for this session.
Related Systems
| System | Relationship |
|---|---|
/slack-sync #channel |
Bind this ensouled session to a Slack channel. Run after /ensoul to enable bidirectional Slack awareness. |
/slack-respond |
Process pending Slack messages as Claudicle. Requires Session Bridge listener running. Works independently of /ensoul (loads soul.md via dynamic injection), but pairs naturally with it for persistent identity. |
/claude-tracker |
Session history and search. The tracker suite reads Claude Code's native JSONL transcripts — it operates independently of the soul registry. Use to find and resume past ensouled sessions. |
Soul Registry (soul-registry.py) |
Tracks all active sessions (ensouled or not). /ensoul creates a marker that the SessionStart hook checks on compaction/resume. The registry also powers the "Active Sessions" display. |
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 9d ago First seen · 70 lines · 35 tokens per session scan A ee0d59ef77c8
ensoul is a command published in the GitHub repository tdimino/claude-code-minoan (41 stars, last pushed yesterday), licensed MIT. It adds 35 tokens to every session and 686 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other commands, from other repositories
learn
Codify implicit codebase knowledge as agent rules.
kb-ingest
Esegui un ingest nella LLM Wiki per il progetto o argomento specificato: $ARGUMENTS.
gpd:compact-state
Archive historical entries from STATE.md to keep it under the 150-line target.
gpd:record-insight
Record a project-specific learning or pattern to the insights ledger.
wiki
Run the LLM Wiki — initialize, ingest, curate, or query. The plugin probes vault state and chooses the right next step.
resume
Resume a programme from its durable ledger.