gemini-audio-tts-music

gemini-audio-tts-music is a skill for Claude Code from azmym/gemini-plugin. It costs 42 tokens per session (902 once invoked), scanned A, original, MIT.

A skill for creating music with Lyria 3 or speech with Gemini text-to-speech. It supports single-speaker and multi-speaker audio.

In plain words
What is it for?
Use it to make background music, voiceovers, tutorial narration, notification sounds, audio branding, or simulated dialogue.
Why use it?
It removes the need to create demo audio, narration, or sound cues separately from the coding workflow.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions Claude Code.

Part of the gemini-plugin plugin — 9 skills, 6 commands, 5 agents, 7 hooks shipped together

Good fit Use it to make background music, voiceovers, tutorial narration, notification sounds, audio branding, or simulated dialogue.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/azmym/gemini-plugin/gemini-audio-tts-music
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add azmym/gemini-plugin --skill gemini-audio-tts-music
Clone the repo
git clone --depth 1 https://github.com/azmym/gemini-plugin

Made for: Claude Code.

Or install gemini-plugin, the plugin that ships this one along with the rest of its 9 skills, 6 commands, 5 agents, 7 hooks.

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 gemini-audio-tts-music

README.md
[![agentmods](https://agentmods.dev/badge/skills/azmym/gemini-plugin/gemini-audio-tts-music/github.svg)](https://agentmods.dev/skills/azmym/gemini-plugin/gemini-audio-tts-music)
Your own site
<a href="https://agentmods.dev/skills/azmym/gemini-plugin/gemini-audio-tts-music"><img src="https://agentmods.dev/badge/skills/azmym/gemini-plugin/gemini-audio-tts-music/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 gemini-audio-tts-music

Your own site · 80×15
<a href="https://agentmods.dev/skills/azmym/gemini-plugin/gemini-audio-tts-music"><img src="https://agentmods.dev/badge/skills/azmym/gemini-plugin/gemini-audio-tts-music.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 42 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 902 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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.00042 $0.00902
Opus 5 $0.00021 $0.00451
Sonnet 5 $0.00008 $0.00180
Haiku 4.5 $0.00004 $0.00090

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

Security

Grade A, and why

gemini-audio-tts-music scanned grade A with 0 findings 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/gemini-audio-tts-music/SKILL.md · 93 lines

How it starts

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

Gemini Audio TTS Music

Use this skill to generate audio assets: background music via Lyria 3 or synthesized speech via Gemini TTS. TTS supports both single-speaker and multi-speaker dialogue.

When to use this skill

  • Soundtracks and background music: Generate ambient tracks, loopable background music, or short jingles for demos and presentations.
  • Voiceovers: Create narration for product walkthroughs, tutorial videos, or demo recordings.
  • Demo narration: Produce a spoken explanation to accompany a screen recording or slide deck.
  • Notification sounds: Generate short audio cues, chimes, or alert tones.
  • Audio branding: Prototype a sonic logo or brand earcon.
  • Multi-speaker dialogue: Generate a simulated conversation between two or more voices, useful for podcast demos or UX testing of conversational UI.

MCP tools

Tool Purpose
gemini_generate_music Generate music using Lyria 3
gemini_tts Synthesize speech (single or multi-speaker) using Gemini TTS

Choosing between music and TTS

Need Tool
Background music, jingle, ambient track, sound effect gemini_generate_music
Narration, voiceover, spoken explanation, dialogue gemini_tts

Usage pattern

Generate background music with Lyria 3

{
  "tool": "gemini_generate_music",
  "arguments": {
    "prompt": "Upbeat, modern corporate background music. Light percussion, synthesizer melody, energetic but not distracting. Suitable for a product demo video.",
    "duration_seconds": 30
  }
}

Single-speaker voiceover with Gemini TTS

{
  "tool": "gemini_tts",
  "arguments": {
    "text": "Welcome to the Gemini plugin for Claude Code. This tool gives Claude the ability to consult Google's Gemini models for research, code review, image generation, and more.",
    "voice": "en-US-Standard-D",
    "speed": 1.0
  }
}

Multi-speaker dialogue with Gemini TTS

{
  "tool": "gemini_tts",
  "arguments": {
    "turns": [
      { "speaker": "Host", "voice": "en-US-Standard-F", "text": "So, what makes this plugin different from just calling the Gemini API directly?" },
      { "speaker": "Guest", "voice": "en-US-Standard-D", "text": "The main difference is that it integrates Gemini into your Claude Code workflow without any extra setup. You just ask Claude, and it handles the routing." }
    ]
  }
}

Read the full file on GitHub · 93 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 · 93 lines · 42 tokens per session scan A 0fe858e121a6

Subscribe to this mod's changes

gemini-audio-tts-music is a skill published in the GitHub repository azmym/gemini-plugin (1 stars, last pushed 2d ago), licensed MIT. It adds 42 tokens to every session and 902 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. 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

video-perception

Use when the user mentions a video file (.mp4, .mov, .avi, .mkv, .webm), a YouTube URL, asks to watch/analyze/review a video, or references video content in conversation.

jordanrendric/claude-video-vision · 51 tokens

yt-dlp-downloader

Generate and run yt-dlp download commands with probe-driven format selection, safe output naming, retry defaults, and structured execution reports. Use when users want to download videos, extract audio, fetch playlists, grab subtitles, handle authenticated/age-gated content, or download live streams. Covers single…

johnqtcg/awesome-skills · 96 tokens

gemini-imagegen

Use when the user asks to generate, create, draw, edit, or restyle an image, or when a task needs image assets — logos, icons, illustrations, hero images, textures, photos, placeholder art, social/OG cards. Claude cannot produce raster images; a Gemini session via the agy (Antigravity) CLI has a generateimage tool…

Vallykrie/gemini-swarm-skill · 107 tokens

nanobanana-adc

Generate images with Google's Nano Banana Pro (Gemini 3 Pro Image) using Application Default Credentials (ADC) or a GEMINIAPIKEY. Use this when the user asks to create, generate, draw, or render an image via Google / Vertex AI / Gemini.

hummer98/nanobanana-adc · 60 tokens

grok-prompting

Internal guidance for composing Grok prompts for coding, review, diagnosis, and research tasks inside the Grok Claude Code plugin.

LovelaceLoom/grok-plugin-cc · 30 tokens

pasteup

Pipeline for halftone paper-collage and stop-motion-graphic ads. Decodes a reference image into a field-editable JSON spec, generates cut-out elements directly on the Gemini image API (nano-banana line), then assembles them into build-from-empty stop motion with code: a bundled Python compositor by default, or…

tmoody1973/pasteup · 242 tokens