Purpose
This is a router skill. When users trigger a general ListenHub action, this skill identifies the intent and delegates to the appropriate specialized skill.
Routing Table
| User intent |
Keywords |
Route to |
| ListenHub Voice end-to-end audio |
"端到端音频", "语音生成", "图片转音频", "图片生成音频", "多音色对白", "参考音频克隆", "克隆音色", "音效", "生成音效" |
/listenhub-voice |
| Podcast |
"podcast", "播客", "debate", "dialogue" |
/podcast |
| Explainer video |
"explainer", "解说视频", "tutorial video" |
/explainer |
| Slides / PPT |
"slides", "幻灯片", "PPT", "presentation" |
/slides |
| TTS / Read aloud |
"TTS", "read aloud", "朗读", "配音", "语音合成" |
/tts |
| Image generation |
"generate image", "画一张", "生成图片", "AI图" |
/image-gen |
| Video generation |
"video", "视频", "seedance", "pixverse", "生成视频", "text to video", "做视频", "口型", "lipsync", "对口型" |
/video-gen |
| Music |
"music", "音乐", "生成音乐", "翻唱", "cover" |
/music |
| Content extraction |
"parse URL", "extract content", "解析链接" |
/content-parser |
| Audio transcription |
"transcribe", "ASR", "语音转文字" |
/asr |
| Creator workflow |
"创作", "写公众号", "小红书", "口播" |
/creator |
How to Route
- Read the user's message and identify which category it falls into
- Tell the user which skill you're routing to
- Follow that skill's SKILL.md completely
If the intent is ambiguous, ask the user to clarify:
Question: "What would you like to create?"
Options:
- "ListenHub Voice" — End-to-end audio: sound effects, multi-voice dialogue, reference-audio cloning, image→audio
- "Podcast" — Audio discussion on a topic
- "Explainer Video" — Narrated video with AI visuals
- "Slides" — Slide deck / presentation
- "Music" — AI-generated music or cover
- "Video" — AI video generation from text or reference materials
Prerequisites
Most skills require the ListenHub CLI. Check:
listenhub auth status --json
If not installed or not logged in, handle automatically — never ask the user to run install commands:
- Auto-install: run
npm install -g @marswave/listenhub-cli silently
- Auto-login: run
listenhub auth login (opens browser)
Exception: /asr runs locally and needs no CLI or API key.
Source: marswaveai/skills — distributed by TomeVault.
1---2name: marswaveai-skills-skills3description: Purpose4---56## Purpose78This is a router skill. When users trigger a general ListenHub action, this skill identifies the intent and delegates to the appropriate specialized skill.910## Routing Table1112| User intent | Keywords | Route to |13|-------------|----------|----------|14| ListenHub Voice end-to-end audio | "端到端音频", "语音生成", "图片转音频", "图片生成音频", "多音色对白", "参考音频克隆", "克隆音色", "音效", "生成音效" | `/listenhub-voice` |15| Podcast | "podcast", "播客", "debate", "dialogue" | `/podcast` |16| Explainer video | "explainer", "解说视频", "tutorial video" | `/explainer` |17| Slides / PPT | "slides", "幻灯片", "PPT", "presentation" | `/slides` |18| TTS / Read aloud | "TTS", "read aloud", "朗读", "配音", "语音合成" | `/tts` |19| Image generation | "generate image", "画一张", "生成图片", "AI图" | `/image-gen` |20| Video generation | "video", "视频", "seedance", "pixverse", "生成视频", "text to video", "做视频", "口型", "lipsync", "对口型" | `/video-gen` |21| Music | "music", "音乐", "生成音乐", "翻唱", "cover" | `/music` |22| Content extraction | "parse URL", "extract content", "解析链接" | `/content-parser` |23| Audio transcription | "transcribe", "ASR", "语音转文字" | `/asr` |24| Creator workflow | "创作", "写公众号", "小红书", "口播" | `/creator` |2526## How to Route27281. Read the user's message and identify which category it falls into292. Tell the user which skill you're routing to303. Follow that skill's SKILL.md completely3132If the intent is ambiguous, ask the user to clarify:3334```35Question: "What would you like to create?"36Options:37 - "ListenHub Voice" — End-to-end audio: sound effects, multi-voice dialogue, reference-audio cloning, image→audio38 - "Podcast" — Audio discussion on a topic39 - "Explainer Video" — Narrated video with AI visuals40 - "Slides" — Slide deck / presentation41 - "Music" — AI-generated music or cover42 - "Video" — AI video generation from text or reference materials43```4445## Prerequisites4647Most skills require the ListenHub CLI. Check:4849```bash50listenhub auth status --json51```5253If not installed or not logged in, handle automatically — never ask the user to run install commands:54551. Auto-install: run `npm install -g @marswave/listenhub-cli` silently562. Auto-login: run `listenhub auth login` (opens browser)5758Exception: `/asr` runs locally and needs no CLI or API key.5960---61> Source: [marswaveai/skills](https://github.com/marswaveai/skills) — distributed by [TomeVault](https://tomevault.io).62<!-- tomevault:4.0:skill_md:2026-07-04 -->