From narrator
This skill should be used when the user asks to "change speed", "set speed", "talk faster", "talk slower", "speed up", "slow down", "narrator speed", or wants to change the text-to-speech speech rate used by narrator.
npx claudepluginhub shreyas-s-rao/claude-code-narrator --plugin narratorThis skill uses the workspace's default tool permissions.
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.
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.
Generates or updates index.md listing all files and subdirectories in a target folder with 3-10 word descriptions from file contents. Use for indexing documentation directories.
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/configIf the user specifies a speed value (e.g., "set speed to 1.5"), use that value. Valid range is 0.5 to 2.0. Default is 1.1.
If the user says "faster" or "speed up", read the current speed and increase it by 0.2 (capped at 2.0). If the user says "slower" or "slow down", read the current speed and decrease it by 0.2 (minimum 0.5).
If the value is outside the valid range, tell the user the valid range and ask them to pick a value.
If no specific value or direction is given, read the current speed from the appropriate config file (local if it exists and has a speed key, otherwise global) and show it to the user. Then ask what speed they would like using AskUserQuestion with these options:
The user can also type a custom value.
Read ~/.claude-code-narrator/config and use the Edit tool to change the speed= line to the new value.
Read <cwd>/.claude-code-narrator/config. If the file exists, use the Edit tool to change or add the speed= line. 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 speed=<value>.
IMPORTANT: Do NOT use sed to edit state files — use the Read and Edit tools instead.
Tell the user the new speed value, then speak a test sentence so they can hear the difference:
echo "This is how I sound at the new speed." | bash "${CLAUDE_PLUGIN_ROOT}/hooks/scripts/speak.sh" --force