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.
npx skills add autonomous-ai/autonomous-os --skill voicegit clone --depth 1 https://github.com/autonomous-ai/autonomous-osWrote 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.
[](https://agentmods.dev/skills/autonomous-ai/autonomous-os/voice)<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>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.
| Model | Per session | Once 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 |
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`. 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
- 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
- Optionally check if TTS is busy:
GET /voice/status - If
tts_speakingis true, wait or skip - Call
POST /voice/speakwith 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_speakingis true, the speaker is busy. Wait briefly or skip the explicit speech. - If
voice_availableortts_availableis false, inform the user: "Voice output is currently unavailable." - If the API is unreachable, fall back to chat-only reply. Speech is non-critical.
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.
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.
- 7d ago First seen · 185 lines · 61 tokens per session scan A 47f1b23de04c
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.
Other skills, from other repositories
video-frames
Extract a single frame from a local video at the first frame, a timestamp, or a zero-based frame index using FFmpeg.
ppt-design
A workflow for designing presentation slides as editable HTML pages, with an optional conversion to editable PowerPoint files. It defines slide layouts, an outline, visual rules, and how images are embedded.
ideation
Generate project ideas through creative constraints. Use when the user says 'I want to build something', 'give me a project idea', 'I'm bored', 'what should I make', 'inspire me', or any variant of 'I have tools but no direction'. Works for code, art, hardware, writing, tools, and anything that can be made.
create-openbitfun-cinematic-wallpaper-skin
Apply the cinematic animated-wallpaper style recipe to a OpenBitFun Appearance skin. Use after loading the parent create-openbitfun-skin Skill when the user provides animated character artwork and wants a host-managed video background, source-derived glass materials, image-led cards, illustrated dialogs, reproducible…
clip-hand-skill
Expert knowledge for AI video clipping — yt-dlp downloading, whisper transcription, SRT generation, and ffmpeg processing.
sherpa-onnx-tts
Local text-to-speech via sherpa-onnx (offline, no cloud).