vobiz-voice-calls

vobiz-voice-calls is a skill for Claude Code from vobiz-ai/Agent-Skills. It costs 43 tokens per session (1,526 once invoked), scanned A, original, MIT.

A connection for placing and controlling live voice calls through Vobiz. It can start calls, inspect active calls, transfer or control them, hang them up, and receive call events through webhooks.

In plain words
What is it for?
Use it to make outbound calls, play audio or speech, send keypad tones, record or stream calls, detect answering machines, and manage calls in progress.
Why use it?
It removes the need to implement the call-control requests and event handling yourself.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the vobiz plugin — 13 skills, 1 MCP server shipped together

Good fit Use it to make outbound calls, play audio or speech, send keypad tones, record or stream calls, detect answering machines, and manage calls in progress.

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

Made for: Claude Code.

Or install vobiz, the plugin that ships this one along with the rest of its 13 skills, 1 MCP server.

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 vobiz-voice-calls

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/vobiz-ai/agent-skills/vobiz-voice-calls"><img src="https://agentmods.dev/badge/skills/vobiz-ai/agent-skills/vobiz-voice-calls.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 43 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,526 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 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.00043 $0.01526
Opus 5 $0.00022 $0.00763
Sonnet 5 $0.00009 $0.00305
Haiku 4.5 $0.00004 $0.00153

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

Security

Grade A, and why

vobiz-voice-calls scanned grade A with 0 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 12d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/vobiz-voice-calls/SKILL.md · 62 lines

How it starts

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

Vobiz Voice Calls skill

Use this when the user wants to dial out, control an active call, or look up a live call. For completed-call history, prefer the vobiz-cdr skill.

What you can do

  • Make a call - POST /api/v1/Account/{auth_id}/Call/ with {from, to, answer_url, answer_method}. Returns a call_uuid.
  • List live calls - GET /api/v1/Account/{auth_id}/Call to see all in-progress/queued calls.
  • Get one live call - GET /api/v1/Account/{auth_id}/Call/{call_uuid}.
  • Hangup a call - DELETE /api/v1/Account/{auth_id}/Call/{call_uuid}.
  • Mid-call actions - play audio, speak TTS, send DTMF, start/stop recording, start audio stream. Each is a POST to /Call/{call_uuid}/{action}/.
  • Machine detection - outbound calls support synchronous and async answering-machine detection with configurable sensitivity. See call/machine-detection.

Required inputs

  • from: a Vobiz number you own (or a verified caller-ID).
  • to: E.164 format (+91...). Use < to bulk-dial up to 1000 destinations in one request (e.g. 14157654321<14153464321<sip:[email protected]).
  • answer_url: HTTPS endpoint that returns VobizXML when the callee answers.
  • answer_method: HTTP verb for answer_url. The make-call schema treats this as required alongside from/to/answer_url; default to POST.

Leg and casing semantics (memorize these)

  • legs/leg selects who an in-call action hits: aleg = caller (the A-leg, your from side), bleg = callee, both = everyone. Default is aleg everywhere.
  • Play and Speak use the plural field legs (aleg/bleg/both). DTMF uses the singular field leg and accepts aleg/bleg/both per the API schema (some examples show only aleg/bleg).
  • request_uuid and call_uuid are the same identifier returned by make-call; use either.
  • The base host is https://api.vobiz.ai; every path is prefixed with /api/v1.

Pitfalls

  • Path casing matters: /Account/.../Call/ (uppercase Account, uppercase Call) for call ops. Lowercase paths (/account/.../call/) return 401.
  • Trailing slash matters and the two list routes differ by it: GET /Call?status=live lists live calls; GET /Call/?status=queued lists queued calls. POST /Call/ (with slash) makes a call. When in doubt, copy the exact path from the matching doc page.
  • status is a required query param on every retrieve endpoint (live or queued). Omitting it returns the finalized CDR or a 404, not the live record.
  • Transfer is NOT a REST endpoint in the OpenAPI spec - it is POST /Call/{call_uuid}/ documented in call/transfer-call. Don't confuse it with GET /Call/{call_uuid}/ (retrieve queued). The transfer body uses aleg_url/bleg_url and the plural legs selector; the new URLs must return VobizXML.
  • Conferences are created on join via XML, not via REST. There is no "create conference" POST - a caller enters a <Conference>NAME</Conference> room and Vobiz auto-creates it. The REST Conference endpoints only inspect/control/record existing rooms.
  • member_id accepts a single id, a comma-separated list (10,15,22), or all. Conference names with spaces must be URL-encoded (My%20Conf%20Room); names are case-sensitive.
  • Play urls, Speak text, member Play url are required; sending them empty fails. Audio must be public .mp3/.wav over HTTP(S).
  • Stop actions are idempotent: stopping play/speak/recording when nothing is active still returns success (204). Hangup and conference deletes are destructive and not reversible.
  • A real call costs money and can fail for 402 (insufficient balance) or be throttled by 429 (CPS/concurrency limit). In sandbox/test work, place at most one short call per scenario.

Read the full file on GitHub · 62 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. 12d ago First seen · 62 lines · 43 tokens per session scan A bf1cea38e98c

Subscribe to this mod's changes

vobiz-voice-calls is a skill published in the GitHub repository vobiz-ai/Agent-Skills (2 stars, last pushed 23d ago), licensed MIT. It adds 43 tokens to every session and 1,526 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. 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

init-rpm

Project setup and verification. First run creates rpm context for a project. Repeat runs verify that an existing rpm setup matches the latest expected layout and apply safe migrations.

dppdppd/rpm · 48 tokens

backlog

Manage the rpm backlog (long-term project tasks in docs/rpm/future/tasks.org — distinct from Claude's native TaskCreate list, which is session-scoped). Add, list, review, postpone, or complete entries. TRIGGER on natural-language backlog operations — phrasings like "backlog X", "add X to backlog", "add to backlog"…

dppdppd/rpm · 156 tokens

zig-docs-mcp

Connect Prime Agent to the local zig-docs-mcp MCP server for always-fresh official Zig documentation of the latest release, std-library symbol docs from released sources, curated high-performance lightweight-software guidance, and safe local Zig toolchain auto-update prompts. Use when writing, reviewing, or debugging…

gbrlpzz/zig-docs-mcp · 79 tokens

version

Report the installed rpm plugin version. Use when the user asks for the rpm version, plugin version, installed version, or wants to verify which rpm release is loaded.

dppdppd/rpm · 35 tokens

zig-docs

Operating rules for working WITH Zig itself: before writing or reviewing Zig code, fetch fresh docs for the latest release via the zig-docs-mcp tools (zdoc singleton), check whether the local toolchain is behind and offer a gated auto-update, and ground all performance guidance in the bundled high-performance…

gbrlpzz/zig-docs-mcp · 69 tokens

fpf-reference-mcp

Install, connect, validate, or self-host the FPF Reference MCP server. Use for hosted remote setup, local stdio or HTTP runtime setup, and local bridge/proxy setup for clients that need a localhost MCP URL while using the hosted remote endpoint.

venikman/fpf-memory · 57 tokens