voice

voice is a skill for Claude Code, Codex from autonomous-ai/autonomous-os. It costs 61 tokens per session (2,072 once invoked), scanned A, original, Apache-2.0.

A skill for controlling spoken output and the device's microphone and speaker mute settings. Normal replies are already spoken automatically.

In plain words
What is it for?
It helps mute the microphone and speaker together, mute only the speaker, check whether speech is active, and speak extra or alternate text.
Why use it?
It handles privacy and special speech situations, such as muting during a meeting or speaking separate text while other actions happen.

Skill for Claude CodeCodex

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

Good fit It helps mute the microphone and speaker together, mute only the speaker…

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

Made for: Claude Code, Codex.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/autonomous-ai/autonomous-os/voice.svg)](https://agentmods.dev/skills/autonomous-ai/autonomous-os/voice)
Your own site
<a href="https://agentmods.dev/skills/autonomous-ai/autonomous-os/voice"><img src="https://agentmods.dev/badge/skills/autonomous-ai/autonomous-os/voice.svg" alt="Measured on agentmods" height="20"></a>
Per session 61 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,072 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00061 $0.02072
Opus 5 $0.00030 $0.01036
Sonnet 5 $0.00012 $0.00414
Haiku 4.5 $0.00006 $0.00207

Measured 7d ago against content hash 47f1b23de04c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

voice 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 7d 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.

Use `Bash` with `curl` to call the HTTP API at `http://127.0.0.1:5001`.
skills/voice/SKILL.md · 185 lines

How it starts

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

Voice — Speak Through Speaker

Quick Start

Your chat replies are automatically spoken aloud through TTS. Use this skill only when you need to speak additional or separate text outside your normal reply (e.g., parallel speech during tool calls, or text different from your chat reply).

Workflow

  1. Determine if you need explicit speech beyond your normal reply:
    • Normal conversational reply -> do NOT call this skill, TTS is automatic
    • Need to speak while also performing tool calls -> use POST /voice/speak
    • Need to speak different text than your chat reply -> use POST /voice/speak
    • Reacting to a sensing event before reply is finalized -> use POST /voice/speak
  2. Optionally check if TTS is busy: GET /voice/status
  3. If tts_speaking is true, wait or skip
  4. Call POST /voice/speak with plain text

Examples

Input: Normal conversational reply Output: Do NOT call this skill. Just reply normally — your text is automatically spoken.

Input: You need to greet the user while also activating a scene Output: Call POST /voice/speak with {"text": "Good morning!"} in parallel with the Scene API call.

Input: You want to say something different from your chat reply Output: Call POST /voice/speak with the spoken text. Then provide your chat reply separately.

Input: User says "say something" / "tell me a joke" Output: Do NOT call this skill. Just reply normally with the joke — automatic TTS handles it.

Tools

Use Bash with curl to call the HTTP API at http://127.0.0.1:5001.

Speak text

curl -s -X POST http://127.0.0.1:5001/voice/speak \
  -H "Content-Type: application/json" \
  -d '{"text": "Hello, this is a test."}'

Text max 2000 characters. Returns immediately; audio plays in background.

Check voice status

curl -s http://127.0.0.1:5001/voice/status

Response:

{
  "voice_available": true,
  "voice_listening": false,
  "tts_available": true,
  "tts_speaking": false
}

Error Handling

  • If tts_speaking is true, the speaker is busy. Wait briefly or skip the explicit speech.
  • If voice_available or tts_available is false, inform the user: "Voice output is currently unavailable."
  • If the API is unreachable, fall back to chat-only reply. Speech is non-critical.

Read the full file on GitHub · 185 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 7d ago First seen · 185 lines · 61 tokens per session scan A 47f1b23de04c

Subscribe to this mod's changes

voice is a skill published in the GitHub repository autonomous-ai/autonomous-os (277 stars, last pushed 2d ago), licensed Apache-2.0. It adds 61 tokens to every session and 2,072 once invoked, about $0.0003 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-30.