← ClaudeAtlas

extract-key-termslisted

Extract a glossary of jargon, product names, and proper nouns from a script for consistent pronunciation and subtitle spelling. Use before TTS so the voice model receives a pronunciation lexicon.
huodebing-alt/Agentic-Headshot-Video-Studio · ★ 0 · AI & Automation · score 71
Install: claude install-skill huodebing-alt/Agentic-Headshot-Video-Studio
# Extract Key Terms / 抽取术语表 ## When to use / 何时使用 Before TTS and subtitle generation. Locks down spelling and pronunciation of named entities. 配音和字幕生成之前。固定专有名词的拼写与发音。 ## Inputs / 输入 - `workspace/script/script.full.md`. - Optional `inputs/references/` for context. ## Output / 输出 - `workspace/script/glossary.json`: `[{term, lang, pronunciation_ipa, alt_spellings[], notes}]`. - `workspace/script/glossary.lex` (ElevenLabs / HeyGen pronunciation lexicon format). ## Steps / 步骤 1. NER pass on script: products, people, orgs, technical terms. 2. For each term, propose IPA and ElevenLabs phoneme tag. 3. De-duplicate with case folding; keep canonical form. 4. Emit JSON and `.lex` file. ## Examples / 示例 ``` claude run extract-key-terms ``` ## Failure recovery / 失败回退 - If a term's pronunciation is ambiguous, mark `confidence: low` and let test-voice-sample verify. - If no proper nouns found, write an empty glossary and continue.