audio_generation

audio_generation is a skill for Claude Code, Codex from serejaris/kimi-skills. It costs 172 tokens per session (1,292 once invoked), scanned A, original, MIT.

An audio generator that turns written text into spoken audio or creates sound effects from written descriptions. Text-to-speech means converting words into a voice recording.

In plain words
What is it for?
Use it for voiceovers, spoken versions of text, ambience, music beds, and other described sound effects.
Why use it?
It removes the need to record narration yourself or search manually for suitable sound effects.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is python3 scripts/audio_generation_tool.py ensure-deps.

Good fit Use it for voiceovers, spoken versions of text, ambience, music beds, and other described sound effects.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/serejaris/kimi-skills
agentmods
npx agentmods add skills/serejaris/kimi-skills/audio_generation

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for audio_generation

README.md
[![agentmods](https://agentmods.dev/badge/skills/serejaris/kimi-skills/audio_generation/github.svg)](https://agentmods.dev/skills/serejaris/kimi-skills/audio_generation)
Your own site
<a href="https://agentmods.dev/skills/serejaris/kimi-skills/audio_generation"><img src="https://agentmods.dev/badge/skills/serejaris/kimi-skills/audio_generation/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for audio_generation

Your own site · 80×15
<a href="https://agentmods.dev/skills/serejaris/kimi-skills/audio_generation"><img src="https://agentmods.dev/badge/skills/serejaris/kimi-skills/audio_generation.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 172 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,292 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00172 $0.01292
Opus 5 $0.00086 $0.00646
Sonnet 5 $0.00034 $0.00258
Haiku 4.5 $0.00017 $0.00129

Measured 11d ago against content hash 97ffa62bd652, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

audio_generation scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

the audio to your `output` path with `curl` (allowing up to 5 minutes). The
plugin-skills/audio_generation/SKILL.md · 142 lines

How it starts

The opening of the file, as written. The whole thing — 142 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Audio Generation

Use this skill to generate audio. There are two distinct flows — pick the one that matches the user's intent:

  • Generate speech (text-to-speech): the user wants spoken audio of some text. Use the speech flow.
  • Generate sound effects: the user wants a sound effect / ambience / SFX described in words. Use the sound-effects flow.

Setup

Before the first use, ensure the agent-gw Python SDK (version 0.2.6 or newer) is installed. This checks the current environment and installs or upgrades it only when needed:

python3 scripts/audio_generation_tool.py ensure-deps

The SDK needs an API key from api_key=..., KIMI_API_KEY, or ~/.kimi/agent-gw.json.

Choosing the flow

  1. If the user wants their text read aloud / a voiceover / TTSspeech.
  2. If the user wants a sound effect, ambience, music bed, or SFX described in wordssound-effects.

Then build the parameters for that flow, run the matching command, and on success surface the saved mp3 to the user. On failure, explain the error from the script; do not invent audio or a local path.

Flow A — Generate speech (text-to-speech)

Parameters:

  • text (required): the text to convert to speech.
  • voice_id (required): one of the supported voices below. Default is 05Cdh2gw2NMzDvykn1nm.
  • output (required): local output path ending in .mp3.

Supported voice IDs:

  • 05Cdh2gw2NMzDvykn1nm: calm middle-aged Mandarin male (default)
  • Q63G7WZ5riIGbK8KmqO9: energetic young Mandarin male
  • NLl76XZRVj1RVeXptX3h: warm Mandarin female
  • At6gj9vUVdJhTriBsuxE: cheerful Mandarin female

Best practices: use punctuation and formatting for natural speech, and break long texts into smaller segments for better quality.

python3 scripts/audio_generation_tool.py speech \
  --text "你好,欢迎使用 Kimi。" \
  --voice-id "05Cdh2gw2NMzDvykn1nm" \
  --output "/path/to/output.mp3"

This sends {"text", "voice_id"} to the gateway generate_speech API.

Read the full file on GitHub · 142 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 142 lines · 172 tokens per session scan A 97ffa62bd652

Subscribe to this mod's changes

audio_generation is a skill published in the GitHub repository serejaris/kimi-skills (6 stars, last pushed 1mo ago), licensed MIT. It adds 172 tokens to every session and 1,292 once invoked, about $0.0009 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

ape-present

Converts a blog post into a single self-contained HTML document -- a visual-heavy, readable walkthrough with custom animated diagrams, short and crisp bullet points, and a natural explanation flow from first principles. Trigger on "ape present", "make this presentable", or "turn this post into a doc I can walk people…

arpitbbhayani/ape-skills · 68 tokens

animation-reverse-engineering

Reverse-engineer any motion reference (a video from X/Twitter, Dribbble, a screen recording, a GIF) into production animation code through frame-level dissection. Use when the user shares a video/URL and says "implement this animation", "recreate this motion", "port this interaction", "how does this animate", "clone…

sendaifun/skills · 176 tokens

brand-guidelines

Use when applying or documenting a brand identity. Covers extracting a system from existing assets, documenting colour, type, and voice, and applying a brand consistently across new work.

nimadorostkar/Claude-Skills-collection · 38 tokens

generative-art

Use when creating algorithmic or generative visual art. Covers composition through code, controlled randomness, colour systems, and building work that is varied without being arbitrary.

nimadorostkar/Claude-Skills-collection · 36 tokens

visual-design

Use when creating posters, covers, social graphics, or other static visual designs. Covers composition, typographic hierarchy, colour, and producing original work rather than pastiche.

nimadorostkar/Claude-Skills-collection · 37 tokens

presentations

Use when creating or editing slide decks (.pptx). Covers slide structure, using layouts and templates correctly, charts and images, speaker notes, and building a deck that communicates rather than decorates.

nimadorostkar/Claude-Skills-collection · 42 tokens