pronounce-word

pronounce-word is a skill for Claude Code, Codex from anzy-renlab-ai/pronounce. It costs 165 tokens per session (1,898 once invoked), scanned A, original, MIT.

A pronunciation helper for English words, product names, project names, acronyms, and programming terms. It uses the say-it command-line tool to play the word aloud and provide pronunciation details.

In plain words
What is it for?
Use it when someone asks how to pronounce a single technical word or name.
Why use it?
It helps developers hear how unfamiliar or disputed technical terms are commonly pronounced instead of relying only on written hints.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it when someone asks how to pronounce a single technical word or name.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/anzy-renlab-ai/pronounce/pronounce-word
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 anzy-renlab-ai/pronounce --skill pronounce-word
Clone the repo
git clone --depth 1 https://github.com/anzy-renlab-ai/pronounce

Made for: Claude Code, Codex.

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 pronounce-word

README.md
[![agentmods](https://agentmods.dev/badge/skills/anzy-renlab-ai/pronounce/pronounce-word/github.svg)](https://agentmods.dev/skills/anzy-renlab-ai/pronounce/pronounce-word)
Your own site
<a href="https://agentmods.dev/skills/anzy-renlab-ai/pronounce/pronounce-word"><img src="https://agentmods.dev/badge/skills/anzy-renlab-ai/pronounce/pronounce-word/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 pronounce-word

Your own site · 80×15
<a href="https://agentmods.dev/skills/anzy-renlab-ai/pronounce/pronounce-word"><img src="https://agentmods.dev/badge/skills/anzy-renlab-ai/pronounce/pronounce-word.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 165 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,898 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.00165 $0.01898
Opus 5 $0.00082 $0.00949
Sonnet 5 $0.00033 $0.00380
Haiku 4.5 $0.00016 $0.00190

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

Security

Grade A, and why

pronounce-word 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/pronounce-word/SKILL.md · 112 lines

How it starts

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

pronounce-word — speak the word out loud

Purpose. When the user asks how to pronounce an English word — and especially a project, product, or programmer-jargon name (kubectl, nginx, Pydantic, LaTeX, JSON, ...) — don't just respond in text. Play the audio so they can hear the community reading, then add a short text caption with the source.

Trigger patterns

Auto-invoke ONLY when the user's message matches a single-word or short-name pronunciation request:

  • English: how to pronounce <X>, how do you pronounce <X>, pronounce <X>, how do you say <X>, what does <X> sound like
  • Chinese: <X> 怎么读, <X> 怎么念, <X> 怎么发音, 读一下 <X>, 念一下 <X>

<X> MUST be a single token: a word, project name, product name, acronym, or identifier — the kind of thing a developer would actually type into say-it <X>. The dictionary is keyed on single tokens, so multi-word input is spoken raw (not looked up); for a two-part name pick the head token (say-it postgres, not say-it postgres database).

Do NOT trigger this skill when:

  • <X> is a sentence or paragraph the user wants narrated (e.g. 读一下这段 / read this paragraph). That's a TTS request, not a pronunciation lookup. Suggest say "<sentence>" instead, or just answer in text.
  • The message is asking about pronunciation conceptually (e.g. IPA 是什么 / what is phonetic spelling). Answer in text.
  • <X> is non-English everyday vocabulary or a person's name unrelated to tech. The dictionary's editorial scope is tech-only — fall through to a text-only answer, or skip.

If the target token is ambiguous (multiple candidates in the message), ask which one before invoking.

What to do

  1. Speak it 3 times via say-it.

    say-it <word>
    

    The CLI looks the word up in the dictionary and, if found, sends the dictionary's English-like respelling (e.g. "koob control") to the TTS engine so the pronunciation is the intended community reading — not whatever the engine would have guessed from the spelling alone. (macOS say does not parse IPA / [[inpt PHON]] / SSML <phoneme> markup — it reads them literally — so the dictionary stores respellings that ride the engine's built-in letter-to-sound rules.) If the word isn't in the dictionary, the CLI speaks the raw spelling.

Read the full file on GitHub · 112 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 Changed · +1 lines 503054ec4f19
  2. 12d ago First seen · 111 lines · 165 tokens per session scan A 335d4edcf146

Subscribe to this mod's changes

pronounce-word is a skill published in the GitHub repository anzy-renlab-ai/pronounce (39 stars, last pushed 11d ago), licensed MIT. It adds 165 tokens to every session and 1,898 once invoked, about $0.0008 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-08-30.

Related

Other skills, from other repositories

printing-press-retro

Use when the user asks to retro, run a retrospective, file findings, or improve the Printing Press after a printed-CLI run. Trigger phrases: "retro", "retrospective", "what went wrong", "improve the press", "post-mortem", "lessons learned", "what can we improve", "file a retro", "submit findings". Do not use for…

mvanhorn/cli-printing-press · 96 tokens

教程类H5-小红书小工具

A method for building offline, single-page course experiences for Xiaohongshu’s Mini Tools, which are interactive pages published inside the platform. It combines written lessons, generated illustrations, and JavaScript page switching in a constrained container.

huangrichao2020/pretty-skills · 110 tokens

sansheng-distill

A book and text summarizer that creates one self-contained HTML page with five sections: an overview, chapter notes, the book’s central idea, an action checklist, and questions for judging its reliability. The page includes an embedded Mermaid mind map and works offline without a web server.

huangrichao2020/pretty-skills · 108 tokens

code-tour

Maintain docs/code-tour.md — the annotated guided reading of Aigon's core logic. Use when you have changed code the tour quotes, added a subsystem a new reader would need, or the user says "update the code tour", "the tour is stale", "add X to the code tour", or asks to review/refresh the code examples doc.

jayvee/aigon · 74 tokens

mainframe

Use when Pi writes, reviews, or executes bash; use MAINFRAME tools, AWM, and guarded function execution when available.

gtwatts/mainframe · 29 tokens

mainframe

Discover MAINFRAME read-only shell helpers and route durable agent authority through its control plane when available.

gtwatts/mainframe · 22 tokens