caddy-mute
Mute a Caddy hint class for a window. Defaults to 4h auto-expiry. Classes — memory, context, body, routing, all.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Mute a Caddy hint class for a window. Defaults to 4h auto-expiry. Classes — memory, context, body, routing, all.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
The capsule verb, invoked explicitly — reconcile from the live memory, write a resume-ready capsule, then stop. Mid-session checkpoint or completion capsule; a rolling best-effort version of the same write also runs automatically on every Stop event via daemons/stop-capsule-writer.mjs.
The resume verb, invoked explicitly — load the newest valid capsule by created_at, re-ground against live memory, then ACT on waiting_on. Mid-session or on explicit ask; the post-clear boot fires the same procedure automatically via daemons/resume-verb.mjs.
Run the volunteering ledger before declaring work done. Forces surfacing of what changed/didn't, what was noticed-but-not-fixed, what was guessed, and what tradeoffs were made on the principal's behalf. The standard - the principal should never be surprised later by something the agent knew at the time.
Capture a confident agent claim (Phase 1) or resolve one as right/wrong (Phase 2) in vault/memory/TRUST_DECAY.md. Builds the longitudinal record of agent calibration over time. Pairs with /honesty-check (which should reduce Phase 1 frequency) and /diagnose (which surfaces causes that often reveal Phase 2 events).
One evidence-gated pass that sequences /dream, /reconcile, /sweep-now, and /digest over your own vault, with a /system-check gate and a ledger-review pass over the measurement layer (Honesty Ledger, Trust Decay, Failure Modes). Stays exactly as human-gated as the legs it calls -- stages, never auto-applies. Skips a leg gracefully when there is nothing to do; every leg that runs leaves an evidence line.
Dispatch Hestia to run all 3 vault sweeps (DELEGATION_TRACKER stale items, HEAT_INDEX dormant flips, broken wikilinks) and append the result to HESTIA_SWEEP_LOG.
| name | caddy-mute |
| agent | none |
| description | Mute a Caddy hint class for a window. Defaults to 4h auto-expiry. Classes — memory, context, body, routing, all. |
| allowed-tools | Read, Write, Edit, Bash |
| user-invocable | true |
| triggers | ["caddy mute","mute caddy","silence caddy","shut up caddy","/caddy-mute","hint fatigue","too many caddy hints"] |
Suppress a Caddy hint class for a bounded window. State lives in memory/CADDY_MUTES.json. daemons/caddy.sh reads it on every UserPromptSubmit and skips matching class hints when active.
memory — [CADDY:memory] MEMDB, DIGEST hintscontext — [CADDY:context] CTX, CAPSULE hintsbody — [CADDY:body] BODY-CHECK hintrouting — [CADDY:routing] ROUTE, /orient, STYLE, DICT hintsall — nuclear; mutes every class/caddy-mute --class memory # 4h default
/caddy-mute --class memory --hours 1 # 1h
/caddy-mute --class memory --forever # explicit permanent (rare)
/caddy-mute --class all # nuclear
/caddy-mute --class memory --reason "design session, hint fatigue"
If no --hours and no --forever: default 4 hours.
Compute muted_until and Edit memory/CADDY_MUTES.json:
{
"memory": {
"muted_until": "2026-05-03T18:00:00Z",
"reason": "design session, hint fatigue",
"default_duration_hours": 4
}
}
For --forever: set muted_until to 9999-12-31T23:59:59Z. Surface to the operator when setting forever ("muted memory class indefinitely — confirm?") so it doesn't drift into permanent silence by accident.
For --class all: write a single all block; caddy.sh class_muted checks all in addition to the requested class.
To unmute early, Edit memory/CADDY_MUTES.json and remove the class entry, or set muted_until to the past. There's no /caddy-unmute skill yet — the entry self-expires at muted_until, which is the point.
all for >24h. If you need all muted longer than that, the hint surface itself is broken and Caddy needs editing, not silencing.Spec: [[concepts/Somatic v0.4.1 Wiring]] §6. Class taxonomy and 4h default were Codex+aigent-OS joint design decisions in the 2026-05-02 session.