voice-ai

voice-ai is a skill for Claude Code, Codex from oyi77/1ai-skills. It costs 44 tokens per session (1,209 once invoked), scanned B, original, MIT.

A collection of tools and workflows for turning text into speech, speech into text, and recorded voices into cloned voices. It also covers real-time voice agents, which are software systems that talk with people live.

In plain words
What is it for?
Use it for video and podcast voiceovers, meeting transcription, audiobooks, voice-based customer support, and live voice assistants.
Why use it?
It brings common voice tasks into one workflow instead of requiring separate tools for narration, transcription, cloning, and conversation.

Skill for Claude CodeCodex

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

Part of the 1ai-skills plugin — 209 skills, 4 commands shipped together

Good fit Use it for video and podcast voiceovers, meeting transcription, audiobooks, voice-based customer support, and live voice assistants.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/oyi77/1ai-skills/voice-ai
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 oyi77/1ai-skills --skill voice-ai
Clone the repo
git clone --depth 1 https://github.com/oyi77/1ai-skills

Made for: Claude Code, Codex.

Or install 1ai-skills, the plugin that ships this one along with the rest of its 209 skills, 4 commands.

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 voice-ai

README.md
[![agentmods](https://agentmods.dev/badge/skills/oyi77/1ai-skills/voice-ai/github.svg)](https://agentmods.dev/skills/oyi77/1ai-skills/voice-ai)
Your own site
<a href="https://agentmods.dev/skills/oyi77/1ai-skills/voice-ai"><img src="https://agentmods.dev/badge/skills/oyi77/1ai-skills/voice-ai/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 voice-ai

Your own site · 80×15
<a href="https://agentmods.dev/skills/oyi77/1ai-skills/voice-ai"><img src="https://agentmods.dev/badge/skills/oyi77/1ai-skills/voice-ai.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 44 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,209 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 2 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.00044 $0.01209
Opus 5 $0.00022 $0.00605
Sonnet 5 $0.00009 $0.00242
Haiku 4.5 $0.00004 $0.00121

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

Security

Grade B, and why

voice-ai scanned grade B with 2 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 8d 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.

Sends data to an external URLmediumData exfiltration

A POST to an outside endpoint may be telemetry or may be exfiltration; either way the mod talks to somewhere, and you should know where.

resp = requests.post("https://api.elevenlabs.io/v1/voices/add",

Makes network callslowCapability

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

resp = requests.post("https://api.elevenlabs.io/v1/voices/add",
content/voice-ai/SKILL.md · 172 lines

How it starts

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

Overview

Voice AI covers TTS, STT, voice cloning, and real-time conversational agents. Integrates ElevenLabs, OpenAI TTS, Whisper, and Vapi/Bland/Retell.

Capabilities

  • Text-to-speech (ElevenLabs, OpenAI TTS)
  • Audio transcription (Whisper, Deepgram)
  • Voice cloning from samples
  • Real-time voice agents (Vapi, Bland, Retell)
  • Audio processing (pydub)

When to Use

Trigger phrases:

  • "voice ai"

  • "Voice AI — text-to-speech (ElevenLabs, OpenAI TTS), speech-to-text (Whisper), vo"

  • Voiceovers for videos/podcasts

  • Voice-based customer support

  • Transcribing meetings/interviews

  • Audiobook generation

When NOT to Use

  • Task is about content strategy, not creation (use strategy skills)
  • Task is about content distribution (use distribution skills)
  • You need to analyze content performance (use analytics skills)
  • Task is about content moderation (use moderation tools)
  • You don't have content guidelines
  • Task requires domain expertise (consult experts)

Pseudo Code

The voice-ai workflow follows a standard pipeline pattern.

Core flow:

# voice-ai primary flow
input = prepare(raw_data)
result = process(input, config={agents, cloning, elevenlabs, openai, real})
validate(result)
deliver(result)

Error handling:

on error:
  log(error_details)
  retry_with_backoff(max=3)
  if still_failing: alert_and_escalate()

Core Workflow

# voice-ai primary flow
input = prepare(raw_data)
result = process(input, config={agents, cloning, elevenlabs, openai, real})
validate(result)
deliver(result)

Error Handling

on error:
  log(error_details)
  retry_with_backoff(max=3)
  if still_failing: alert_and_escalate()

OpenAI TTS

from openai import OpenAI
client = OpenAI()
resp = client.audio.speech.create(model="tts-1-hd", voice="nova", input="Hello!")
resp.stream_to_file("output.mp3")

ElevenLabs Clone

import requests
resp = requests.post("https://api.elevenlabs.io/v1/voices/add",
    headers={"xi-api-key": KEY}, files={"files": [open("sample.mp3","rb")]}, data={"name":"Clone"})
voice_id = resp.json()["voice_id"]
resp = requests.post(f"https://api.elevenlabs.io/v1/text-to-speech/{voice_id}",
    headers={"xi-api-key": KEY}, json={"text":"Hello!","model_id":"eleven_multilingual_v2"})

Read the full file on GitHub · 172 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. 8d ago First seen · 172 lines · 44 tokens per session scan B 08d787740c31

Subscribe to this mod's changes

voice-ai is a skill published in the GitHub repository oyi77/1ai-skills (12 stars, last pushed today), licensed MIT. It adds 44 tokens to every session and 1,209 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it B with 2 findings (sends data to an external url, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.