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 vobiz-ai/Agent-Skills --skill vobiz-cdrgit clone --depth 1 https://github.com/vobiz-ai/Agent-SkillsWrote 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/vobiz-ai/agent-skills/vobiz-cdr)<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.
<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>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.00052 | $0.02334 |
| Opus 5 | $0.00026 | $0.01167 |
| Sonnet 5 | $0.00010 | $0.00467 |
| Haiku 4.5 | $0.00005 | $0.00233 |
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" \ 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.
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.
- 11d ago First seen · 124 lines · 52 tokens per session scan A 6c34cd9d9dc0
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.
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.
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"…
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…
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.
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…
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.