Token导航 LogoToken导航TokenDH.com
待分类需要联网github未标认证来源可访问许可证需确认审计提醒

audio-producer-agent音频制作人 Agent

Agent Skill

用于辅助音频、音乐、语音转写、语音合成或声音素材处理。它适合让 Agent 生成配乐说明、整理音频流程、调用语音工具或处理播客和视频配音素材。使用时需要确认输入音频来源、输出格式、时长和模型限制;涉及人声克隆、版权音乐或公开发布时,应先核对授权和合规边界。

总安装

897

周安装

37

GitHub Stars

10

下载量

293
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:audio-producer-agent(音频制作人 Agent)
来源仓库:https://github.com/michaelboeding/skills
仓库路径:skills/audio-producer-agent
安装命令:
npx skills add https://github.com/michaelboeding/skills --skill audio-producer-agent
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/michaelboeding/skills --skill audio-producer-agent

简介

用于单声道音频内容创作,包括有声书、旁白解说和品牌音乐制作。

  • 整合 Gemini TTS、ElevenLabs 和 Lyria 进行文本转语音和背景音乐生成。
  • 适用于广告音频、电台宣传和产品介绍等商业用途的声音制作。
  • 安装方式:github,通过 npx skills add 命令从指定仓库添加。
  • 注意:对话类内容应使用 podcast-producer 技能替代本工具。

SKILL.md

Audio Producer

Create single-speaker audio content: audiobooks, voiceovers, narrations, jingles, and more.

This is an orchestrator skill that combines:

  • Text-to-speech / narration (Gemini TTS, ElevenLabs, or OpenAI TTS)
  • Background music / ambient audio (Lyria)
  • Audio assembly (FFmpeg via media-utils)

For dialogues and conversations, use podcast-producer instead.

What You Can Create

TypeExample
AudiobookLong-form narration of text/chapters
VoiceoverNarration for video, presentation, or slideshow
Audio adRadio or podcast advertisement
JingleShort brand music with optional tagline
Sonic logoAudio brand identifier (few seconds)
Audio guideMuseum/tour style narration
MeditationGuided relaxation with ambient audio
SoundscapeAmbient audio environment

Prerequisites

  • GOOGLE_API_KEY - For Gemini TTS (voice) and Lyria (music)
  • FFmpeg installed: brew install ffmpeg

Workflow

Step 1: Gather Requirements (REQUIRED)

⚠️ DO NOT skip this step. Use interactive questioning — ask ONE question at a time.

Question Flow

⚠️ Use the AskUserQuestion tool for each question below. Do not just print questions in your response — use the tool to create interactive prompts with the options shown.

Q1: Type

"I'll create that audio for you! First — what type of audio? - Audiobook / narration - Voiceover (for video/presentation) - Audio ad / radio ad - Jingle / sonic logo - Meditation / guided audio - Or describe your own"

*Wait for response.*

Q2: Content

"What's the text/content to speak? - Paste the text here - Or describe what you need and I'll write it"

*Wait for response.*

Q3: Voice

"What voice style? - Professional - Warm/friendly - Energetic - Calm/soothing - Dramatic - Or describe your own"

*Wait for response.*

Q4: Music

"Do you want background music? - Yes — describe the style (ambient, upbeat, cinematic, etc.) - No — voice only"

*Wait for response.*

Q5: Duration

"What's the target duration? - Let it be natural length - Or specify (e.g., 30 seconds, 2 minutes)"

*Wait for response.*

Quick Reference

QuestionDetermines
TypeProcessing approach and output format
ContentTTS input text
VoiceVoice selection and style parameters
MusicWhether to generate and mix music
DurationPacing and content length

Step 2: Prepare the Content

For narration/voiceover:

  • Optimize text for speech (spell out numbers if needed)
  • Add natural pause points (commas, periods)
  • Break long content into chunks if > 32k tokens

For jingles/audio ads:

  • Write the tagline/copy
  • Determine music style
  • Plan structure: music intro → voice → music outro

