senseaudio-voice-picker

Recommend the best SenseAudio voice for any scenario or emotion. Use when users ask which voice to use — e.g. "儿童故事播客用什么音色", "电商直播带货适合哪个声音", "我需要撒娇感的女声", "有没有傲娇的音色". No API key needed for recommendations; optionally generates a TTS preview sample.

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "senseaudio-voice-picker" with this command: npx skills add scikkk/voice-picker

SenseAudio Voice Picker

Recommend the right voice for any use case. No API call needed — just match the user's description to the best voice IDs.

Voice Library

Free Plan (免费版)

Namevoice_idStyle
可爱萌娃child_0001_a开心
可爱萌娃child_0001_b平稳
儒雅道长male_0004_a平稳
沙哑青年male_0018_a深情

Starter Plan (尝鲜版) — VIP

Namevoice_idStyle
亢奋主播male_0027_a热情介绍
亢奋主播male_0027_b卖点解读
亢奋主播male_0027_c促销逼单
撒娇青年male_0023_a平稳

Advanced/Pro/Business (高级版+) — SVIP

Namevoice_idStyle
嗲嗲台妹female_0033_a平稳
嗲嗲台妹female_0033_b开心
嗲嗲台妹female_0033_c撒娇
嗲嗲台妹female_0033_d低落
嗲嗲台妹female_0033_e委屈
嗲嗲台妹female_0033_f生气
魅力姐姐female_0027_a平稳
魅力姐姐female_0027_b撒娇
魅力姐姐female_0027_c病娇
魅力姐姐female_0027_d低落
魅力姐姐female_0027_e妩媚
魅力姐姐female_0027_f傲娇
气质学姐female_0008_a生气
气质学姐female_0008_b开心
气质学姐female_0008_c平稳
温柔御姐female_0006_a深情
乐观少年male_0026_a平稳
乐观少年male_0026_b开心
乐观少年male_0026_c深情
孔武青年male_0019_a平稳
可靠青叔male_0028_a内容剖析
可靠青叔male_0028_b开场介绍
可靠青叔male_0028_c广告中插
可靠青叔male_0028_d轻松铺陈
可靠青叔male_0028_e细心提问
可靠青叔male_0028_f主题升华
知心少女female_0035_a内容剖析
知心少女female_0035_b开场介绍
知心少女female_0035_c广告中插
知心少女female_0035_d轻松铺陈
知心少女female_0035_e细心提问
知心少女female_0035_f主题升华

Scenario Matching Guide

Use this to map user descriptions to the right voices:

Scenario / KeywordTop picks
儿童故事 / 童话 / 儿童教育child_0001_b, child_0001_a
电商直播 / 带货 / 促销male_0027_c, male_0027_a
新闻播报 / 正式 / 专业male_0004_a, female_0008_c
有声书 / 故事叙述male_0018_a, female_0006_a
播客 / 知识分享male_0028_a, female_0035_a
广告 / 营销文案male_0028_c, female_0035_c
轻松日常 / 闲聊male_0026_a, male_0028_d
撒娇 / 可爱嗲female_0033_c, female_0027_b
傲娇female_0027_f
病娇female_0027_c
妩媚 / 性感female_0027_e
开心 / 活泼female_0033_b, male_0026_b
生气 / 愤怒female_0033_f, female_0008_a
深情 / 感人male_0018_a, male_0026_c
低落 / 难过female_0033_d, female_0027_d
委屈female_0033_e

Recommendation Format

Always show 1–3 options. For each:

**温柔御姐** — female_0006_a
风格:深情
套餐:高级版+(SVIP)
适合:有声书、情感类内容、温柔叙述场景

If the user mentions their plan tier, filter to only show voices they can access.

Optional: TTS Preview

If the user wants to hear a sample, ask for a preview sentence (or use a default like "你好,欢迎体验 SenseAudio 语音服务。"), then call the TTS API:

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.0\",
    \"text\": \"<PREVIEW_TEXT>\",
    \"stream\": false,
    \"voice_setting\": { \"voice_id\": \"<VOICE_ID>\" },
    \"audio_setting\": { \"format\": \"mp3\" }
  }" -o preview.json

jq -r '.data.audio' preview.json | xxd -r -p > preview_<VOICE_ID>.mp3

Generate one file per recommended voice so the user can compare directly.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

Tsconfig Validator

Validate and lint tsconfig.json files for common mistakes, conflicting compiler options, strictness gaps, and best practices. Use when asked to lint, validat...

Registry SourceRecently Updated
General

API Diff

Compare two OpenAPI 3.x or Swagger 2.0 specs and generate a changelog of breaking and non-breaking changes. Detect removed endpoints, new required parameters...

Registry SourceRecently Updated
General

Eslint Flat Config Validator

Validate ESLint v9+ flat config files (JSON-exported) for structural correctness, language options, rules configuration, plugin hygiene, file patterns, and b...

Registry SourceRecently Updated
General

Migration Safety Checker

Check database migrations for safety — detect data loss risks, locking operations, backward compatibility issues, and deployment ordering problems across SQL...

Registry SourceRecently Updated