Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

voice-quality-audition语音质量试听

Agent Skill

用于辅助安全审计、权限检查、凭据风险、认证流程和常见漏洞排查。它适合让 Agent 梳理敏感配置、检查依赖风险、分析鉴权逻辑或生成安全复核清单。使用时不能把工具输出直接当最终结论,涉及密钥、令牌、用户数据或生产系统时,应先确认最小权限、脱敏方式和操作边界。

总安装

1,663

周安装

70

GitHub Stars

38

下载量

582
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:voice-quality-audition(语音质量试听)
来源仓库:https://github.com/terrylica/cc-skills
仓库路径:skills/voice-quality-audition
安装命令:
npx skills add https://github.com/terrylica/cc-skills --skill voice-quality-audition
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/terrylica/cc-skills --skill voice-quality-audition

简介

用于评估语音输出质量,检测清晰度、自然度与情感表达效果。

  • 适合配音演员试音、AI 语音产品迭代前的试听环节。
  • 归类为研究检索类工具,输出结果需结合主观听感综合判断。
  • 不建议直接依赖自动化评分替代人工审听。
  • voice-quality-audition 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Voice Quality Audition

Compare Kokoro TTS voice quality across all available voices. Runs tts_kokoro_audition.sh which plays a passage with each top voice. Each voice announces its name before reading the passage. Uses clipboard text or a default passage.

Platform: macOS (Apple Silicon)

Self-Evolving Skill: This skill improves through use. If instructions are wrong, parameters drifted, or a workaround was needed — fix this file immediately, don't defer. Only update for real, reproducible issues.

When to Use This Skill

  • Audition all available Kokoro voices to hear quality differences
  • Compare specific voices side-by-side for a project
  • Re-evaluate voice grades after a Kokoro engine upgrade
  • Select a new default voice for TTS_VOICE_EN or TTS_VOICE_ZH
  • Test how a particular passage sounds across multiple voices

Requirements

  • Kokoro TTS engine installed and healthy (kokoro-install.sh --health)
  • Apple Silicon Mac with MLX Metal available
  • afplay available (ships with macOS)
  • Audition script at plugin scripts/tts_kokoro_audition.sh
  • Shared library at plugin scripts/lib/tts-common.sh

Voice Catalog

Voice IDNameGradeGender
af_heartHeartAFemale
af_bellaBellaA-Female
af_nicoleNicoleB-Female
af_aoedeAoedeC+Female
af_koreKoreC+Female
af_sarahSarahC+Female
am_adamAdamF+Male
am_michaelMichaelunratedMale
am_echoEchoDMale
am_puckPuckunratedMale

Current defaults (configured in ~/.claude/automation/claude-telegram-sync/mise.toml):

  • English voice: af_heart (Grade A) via TTS_VOICE_EN
  • Chinese voice: zf_xiaobei via TTS_VOICE_ZH
  • macOS say fallback EN: Samantha via TTS_VOICE_SAY_EN
  • macOS say fallback ZH: Ting-Ting via TTS_VOICE_SAY_ZH

See Voice Catalog for detailed characteristics and grade criteria.


Workflow Phases

Phase 1: Preflight

Verify Kokoro is installed and healthy:

kokoro-install.sh --health

All 6 checks must pass (venv, Python 3.13, mlx_audio importable, kokoro_common.py, tts_generate.py, version.json).

Phase 2: Text Selection

The audition script reads from the macOS clipboard (pbpaste). If the clipboard is empty or not text, it falls back to a built-in passage about reading in a library.

To audition with custom text, copy the desired passage to the clipboard before running.

Phase 3: Ask User — Full or Selective Audition

Use AskUserQuestion to determine scope:

  • Full audition — Play all 10 voices sequentially (takes several minutes)
  • Select specific voices — Run only a subset (e.g., top 3 female voices)

For a selective audition, edit the VOICES array in the script or pass voice IDs manually.

Phase 4: Execute Audition

~/.local/bin/tts_kokoro_audition.sh

Or directly from the plugin source:

/path/to/plugins/tts-tg-sync/scripts/tts_kokoro_audition.sh

The script acquires the TTS lock, plays each voice sequentially with a 1-second gap, then releases the lock on exit.

Phase 5: Feedback

Use AskUserQuestion to collect the user's preference:

  • Which voice sounded best?
  • Any voices to eliminate from future consideration?
  • Should we update grade assignments?

Phase 6: Apply Configuration

Optionally update the default voice in mise.toml:

# ~/.claude/automation/claude-telegram-sync/mise.toml
[env]
TTS_VOICE_EN = "af_heart"   # Change to preferred voice ID
TTS_VOICE_ZH = "zf_xiaobei"

After changing mise.toml, restart the Telegram bot for the new voice to take effect.


TodoWrite Task Templates

1. [Preflight] Verify Kokoro TTS is installed and healthy (kokoro-install.sh --health)
2. [Text] Check clipboard for passage, fall back to default if empty
3. [Select] Ask user: full audition (all 10 voices) or specific voices
4. [Audition] Run tts_kokoro_audition.sh and let user listen
5. [Feedback] Ask user which voice they prefer and collect grade feedback
6. [Apply] Optionally update TTS_VOICE_EN in mise.toml and restart bot

Post-Change Checklist

  • Kokoro health check passed before audition
  • All selected voices played without errors
  • User confirmed preferred voice
  • mise.toml updated with new voice ID (if changed)
  • Bot restarted after configuration change (if applicable)
  • Voice catalog grades updated in reference doc (if re-graded)

Troubleshooting

IssueCauseSolution
No audio playsKokoro not installedRun kokoro-install.sh --install or use full-stack-bootstrap skill
Audio cuts off mid-sentenceTTS lock stolen by another processCheck for competing TTS processes: pgrep -la afplay
Voice sounds wrongInvalid voice ID in Kokoro modelVerify voice ID exists in VOICES array; check Kokoro version
Clipboard emptyNo text copiedScript uses default passage automatically; no action needed
"ERROR: Local Kokoro not found"Venv or script missingRun kokoro-install.sh --health to diagnose; --install to fix
FAILED for a specific voiceVoice not available in modelVoice may require a different Kokoro version; check model compatibility
Lock not releasedScript crashed without cleanupRemove stale lock: rm -f /tmp/kokoro-tts.lock
All voices sound identicalKokoro model not loaded properlyRe-download model: kokoro-install.sh --upgrade

Reference Documentation

  • Voice Catalog - Comprehensive voice listing with quality grades, characteristics, and selection guidance
  • Evolution Log - Change history for this skill

Post-Execution Reflection

After this skill completes, reflect before closing the task:

  1. Locate yourself. — Find this SKILL.md's canonical path (Glob for this skill's name) before editing. All corrections target THIS file and its sibling references/ — never other documentation.
  2. What failed? — Fix the instruction that caused it. If it could recur, add it as an anti-pattern.
  3. What worked better than expected? — Promote it to recommended practice. Document why.
  4. What drifted? — Any script, reference, or external dependency that no longer matches reality gets fixed now.
  5. Log it. — Every change gets an evolution-log entry with trigger, fix, and evidence.

Do NOT defer. The next invocation inherits whatever you leave behind.



适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

31.08%
按下载量换算181

Claude

31.11%
按下载量换算181

Cursor

18.73%
按下载量换算109

Gemini CLI

9.21%
按下载量换算54

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills