caddy-mute

caddy-mute is a skill for Claude Code from wrg32786/aigent-os. It costs 36 tokens per session (732 once invoked), scanned A, original, MIT.

A command for temporarily hiding selected classes of Caddy hints, such as memory, context, or routing reminders. The mute can expire automatically or remain until removed.

In plain words
What is it for?
Use it to mute specific hint groups for a chosen number of hours, permanently, or with a reason.
Why use it?
It reduces unwanted repeated prompts during a focused work session while keeping the setting bounded in time.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: agent in frontmatter; mentions Codex.

Good fit Use it to mute specific hint groups for a chosen number of hours, permanently, or with a reason.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/wrg32786/aigent-os/caddy-mute
Install

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.

Any agent
npx skills add wrg32786/aigent-os --skill caddy-mute
Clone the repo
git clone --depth 1 https://github.com/wrg32786/aigent-os

Made for: Claude Code.

Wrote 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.

agentmods badge for caddy-mute

README.md
[![agentmods](https://agentmods.dev/badge/skills/wrg32786/aigent-os/caddy-mute/github.svg)](https://agentmods.dev/skills/wrg32786/aigent-os/caddy-mute)
Your own site
<a href="https://agentmods.dev/skills/wrg32786/aigent-os/caddy-mute"><img src="https://agentmods.dev/badge/skills/wrg32786/aigent-os/caddy-mute/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.

agentmods 80×15 button for caddy-mute

Your own site · 80×15
<a href="https://agentmods.dev/skills/wrg32786/aigent-os/caddy-mute"><img src="https://agentmods.dev/badge/skills/wrg32786/aigent-os/caddy-mute.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 36 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 732 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00036 $0.00732
Opus 5 $0.00018 $0.00366
Sonnet 5 $0.00007 $0.00146
Haiku 4.5 $0.00004 $0.00073

Measured 8d ago against content hash 71da911c3d28, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

caddy-mute 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 8d 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.

skills/caddy-mute/SKILL.md · 71 lines

How it starts

The opening of the file, as written. The whole thing — 71 lines — stays where its author put it; the contents beside it link to each section on GitHub.

/caddy-mute

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.

Classes

  • memory[CADDY:memory] MEMDB, DIGEST hints
  • context[CADDY:context] CTX, CAPSULE hints
  • body[CADDY:body] BODY-CHECK hint
  • routing[CADDY:routing] ROUTE, /orient, STYLE, DICT hints
  • all — nuclear; mutes every class

Usage

/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.

Implementation

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.

Inverse

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.

When NOT to mute

  • Standing rules (CTX heavy-bash, STYLE comms voice) exist because they prevent recurring drift. Muting them more than 4h means the rule isn't actually a standing rule and should be downgraded or deleted.
  • Don't mute all for >24h. If you need all muted longer than that, the hint surface itself is broken and Caddy needs editing, not silencing.

Read the full file on GitHub · 71 lines

Changes

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.

  1. 8d ago First seen · 71 lines · 36 tokens per session scan A 71da911c3d28

Subscribe to this mod's changes

caddy-mute is a skill published in the GitHub repository wrg32786/aigent-os (18 stars, last pushed yesterday), licensed MIT. It adds 36 tokens to every session and 732 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-09-01.

Related

Other skills, from other repositories

send-email

Compose and send a one-off email to a named recipient via Resend - written in the operator's voice, then sent in-run through the shared send caps with an operator audit copy.

aeonfun/aeon · 39 tokens

RemoteTeamCommander

Complete operating system for remote and distributed teams — async communication, time zone equity, virtual culture, performance management at a distance, and preventing remote-class citizens.

vignesh2027/Claude-Agentic-Skills2.0-version · 34 tokens

chief-of-staff

Act as the user's chief of staff, not a task-taker. Use for planning a day or week, triaging priorities, prepping for meetings or calls, drafting messages on the user's behalf, tracking commitments and follow-ups, reviewing what's in-flight, or any moment the user wants a trusted operator who knows their context.…

loganhc-09/claude-chief-of-staff · 156 tokens

meeting-analyzer

Activates MeetingAnalyzer for extracting intelligence from meeting transcripts, notes, and recordings. Use when you need to extract action items with owners and due dates, identify decisions made, summarize key discussion points, detect unresolved conflicts or blockers, or generate a structured meeting follow-up email.

vignesh2027/Claude-Agentic-Skills2.0-version · 58 tokens

Loop

Run the same task on a recurring cron schedule. Parses interval syntax (5m, 2h, 1d, "/15 "), records the schedule, and acknowledges back to the user.

CocoRoF/geny-executor · 46 tokens

Batch Run

Apply the same prompt or operation to a list of items in turn, collecting results. Useful for "do X to each of these files / PRs / records" tasks.

CocoRoF/geny-executor · 38 tokens