From claude-pa
Mute, pause, or schedule claude-pa from natural-language requests. Translates phrases like "shut up claude-pa", "pause for an hour", "be quiet until 5pm", "stay loud for the next 90 minutes", "active during work hours", or "resume" into the right mute / schedule call. Use when the user wants to silence the PA system, time-bound a quiet window, or define active hours — without making them remember the slash command syntax.
npx claudepluginhub danielrosehill/claude-code-plugins --plugin claude-paThis skill uses the workspace's default tool permissions.
The user's message contains a request to silence, pause, schedule, or resume the PA system. Common phrasings:
Guides Next.js Cache Components and Partial Prerendering (PPR): 'use cache' directives, cacheLife(), cacheTag(), revalidateTag() for caching, invalidation, static/dynamic optimization. Auto-activates on cacheComponents: true.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Share bugs, ideas, or general feedback.
The user's message contains a request to silence, pause, schedule, or resume the PA system. Common phrasings:
| Intent | Phrasings | Action |
|---|---|---|
| Mute now, indefinite | "shut up", "be quiet", "disable PA", "mute claude-pa", "turn it off" | bin/mute.sh indefinite |
| Mute for a duration | "pause for 30m", "quiet for an hour", "mute for 2 hours" | bin/mute.sh pause <duration> |
| Mute until a clock time | "quiet until 5pm", "shut up until tomorrow morning" | bin/mute.sh pause "until HH:MM" |
| Resume | "unmute", "resume", "you can talk again", "wake up" | bin/mute.sh off |
| Active for next N | "stay loud for the next 90 min", "active for 2 hours" | bin/schedule.sh during <duration> |
| Recurring window | "active 9-5 weekdays", "only fire during work hours" | bin/schedule.sh windows weekdays:09:00-17:00 |
| Clear schedule | "drop the schedule", "always allowed" | bin/schedule.sh off |
| Status | "is PA muted?", "what's the PA state?" | bin/mute.sh status; bin/schedule.sh status |
Parse the intent. Map the user's phrasing to one of the rows above. If multiple intents are plausible, ask one short clarifying question; otherwise act.
Convert duration phrases to canonical form:
1h30muntil 12:00until 22:00 (or whatever feels right — confirm if ambiguous)until 09:00 (next-day semantics handled by bin/mute.sh)Run the command via $CLAUDE_PLUGIN_ROOT/bin/mute.sh or $CLAUDE_PLUGIN_ROOT/bin/schedule.sh. Pass --reason "<short reason>" or --label "<label>" if the user gave one.
Confirm in one line. Echo back what was set, in human terms — e.g. "Muted until 5:00pm" or "Active for the next 90 minutes (deep work)". Don't dump JSON unless asked.
User: "hey shut up claude-pa, i'm in a meeting for the next hour"
→ bin/mute.sh pause 1h --reason "in a meeting"
→ Reply: "Muted for 1 hour (in a meeting). Auto-resumes at 14:32."
User: "only let it bark during work hours"
→ bin/schedule.sh windows weekdays:09:00-17:00
→ Reply: "Active weekdays 09:00-17:00. Outside that, silent."
User: "i'm starting a 2 hour focus block, keep it loud"
→ bin/schedule.sh during 2h --label "focus block"
→ Reply: "Active for the next 2 hours (focus block). Auto-mutes at 16:32."
User: "resume"
→ bin/mute.sh off
→ Reply: "Unmuted."
unmute is fine and built into /claude-pa:unmute.When the user says they're starting a task / planning session, prefer schedule.sh during <duration> over a permanent enable — the silence resumes automatically when the block ends. This is the recommended pattern for keeping claude-pa noisy only during deliberate working blocks.