From narrator
This skill should be used when the user asks to "disable narrator", "turn off voice", "stop narrator", "disable voice output", "narrator off", "mute narrator", or wants to deactivate text-to-speech output.
npx claudepluginhub shreyas-s-rao/claude-code-narrator --plugin narratorThis skill uses the workspace's default tool permissions.
To disable narrator voice output:
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.
Reviews prose for communication issues impeding comprehension, outputs minimal fixes in a three-column table per Microsoft Writing Style Guide. Useful for 'review prose' or 'improve prose' requests.
To disable narrator voice output:
Check if the user said "locally", "for this directory", "for this project", or similar. If so, changes apply to the local config file in the current working directory.
~/.claude-code-narrator/config<cwd>/.claude-code-narrator/configRead ~/.claude-code-narrator/config. If the file exists, use the Edit tool to change the enabled= line to enabled=false. If the file does not exist, create it with the Write tool containing just enabled=false.
Read <cwd>/.claude-code-narrator/config. If the file exists and has an enabled= line, use the Edit tool to change it to enabled=false. If the file exists but has no enabled= line, use the Edit tool to add enabled=false. If the file does not exist, create the <cwd>/.claude-code-narrator/ directory if needed, then create the config file with the Write tool containing just enabled=false.
To remove the local override entirely (reverting to global state), delete the <cwd>/.claude-code-narrator/ directory instead.
IMPORTANT: Do NOT use sed to edit state files — use the Read and Edit tools instead.
Only for global mode: Read ~/.claude/settings.json. If it has a UserPromptSubmit hook that runs hush-on-input.sh, remove that entire UserPromptSubmit entry from the hooks object. Preserve all other hooks.
For local mode, do NOT remove the auto-hush hook (other sessions may still need it).
IMPORTANT: Do NOT remove other hooks — only remove the narrator UserPromptSubmit hook. Read the file first.
For global mode, inform the user: "Narrator is now disabled. Voice output is off."
For local mode, inform the user: "Narrator is now disabled for this directory. Global setting is unchanged."
Do NOT attempt to speak this confirmation (narrator is now off).