Agent skill · Backend & API

voice-reply

Generate voice replies using OpenAI TTS API and send audio responses.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill voice-reply-leovigna-jarvis-template --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 3 KB
Bundled scripts: none
Version: 1.0.0
Declared author: Oscar Baracos
Path: skills/ai-llm/voice-reply-leovigna-jarvis-template/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Voice Reply Skill Generate spoken audio responses using OpenAI's Text-to-Speech API. ## When to Use 1. When the user asks to "reply by voice", "voice reply", "speak this", or similar voice-related requests. 2. **Command trigger:** When user sends `/voice_note`, resend the last message as a voice note. - **Remove all emojis** from the text before converting to speech - **Rephrase if needed** to make it sound natural when spoken (e.g., convert bullet points to flowing sentences) ## How to Use ### 1. Prepare the Response Write your response **without emojis** — they don't translate well to speech. ### 2. Generate Audio **Important:** Use `opus` format for Telegram voice notes (shows waveform bubble). ```bash curl https://api.openai.com/v1/audio/speech \ -H "Authorization: Bearer $OPENAI_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "gpt-4o-mini-tts", "input": "<your text here>", "voice": "echo", "speed": 1.2, "response_format": "opus" }' -s --output /tmp/voice_reply.ogg ``` ### 3. Send the Audio Copy to outbound folder and send via message tool: ```bash mkdir -p /home/exedev/.clawdbot/media/outbound cp /tmp/voice_reply.ogg /home/exedev/.clawdbot/media/outbound/voic

What's inside
Steps it walks through
  1. When to Use
  2. How to Use
  3. 1. Prepare the Response
  4. 2. Generate Audio
  5. 3. Send the Audio
  6. Configuration Options
  7. Voice Options
  8. Speed
  9. Model
  10. Example Workflow
  11. Tips
  12. References
Ships with 1 file
  • metadata.json
Commands it runs
curl https://api.openai.com/v1/audio/speech \
mkdir -p /home/exedev/.clawdbot/media/outbound
cp /tmp/voice_reply.ogg /home/exedev/.clawdbot/media/outbound/voice_reply.ogg
cp /tmp/reply.ogg ~/.clawdbot/media/outbound/reply.ogg
More from claude-skill-registry
All skills →
About this skill
What does the voice-reply skill do?

Generate voice replies using OpenAI TTS API and send audio responses.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill voice-reply-leovigna-jarvis-template --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going