Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

polyphonepolyphone 搜索

Agent Skill

polyphone 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

7,738

周安装

329

GitHub Stars

公开资料未说明

下载量

2,711
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:polyphone(polyphone 搜索)
来源仓库:https://github.com/scikkk/polyphone
安装命令:
openclaw skills install polyphone
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install polyphone

简介

修复 TTS 中文多音字发音错误,自动检测歧义字符并添加拼音注释纠正读音。

  • 适用于需要提升语音合成自然度的中文内容创作者或客服系统开发者。
  • 通过 clawhub 安装于 OpenClaw,处理文本输入后返回修正后的语音素材。
  • 需确保输入文本为合法中文内容,避免处理特殊符号或非语言数据。
  • 建议与主流 TTS 引擎配合使用,效果取决于原始文本清晰度与上下文完整性。

SKILL.md

name
senseaudio-polyphone-tts
description
Fix Chinese polyphone (多音字) mispronunciation in TTS by auto-detecting ambiguous characters and applying pinyin annotations. Use when users complain about wrong pronunciation, need precise tone control, or are synthesizing text with characters like 行/干/量/好/了/得/地/的/着/过. Triggers on "读音不对", "这个字读错了", "多音字", "标注拼音", "银行行长", "绕口令", or any request to correct TTS pronunciation.
metadata
openclaw
requires
env
bins
primaryEnv
SENSEAUDIO_API_KEY
homepage
https://senseaudio.cn
compatibility
required_credentials
description
API key from https://senseaudio.cn/platform/api-key
env_var
SENSEAUDIO_API_KEY

SenseAudio Polyphone TTS (多音字)

Precise pronunciation control for Chinese TTS via pinyin annotation. The dictionary parameter lets you override how specific characters are read — essential for polyphones (多音字) that the model might guess wrong.

The dictionary parameter only works with cloned voices and model SenseAudio-TTS-1.5. System voices (male_0004_a etc.) do not support it.

Step 1: Scan for Polyphones

When the user provides text, scan it for these common polyphones and flag any that appear:

CharacterReadingsContext clues
háng (行业/银行/行列) / xíng (行走/行动/可行)银行、行长、行业 → háng
gān (干净/干燥) / gàn (干活/干部)干部、干活 → gàn
liáng (量体温/测量) / liàng (数量/重量)数量、质量 → liàng
pū (铺床/铺路) / pù (店铺/铺子)店铺、铺面 → pù
hǎo (好的/很好) / hào (好奇/爱好)爱好、好学 → hào
le (吃了/来了) / liǎo (了解/了结)了解、了不起 → liǎo
de (跑得快) / dé (得到) / děi (得去)得到 → dé;必须 → děi
de (慢慢地) / dì (土地/地方)副词用法 → de
de (我的) / dí (的确) / dì (目的)目的、的确 → dì/dí
zhe (看着) / zháo (着火) / zhuó (着装)着火、着急 → zháo;着装 → zhuó
cháng (长度/很长) / zhǎng (成长/行长)行长、生长 → zhǎng
zhòng (重量/重要) / chóng (重复/重新)重复、重新 → chóng
zhōng (中间/中国) / zhòng (中奖/中毒)中奖、中毒 → zhòng
hái (还有/还是) / huán (还钱/归还)还钱、偿还 → huán
fā (发现/发展) / fà (头发/理发)头发、理发 → fà
shù (数字/数量) / shǔ (数数/数一数)数数、数落 → shǔ
cān (参加/参考) / shēn (人参/党参)人参、党参 → shēn
chā (差别/差距) / chà (差不多) / chāi (出差)出差 → chāi;差不多 → chà

Show the user which polyphones were found and your best guess at the intended reading, then ask them to confirm or correct before synthesizing.

Example:

检测到多音字:
- "行" (第2个): 银行 → 建议读 háng [hang2] ✓ 还是 xíng [xing2]?
- "行" (第4个): 行长 → 建议读 zhǎng [zhang3] ✓ 还是 cháng [chang2]?

Step 2: Build the Dictionary

Convert confirmed readings into the dictionary array. Each entry covers one phrase containing the polyphone:

原文片段 → replacement 格式:在多音字前加 [pinyin],其余字保持原样

Pinyin format: [声母韵母声调数字] — e.g., [hang2][xing2][zhang3]

Example:

  • original: 银行行长
  • replacement: 银[hang2]行[zhang3]长

Build the full dictionary array:

"dictionary": [
  {"original": "银行行长", "replacement": "银[hang2]行[zhang3]长"},
  {"original": "好奇心", "replacement": "[hao4]奇心"}
]

Each original should be a short phrase (3–8 chars) that uniquely identifies the occurrence in context. Avoid single-character originals — they may match unintended occurrences.

Step 3: Synthesize

The user must provide a cloned voice ID. If they don't have one, remind them that dictionary requires a cloned voice and suggest using the senseaudio-voice-cloner skill first.

curl -s -X POST https://api.senseaudio.cn/v1/t2a_v2 \
  -H "Authorization: Bearer $SENSEAUDIO_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "SenseAudio-TTS-1.5",
    "text": "<TEXT>",
    "stream": false,
    "voice_setting": {
      "voice_id": "<CLONED_VOICE_ID>"
    },
    "audio_setting": {
      "format": "mp3"
    },
    "dictionary": <DICTIONARY_ARRAY>
  }' -o response.json

jq -r '.data.audio' response.json | xxd -r -p > output.mp3

Check base_resp.status_code == 0 before decoding.

Step 4: Iterate

After the user listens, they may find additional mispronunciations. Update the dictionary array and re-synthesize. Keep the previous response.json until the new one succeeds.

Report: file path, duration (jq '.extra_info.audio_length' response.json ms), character count, and which dictionary entries were applied.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

93.86%
按下载量换算2,545

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills