vobiz-cdr

vobiz-cdr is a skill for Claude Code from vobiz-ai/Agent-Skills. It costs 52 tokens per session (2,334 once invoked), scanned A, original, MIT.

An API guide for Vobiz Call Detail Records, or CDRs: records created after a phone call ends. Each record can include call details, billing information, sound-quality measurements, and who or what ended the call.

In plain words
What is it for?
Use it to list or search calls, fetch recent calls, retrieve one call by its ID, export filtered results as CSV, reconcile billing, and analyse quality measures such as delay, jitter, and packet loss.
Why use it?
It provides one place to retrieve, filter, inspect, and export call history. This helps with billing checks and analysis, while making clear that completed-call records are not available during a call.

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 list or search calls, fetch recent calls, retrieve one call by its ID, export filtered results as CSV, reconcile billing, and analyse quality measures such as delay, jitter, and packet loss.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/vobiz-ai/agent-skills/vobiz-cdr
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-cdr
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-cdr

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/vobiz-ai/agent-skills/vobiz-cdr"><img src="https://agentmods.dev/badge/skills/vobiz-ai/agent-skills/vobiz-cdr.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 52 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,334 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.00052 $0.02334
Opus 5 $0.00026 $0.01167
Sonnet 5 $0.00010 $0.00467
Haiku 4.5 $0.00005 $0.00233

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

Security

Grade A, and why

vobiz-cdr 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 11d 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.

curl -G "https://api.vobiz.ai/api/v1/Account/$AUTH_ID/cdr" \
skills/vobiz-cdr/SKILL.md · 124 lines

How it starts

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

Vobiz CDR skill

Use this for call history, billing reconciliation, quality analysis, or analytics. A CDR is written after a call completes - it is not available mid-call. Poll the list/recent endpoints, or use trunk webhooks for real-time events.

Base URL: https://api.vobiz.ai. Auth headers on every request: X-Auth-ID and X-Auth-Token.

Endpoints

Op Path Notes
List GET /api/v1/Account/{auth_id}/cdr Filter by from/to number, date range, direction, min_duration; paginated; includes summary
Search GET /api/v1/Account/{auth_id}/cdr/search Same filters + adds a filters echo of the active filter values
Recent GET /api/v1/Account/{auth_id}/cdr/recent Last 20 by default (limit to change). No pagination, no summary, no filters
Export GET /api/v1/Account/{auth_id}/cdr/export Returns text/csv, not JSON. Same filters as list (no page/per_page)
Get one GET /api/v1/Account/{auth_id}/cdr/{call_id} Path param is named call_id; pass the call's uuid from a list/webhook

auth_id is your master account ID (MA_XXXXXXXX). The path segment is Account (capital A) followed by lowercase cdr - match the casing exactly.

Response shape

Top-level (list): { account_id, count, data, pagination, summary, success }. Search adds filters. Recent returns only { account_id, count, data, success }. Get-one returns { data, success } where data is a single object (not an array).

pagination: { page, per_page, total, pages, has_next, has_prev } (NOT current_page / total_records). total is the count across all pages; pages = ceil(total / per_page).

summary: { totalCalls, answeredCalls, answerRate, avgCallDuration, total_duration_seconds, total_billable_seconds, total_cost, last_call_at }. Note avgCallDuration is a string like "28s", not a number. The summary reflects the filtered set, not the whole account.

filters (search only): { call_direction, from_number, hangup_cause, to_number }. Empty values come back as "", not omitted.

Read the full file on GitHub · 124 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. 11d ago First seen · 124 lines · 52 tokens per session scan A 6c34cd9d9dc0

Subscribe to this mod's changes

vobiz-cdr is a skill published in the GitHub repository vobiz-ai/Agent-Skills (2 stars, last pushed 22d ago), licensed MIT. It adds 52 tokens to every session and 2,334 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-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