一键导入
ars-audio
Usage guide for generating MiniMax TTS audio and subtitles for an episode.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Usage guide for generating MiniMax TTS audio and subtitles for an episode.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Run a single-episode coherence checklist after Studio review edits and before prepare/publish; diagnose or patch thesis drift, step seams, stale arguments, visual rhythm, and publish readiness.
Apply Studio intents back into the episode source and validate the result.
Generate 3 YouTube metadata candidates (title/description/tags) grounded in episode context, let the user pick one, then mark the artifact ready.
Validate repo bootstrap readiness, ARS config, providers, and environment readiness with npx ars doctor.
Create a new episode scaffold for a series with npx ars episode create.
Generate a new custom card for the active series using ARS primitives. Creates a self-contained CardSpec at src/episodes/<active-series>/cards/.
| name | ars:audio |
| description | Usage guide for generating MiniMax TTS audio and subtitles for an episode. |
| argument-hint | [epId] [--steps <id1,id2,...>] [--step <id>] [--speed <0.5-2.0>] [--no-subtitle] |
| model | claude-haiku-4-5-20251001 |
| effort | low |
Audio is not a standalone workflow stage in ARS. It happens inside the review phase: the user can trigger full-episode audio from the studio's generate-full-audio button or by using this skill.
Use this skill as an execution guide for TTS audio generation and subtitle refresh on the target episode.
The provider is resolved from src/episodes/<activeSeries>/series-config.ts via SERIES_CONFIG.speech.provider.
ARS beta currently supports MiniMax only.
npx ars audio generate <epId> [options]
<epId> only — no series prefix. The active series is resolved from .ars/config.json.--speed <0.5-2.0>, --steps <id1,id2,...>, --step <id>, --no-subtitlecli/pronunciation_dict.yaml. Prioritize Traditional Chinese / Taiwan-context polyphones and technical terms first (for example 重, 長, 調, 行, 著, 量, 為, 得, 載, and domain-specific Chinese compounds). Add or fix missing dictionary entries before the first generation when the correct reading is clear from context."API/A P I" only when the narration actually contains the acronym or the issue is clearly English pronunciation; do not let the English acronym section become the default first pass for Chinese narration.SERIES_CONFIG.speech.provider is not minimax, stop and tell the user ARS beta currently supports MiniMax only.MINIMAX_API_KEY or MINIMAX_GROUP_ID is missing, tell the user to add them to .env and stop.After audio succeeds, run npx ars episode validate <epId> and act on its output.
New episodes created by npx ars episode create <epId> already import ./<epId>.subtitles and include an empty subtitles, field so audio generation can merge timed phrases in place. Older or hand-authored episodes may still be missing the import/use wiring. validate catches this as ❌ not imported in episode. The skill MUST auto-fix it instead of punting to the user.
When validate reports Subtitles file exists but episode does not import/use it:
src/episodes/<activeSeries>/<epId>.ts.// import { subtitles } from "./<epId>.subtitles"; is commented, uncomment it. If the import is missing entirely, insert import { subtitles } from "./<epId>.subtitles"; after the last existing import.// subtitles, line and uncomment it. If missing entirely, add subtitles, alongside other top-level Episode properties (typically next to steps).npx ars episode validate <epId> to confirm 📎 Subtitles imported: ✅.Other validation issues (missing summary CTA, long points, deprecated cards) are advisory — surface them to the user but do not auto-fix unless asked.
After success (and any auto-fix), guide the user back into the listening round of review. Pronunciation issues are the common follow-up, and the studio is the place to catch them.
Suggest in this order:
npx ars studio <epId> --phase review, check whether this Claude session already has Studio and the Studio intent Monitor running for the same <epId>. Reuse them if present. If Studio is open but the Monitor is missing, start the Monitor immediately. If another episode's Monitor is running, stop it, run npx ars workstate switch <epId> --stage review, then open/reuse Studio for this episode. Never leave the user in Studio without an intent Monitor./ars:apply-review latest (or the agent watching the loop) will route pronunciation intents to cli/pronunciation_dict.yaml and re-run npx ars audio generate <epId> --step <stepId> for just that step.