For audiobooks:

  • Split into chapters
  • Consider different voice styles for different sections
  • Plan ambient music (subtle, low volume)

Step 3: Generate Assets

Type: Voiceover / Narration

Generate narration (Gemini TTS):

python3 ${CLAUDE_PLUGIN_ROOT}/skills/voice-generation/scripts/gemini_tts.py \
  --text "Your narration text here..." \
  --voice Charon \
  --style "Professional, measured pace, warm and authoritative"

Generate background music if needed (Lyria):

python3 ${CLAUDE_PLUGIN_ROOT}/skills/music-generation/scripts/lyria.py \
  --prompt "subtle ambient, corporate, unobtrusive, background" \
  --duration 120 \
  --density 0.2 \
  --brightness 0.4

Mix voice with music:

python3 ${CLAUDE_PLUGIN_ROOT}/skills/media-utils/scripts/audio_mix.py \
  --voice narration.wav \
  --music background.wav \
  --music-volume 0.15 \
  --fade-in 2 \
  --fade-out 3 \
  -o final_voiceover.mp3

Type: Audio Ad / Radio Spot

Structure: 30-second radio ad

0-3s:   Music hook (attention grabber)
3-25s:  Voice with music bed underneath
25-30s: Music + tagline + CTA

Generate energetic music:

python3 ${CLAUDE_PLUGIN_ROOT}/skills/music-generation/scripts/lyria.py \
  --prompt "upbeat, energetic, advertising, catchy, radio jingle" \
  --duration 35 \
  --bpm 120

Generate voice with style:

python3 ${CLAUDE_PLUGIN_ROOT}/skills/voice-generation/scripts/gemini_tts.py \
  --text "Tired of ordinary coffee? Wake up to extraordinary! Premium beans, perfect roast, delivered fresh. Visit BestCoffee.com today and get 20% off your first order!" \
  --voice Puck \
  --style "Energetic, radio announcer style, enthusiastic, clear call to action"

Mix and assemble:

python3 ${CLAUDE_PLUGIN_ROOT}/skills/media-utils/scripts/audio_mix.py \
  --voice ad_voice.wav \
  --music ad_music.wav \
  --music-volume 0.35 \
  --fade-in 1 \
  --fade-out 2 \
  -o radio_ad.mp3

Type: Jingle / Sonic Logo

For jingle with tagline:

Generate catchy music:

python3 ${CLAUDE_PLUGIN_ROOT}/skills/music-generation/scripts/lyria.py \
  --prompt "catchy jingle, memorable, brand audio, upbeat, major key" \
  --duration 10 \
  --bpm 110 \
  --scale C

Generate tagline:

python3 ${CLAUDE_PLUGIN_ROOT}/skills/voice-generation/scripts/gemini_tts.py \
  --text "TechCorp. Innovation for tomorrow." \
  --voice Kore \
  --style "Confident, aspirational, slight pause between company name and tagline"

Mix tagline over music:

python3 ${CLAUDE_PLUGIN_ROOT}/skills/media-utils/scripts/audio_mix.py \
  --voice tagline.wav \
  --music jingle.wav \
  --music-volume 0.5 \
  -o brand_jingle.mp3

For sonic logo (music only):

python3 ${CLAUDE_PLUGIN_ROOT}/skills/music-generation/scripts/lyria.py \
  --prompt "sonic logo, 3 seconds, memorable, brand identifier, simple, distinctive" \
  --duration 5 \
  --bpm 100

Type: Audiobook

Process chapters:

# Chapter 1
python3 ${CLAUDE_PLUGIN_ROOT}/skills/voice-generation/scripts/gemini_tts.py \
  --text-file chapter1.txt \
  --voice Algieba \
  --style "Audiobook narrator, measured pace, engaging storytelling" \
  -o chapter1.wav

# Chapter 2
python3 ${CLAUDE_PLUGIN_ROOT}/skills/voice-generation/scripts/gemini_tts.py \
  --text-file chapter2.txt \
  --voice Algieba \
  -o chapter2.wav

