videoagent-audio-studio▌
pexoai/pexo-skills · updated Apr 8, 2026
MDX-style export adds YAML metadata + attribution linking explainx.ai and this canonical listing URL.
Unified audio generation dispatcher routing TTS, music, sound effects, and voice cloning to optimal models.
- ›Routes requests to ElevenLabs (TTS, voice cloning, SFX) or fal.ai (music) based on request type, with latencies ranging from <1s to ~15s
- ›Supports five audio capabilities: multilingual text-to-speech with voice selection, low-latency turbo TTS, background music composition, sound effect generation (up to 22 seconds), and voice cloning from audio samples
- ›Requires only ELEVEN
🎙️ VideoAgent Audio Studio
Use when: User asks to generate speech, narrate text, create a voice-over, compose music, or produce a sound effect.
VideoAgent Audio Studio is a smart audio dispatcher. It analyzes your request and routes it to the best available model — ElevenLabs for speech and music, fal.ai for fast SFX — and returns a ready-to-use audio URL.
Quick Reference
| Request Type | Best Model | Latency |
|---|---|---|
| Narrate text / Voice-over | elevenlabs-tts-v3 |
~3s |
| Low-latency TTS (real-time) | elevenlabs-tts-turbo |
<1s |
| Background music | cassetteai-music |
~15s |
| Sound effect | elevenlabs-sfx |
~5s |
| Clone a voice from audio | elevenlabs-voice-clone |
~10s |
How to Use
1. Start the AudioMind server (once per session)
bash {baseDir}/tools/start_server.sh
This starts the ElevenLabs MCP server on port 8124. The skill uses it for all audio generation.
2. Route the request
Analyze the user's request and call the appropriate tool via the MCP server:
Text-to-Speech (TTS)
When user asks to "narrate", "read aloud", "say", or "create a voice-over":
Use MCP tool: text_to_speech
text: "<the text to narrate>"
voice_id: "JBFqnCBsd6RMkjVDRZzb" # Default: "George" (professional, neutral)
model_id: "eleven_multilingual_v2" # Use "eleven_turbo_v2_5" for low latency
Music Generation
When user asks to "compose", "create background music", or "make a soundtrack":
Use MCP tool: text_to_sound_effects (via cassetteai-music on fal.ai)
prompt: "<music description, e.g. 'upbeat lo-fi hip hop, 90 seconds'>"
duration_seconds: <duration>
Sound Effect (SFX)
When user asks for a specific sound (e.g., "a door creaking", "rain on a window"):
Use MCP tool: text_to_sound_effects
text: "<sound description>"
duration_seconds: <1-22>
Voice Cloning
When user provides an audio sample and wants to clone the voice:
Use MCP tool: voice_add
name: "<voice name>"
files: ["<audio_file_url>"]
Example Conversations
User: "Voice this text for me: Welcome to our product launch"
→ Route to: text_to_speech
text: "Welcome to our product launch"
voice_id: "JBFqnCBsd6RMkjVDRZzb"
model_id: "eleven_multilingual_v2"
🎙️ Voiceover done! Listen here
User: "Generate 60 seconds of relaxing background music for a podcast"
→ Route to: cassetteai-music (fal.ai)
prompt: "relaxing lo-fi background music for a podcast, gentle piano and soft beats, 60 seconds"
duration_seconds: 60
🎵 Background music ready! Listen here
User: "Generate a sci-fi style door opening sound effect"
→ Route to: text_to_sound_effects
text: "a futuristic sci-fi door sliding open with a hydraulic hiss"
duration_seconds: 3
Setup
Required
Set ELEVENLABS_API_KEY in ~/.openclaw/openclaw.json:
{
"skills": {
"entries": {
"videoagent-audio-studio": {
"enabled": true,
"env": {
"ELEVENLABS_API_KEY": "your_elevenlabs_key_here"
}
}
}
}
}
Get your key at elevenlabs.io/app/settings/api-keys.
Optional (for fal.ai music & SFX models)
"FAL_KEY": "your_fal_key_here"
Get your key at fal.ai/dashboard/keys.
Self-Hosting the Proxy
The cli.js connects to a hosted proxy by default. If you want full control — or need to serve users in regions where vercel.app is blocked — you can deploy your own instance from the proxy/ directory.
Quick Deploy (Vercel)
cd proxy
npm install
vercel --prod
Environment Variables
Set these in your Vercel project (Dashboard → Settings → Environment Variables):
| Variable | Required For | Where to Get |
|---|---|---|
ELEVENLABS_API_KEY |
TTS, SFX, Voice Clone | elevenlabs.io/app/settings/api-keys |
FAL_KEY |
Music generation | fal.ai/dashboard/keys |
VALID_PRO_KEYS |
(Optional) Restrict access | Comma-separated list of allowed client keys |
Point cli.js to Your Proxy
export AUDIOMIND_PROXY_URL="https://your-domain.com/api/audio"
Or set it in ~/.openclaw/openclaw.json:
{
"skills": {
"entries": {
"videoagent-audio-studio": {
"env": {
"AUDIOMIND_PROXY_URL": "https://your-domain.com/api/audio"
}
}
}
}
}
Custom Domain (Recommended)
If your users are in mainland China, bind a custom domain in Vercel Dashboard → Settings → Domains to avoid DNS issues with vercel.app.
Model Reference
| Model ID | Type | Provider | Notes |
|---|---|---|---|
eleven_multilingual_v2 |
TTS | ElevenLabs | Best quality, supports 29 languages |
eleven_turbo_v2_5 |
TTS | ElevenLabs | Ultra-low latency, ideal for real-time |
eleven_monolingual_v1 |
TTS | ElevenLabs | English only, fastest |
cassetteai-music |
Music | fal.ai | Reliable, fast music generation |
elevenlabs-sfx |
SFX | ElevenLabs | High-quality sound effects (up to 22s) |
elevenlabs-voice-clone |
Clone | ElevenLabs | Clone any voice from a short audio sample |
Changelog
v3.0.0
- Simplified routing table: Removed unstable/offline models from the main reference. The skill now only surfaces models that reliably work.
- Clearer use-case triggers: Added "Use when" section so the agent activates this skill at the right moment.
- Unified setup: Single
ELEVENLABS_API_KEYis all you need to get started.FAL_KEYis now optional. - Removed polling complexity: Music generation now uses
cassetteai-musicby default, which completes synchronously.
v2.1.0
- Added async workflow for long-running music generation tasks.
- Added
cassetteai-musicas a stable alternative for music generation.
v2.0.0
- Migrated to ElevenLabs MCP server architecture.
- Added voice cloning support.
v1.0.0
- Initial release with TTS, music, and SFX routing.
How to use videoagent-audio-studio on Cursor
AI-first code editor with Composer
Prerequisites
Before installing skills in Cursor, ensure your development environment meets these requirements:
- ›Cursor installed and configured on your development machine
- ›Node.js version 16.0+ with npm package manager (verify with
node --version) - ›Active project directory or workspace where you want to add videoagent-audio-studio
Execute installation command
Execute the skills CLI command in your project's root directory to begin installation:
The skills CLI fetches videoagent-audio-studio from GitHub repository pexoai/pexo-skills and configures it for Cursor.
Select Cursor when prompted
The CLI will show a list of available agents. Use arrow keys to navigate and space to select Cursor:
Verify installation
Confirm successful installation by checking the skill directory location:
Reload or restart Cursor to activate videoagent-audio-studio. Access the skill through slash commands (e.g., /videoagent-audio-studio) or your agent's skill management interface.
Security & Verification Notice
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your development environment. Always verify the publisher's identity, review recent commits, and test in isolated environments before production deployment.
List & Monetize Your Skill
Submit your Claude Code skill and start earning
Use Cases▌
Task Automation & Efficiency
Automate repetitive workflows and reduce manual effort
Example
Generate reports, summarize documents, draft communications
Save 3-5 hours per week on routine tasks
Knowledge Enhancement
Learn new skills, understand complex topics, get expert guidance
Example
Explain concepts, provide examples, suggest learning resources
Accelerate learning and skill development by 2x
Quality Improvement
Enhance output quality through reviews, suggestions, and refinements
Example
Review drafts, suggest improvements, catch errors
Improve work quality by 30-40% with less effort
Implementation Guide▌
Prerequisites
- ›Claude Desktop or compatible AI client with skill support
- ›Clear understanding of task or problem to solve
- ›Willingness to iterate and refine outputs
Time Estimate
15-45 minutes depending on use case complexity
Installation Steps
- 1.Install skill using provided installation command
- 2.Test with simple use case relevant to your work
- 3.Evaluate output quality and relevance
- 4.Iterate on prompts to improve results
- 5.Integrate into regular workflow if valuable
Common Pitfalls
- ⚠Expecting perfect results without iteration
- ⚠Not providing enough context in prompts
- ⚠Using skill for tasks outside its intended scope
- ⚠Accepting outputs without review and validation
Best Practices▌
✓ Do
- +Start with clear, specific prompts
- +Provide relevant context and constraints
- +Review and refine all outputs before using
- +Iterate to improve output quality
- +Document successful prompt patterns
✗ Don't
- −Don't use without understanding skill limitations
- −Don't skip validation of outputs
- −Don't share sensitive information in prompts
- −Don't expect skill to replace human judgment
💡 Pro Tips
- ★Be specific about desired format and style
- ★Ask for multiple options to choose from
- ★Request explanations to understand reasoning
- ★Combine AI efficiency with human expertise
When to Use This▌
✓ Use When
Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.
✗ Avoid When
Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.
Learning Path▌
- 1Familiarize yourself with skill capabilities and limitations
- 2Start with low-risk, non-critical tasks
- 3Progress to more complex and valuable use cases
- 4Build expertise through regular use and experimentation
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
Ratings
4.5★★★★★32 reviews- ★★★★★Advait Dixit· Dec 24, 2024
videoagent-audio-studio is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- ★★★★★Dev Rahman· Dec 16, 2024
We added videoagent-audio-studio from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
- ★★★★★Isabella Malhotra· Dec 12, 2024
Useful defaults in videoagent-audio-studio — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
- ★★★★★Sakshi Patil· Nov 11, 2024
Registry listing for videoagent-audio-studio matched our evaluation — installs cleanly and behaves as described in the markdown.
- ★★★★★Advait Lopez· Nov 11, 2024
Registry listing for videoagent-audio-studio matched our evaluation — installs cleanly and behaves as described in the markdown.
- ★★★★★Meera Harris· Nov 7, 2024
Keeps context tight: videoagent-audio-studio is the kind of skill you can hand to a new teammate without a long onboarding doc.
- ★★★★★Charlotte Gupta· Nov 3, 2024
videoagent-audio-studio has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Yusuf Reddy· Oct 26, 2024
videoagent-audio-studio is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- ★★★★★Meera White· Oct 22, 2024
Solid pick for teams standardizing on skills: videoagent-audio-studio is focused, and the summary matches what you get after install.
- ★★★★★Chaitanya Patil· Oct 2, 2024
videoagent-audio-studio reduced setup friction for our internal harness; good balance of opinion and flexibility.
showing 1-10 of 32