From narrator
This skill should be used when the user asks to "hush", "be quiet", "stop speaking", "silence narrator", "narrator hush", "shut up", or wants to immediately stop all current and queued speech output.
npx claudepluginhub shreyas-s-rao/claude-code-narrator --plugin narratorThis skill uses the workspace's default tool permissions.
Stop all current and queued speech output immediately.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Migrates code, prompts, and API calls from Claude Sonnet 4.0/4.5 or Opus 4.1 to Opus 4.5, updating model strings on Anthropic, AWS, GCP, Azure platforms.
Analyzes BMad project state from catalog CSV, configs, artifacts, and query to recommend next skills or answer questions. Useful for help requests, 'what next', or starting BMad.
Stop all current and queued speech output immediately.
Run the following commands to kill all speech processes and clean up:
# Kill the speak daemon if running
if [ -f ~/.claude-code-narrator/daemon.pid ]; then
kill $(cat ~/.claude-code-narrator/daemon.pid) 2>/dev/null || true
rm -f ~/.claude-code-narrator/daemon.pid
fi
# Kill any running kokoro-speak.py processes
pkill -f kokoro-speak.py 2>/dev/null || true
# Remove the FIFO to clear any queued messages
rm -f ~/.claude-code-narrator/fifo
Narrator remains enabled after hushing -- only the current and queued speech is stopped. New hook-triggered speech will resume when Claude's next action fires a hook. The daemon will be restarted automatically by speak.sh when the next speech is enqueued.
If the user wants to disable narrator entirely (not just silence current speech), suggest using /narrator:off instead.
Inform the user: "Silenced. Narrator is still enabled and will speak on the next action."