Optional: Add subtle ambient music:

python3 ${CLAUDE_PLUGIN_ROOT}/skills/music-generation/scripts/lyria.py \
  --prompt "ambient, subtle, reading music, calm, unobtrusive, soft piano" \
  --duration 600 \
  --density 0.1 \
  --brightness 0.3

Concatenate chapters:

python3 ${CLAUDE_PLUGIN_ROOT}/skills/media-utils/scripts/audio_concat.py \
  -i chapter1.wav chapter2.wav chapter3.wav \
  --crossfade 0.5 \
  -o audiobook.mp3

Type: Meditation / Relaxation Audio

Generate calming narration:

python3 ${CLAUDE_PLUGIN_ROOT}/skills/voice-generation/scripts/gemini_tts.py \
  --text "Close your eyes. Take a deep breath in... and slowly release..." \
  --voice Achernar \
  --style "Calm, soothing, slow pace, relaxing, gentle, meditation guide"

Generate ambient soundscape:

python3 ${CLAUDE_PLUGIN_ROOT}/skills/music-generation/scripts/lyria.py \
  --prompt "ambient, meditation, peaceful, nature sounds, gentle, calming" \
  --duration 300 \
  --density 0.1 \
  --brightness 0.6

Mix with high ambient volume:

python3 ${CLAUDE_PLUGIN_ROOT}/skills/media-utils/scripts/audio_mix.py \
  --voice meditation_guide.wav \
  --music ambient.wav \
  --music-volume 0.5 \
  -o meditation_session.mp3

Step 4: Deliver the Result

Example delivery:

"✅ Your audio ad is ready!

File: coffee_radio_ad.mp3 (30s)

What I created:

  • Energetic voiceover (Puck voice, radio announcer style)
  • Upbeat background music (120 BPM)
  • Music ducks under voice, fades out at end

Structure:

  • 0-3s: Music hook
  • 3-25s: Voice + music bed
  • 25-30s: Music swell + tagline

Want me to:

  • Try a different voice?
  • Change the music energy?
  • Adjust timing?"

Voice Recommendations by Type

Audio TypeRecommended VoicesStyle Direction
Corporate voiceoverCharon, OrusProfessional, measured
AudiobookAlgieba, DespinaSmooth, engaging
Radio adPuck, LaomedeiaEnergetic, upbeat
MeditationAchernar, SulafatCalm, soothing
Jingle taglineKore, AlnilamConfident, memorable
DocumentaryGacrux, RasalgethiMature, authoritative
TutorialAchird, CharonFriendly, clear

Music Recommendations by Type

Audio TypeLyria PromptSettings
Corporate VO"subtle, professional, ambient"density: 0.2, brightness: 0.4
Radio ad"upbeat, energetic, catchy"bpm: 120, density: 0.6
Audiobook"soft, ambient, unobtrusive"density: 0.1, brightness: 0.3
Meditation"peaceful, ambient, nature"density: 0.1, brightness: 0.6
Jingle"catchy, memorable, brand"bpm: 110, density: 0.5

Limitations

  • Gemini TTS max: 32k tokens per request (split longer content)
  • Lyria instrumental only: No vocals in background music
  • Processing time: Long audiobooks take time to generate

Example Prompts

Voiceover:

"Create a professional voiceover for this script: '...' Add subtle corporate background music."

Audio ad:

"Create a 30-second radio ad for our coffee brand. Energetic, memorable, with catchy music. End with 'Visit BestCoffee.com'"

Jingle:

"Create a 5-second jingle for TechCorp. Modern, memorable, with the tagline 'Innovation for tomorrow'"

Audiobook:

"Convert this text into an audiobook chapter. Use a warm, engaging narrator voice. Add subtle ambient music."

Meditation:

"Create a 5-minute guided meditation. Calm, soothing voice with peaceful ambient background."

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.71%
按下载量换算102

Claude

31.36%
按下载量换算92

Cursor

21.03%
按下载量换算62

Gemini CLI

10.54%
按下载量换算31

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills