oatda-generate-speech

oatda-generate-speech is a skill for Claude Code, Codex from devcsde/oatda-skills. It costs 84 tokens per session (2,323 once invoked), scanned A, original, Apache-2.0.

A text-to-speech tool that turns written text into spoken audio through OATDA’s shared API. Text-to-speech means generating a voice recording from words.

In plain words
What is it for?
Creating voiceovers, announcements, narration, and audio versions of text for accessibility.
Why use it?
It provides one route to voice generation from services such as OpenAI and xAI, including a downloadable result for supported workflows. An OATDA API key is required.

Skill for Claude CodeCodex

Part of the oatda plugin — 12 skills shipped together

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.

agentmods
npx agentmods add skills/devcsde/oatda-skills/oatda-generate-speech
Any agent
npx skills add devcsde/oatda-skills --skill oatda-generate-speech
Clone the repo
git clone --depth 1 https://github.com/devcsde/oatda-skills

Made for: Claude Code, Codex.

Or install oatda, the plugin that ships this one along with the rest of its 12 skills.

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 oatda-generate-speech

README.md
[![agentmods](https://agentmods.dev/badge/skills/devcsde/oatda-skills/oatda-generate-speech.svg)](https://agentmods.dev/skills/devcsde/oatda-skills/oatda-generate-speech)
Your own site
<a href="https://agentmods.dev/skills/devcsde/oatda-skills/oatda-generate-speech"><img src="https://agentmods.dev/badge/skills/devcsde/oatda-skills/oatda-generate-speech.svg" alt="Measured on agentmods" height="20"></a>
Per session 84 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,323 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
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.00084 $0.02323
Opus 5 $0.00042 $0.01162
Sonnet 5 $0.00017 $0.00465
Haiku 4.5 $0.00008 $0.00232

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

Security

Grade A, and why

oatda-generate-speech scanned grade A with 1 finding 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 5d 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.

Makes network callslowCapability

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

description: Use when the user wants to generate speech/audio from text using OATDA's unified audio API. MCP generate_speech returns a short-lived signed AUDIO_URL (download with curl, no login). HTTP /api/v1/llm/speech
skills/oatda-generate-speech/SKILL.md · 193 lines

How it starts

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

OATDA Speech Generation

Generate spoken audio from text through OATDA's unified audio API.

When to Use

Use this skill when the user wants to:

  • Convert text to speech or audio
  • Create voiceovers, announcements, narration, or accessibility audio
  • Use TTS models from OpenAI, xAI, Google and others through OATDA
  • Use the OATDA generate_speech capability

HTTP vs MCP (read this first)

Path Response Use when
MCP generate_speech Text with AUDIO_URL: (HMAC ?exp=&sig=, ~1h TTL) + metadata in structuredContent (download_url, format, duration_seconds, costs) Already connected to OATDA MCP (Cursor, etc.)
HTTP POST /api/v1/llm/speech Raw audio bytes (Content-Disposition: attachment) Shell/scripts: curl --output speech.mp3

Upstream providers (OpenAI TTS, xAI Grok TTS) do not return a hosted download URL for speech. xAI returns raw bytes (curl ... --output hello.mp3 in their docs). OATDA MCP mirrors TTS into a short-lived signed download so editors can fetch without a browser session.

MCP agents: After generate_speech, extract AUDIO_URL: from the tool text (or structuredContent.download_url) and download with curl - no login required. Do not expect MCP AudioContent / base64 audio blocks (removed). URL expires in ~1 hour.

Shell/scripts: Prefer HTTP with --output (see step 4), or MCP signed URL + curl.

Prerequisites

The user needs an OATDA API key. Check in this order:

  1. $OATDA_API_KEY environment variable
  2. ~/.oatda/credentials.json config file

If neither exists, tell the user:

You need an OATDA API key. Get one at https://oatda.com, then set it: export OATDA_API_KEY=your_key_here

Step-by-Step Instructions

1. Resolve the API key

# Check env var first; if empty, auto-load from credentials file
if [[ -z "$OATDA_API_KEY" ]]; then
  export OATDA_API_KEY=$(cat ~/.oatda/credentials.json 2>/dev/null | jq -r '.profiles[.defaultProfile].apiKey' 2>/dev/null)
fi

# Verify key exists (show first 8 chars only)
echo "${OATDA_API_KEY:0:8}"

Read the full file on GitHub · 193 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. 5d ago First seen · 193 lines · 84 tokens per session scan A f0f5d228049b

Subscribe to this mod's changes

oatda-generate-speech is a skill published in the GitHub repository devcsde/oatda-skills (0 stars, last pushed 6d ago), licensed Apache-2.0. It adds 84 tokens to every session and 2,323 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). 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

bifrost-debug

Diagnose why a Bifrost gateway, memory injection, or skill discovery isn't working in Claude Code or Claude Desktop. Triggers on 'bifrost not working', 'mcp not connecting', 'memory not injecting', 'skillsearch failing', '401/403 from bifrost', 'bifrost debug', 'gateway unreachable', 'mcpregistrationfailed', 'desktop…

neXenio/bifrost-plugin · 103 tokens

bifrost-code-mode

Call Bifrost gateway MCP servers that are NOT exposed as flat tools, through the executeToolCode meta-tool. Triggers on 'executeToolCode', 'code mode', 'code-mode', 'listToolFiles', 'readToolFile', 'getToolDocs', 'starlark', 'tool not found on bifrost', 'no such tool mcpbifrost', 'how do I call…

neXenio/bifrost-plugin · 112 tokens

bifrost-gateway-essentials

How to actually use a Bifrost gateway: most of its servers are NOT flat tools — a missing mcpbifrost - means the capability is in code mode, reachable by running a Starlark snippet through the executeToolCode meta-tool, with listToolFiles() to discover what exists. Search the skill library (skillsearch) and the shared…

neXenio/bifrost-plugin · 128 tokens

bifrost-mcp-setup

Manually wire a Bifrost MCP server into Claude Code (mcp.json) when the automated installer can't run, or add the Bifrost plugin on Claude Desktop and claude.ai through the Plugins UI. Triggers on 'manually add bifrost mcp', 'edit mcp.json for bifrost', 'installer failed', 'add x-bf-vk header', 'manual bifrost setup'…

neXenio/bifrost-plugin · 114 tokens

bifrost-onboard

Onboard to a Bifrost MCP gateway in Claude Code — run the one-command setup, verify the MCP connects, and confirm memory + skill discovery are live. Triggers on 'set up bifrost', 'onboard me to bifrost', 'install bifrost gateway', 'first-run setup', 'bifrost setup'.

neXenio/bifrost-plugin · 73 tokens

create-site

Creates a new Power Pages code site (SPA) using React, Angular, Vue, or Astro. Guides through the full process from initial concept to deployed site: requirements discovery, scaffolding, component planning, design, implementation, validation, and deployment. Use when the user wants to create, build, or scaffold a new…

microsoft/power-platform-skills · 73 tokens