vobiz-sip-trunking

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

An API guide for connecting Vobiz to SIP phone systems, which are software or hardware systems that route internet-based calls. It covers trunks, login credentials, allowed IP addresses, outbound destinations, and phone-number assignment.

In plain words
What is it for?
Use it to connect an on-premises phone system or BYOC carrier, create SIP trunks, manage credentials, allow specific IP ranges, configure outbound routing, and attach phone numbers.
Why use it?
It brings the setup needed to connect an existing PBX or carrier into one workflow. It also documents how to restrict incoming SIP traffic and configure backup routes.

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 connect an on-premises phone system or BYOC carrier, create SIP trunks, manage credentials, allow specific IP ranges, configure outbound routing, and attach phone numbers.

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

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/vobiz-ai/agent-skills/vobiz-sip-trunking"><img src="https://agentmods.dev/badge/skills/vobiz-ai/agent-skills/vobiz-sip-trunking.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 35 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,148 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.00035 $0.02148
Opus 5 $0.00017 $0.01074
Sonnet 5 $0.00007 $0.00430
Haiku 4.5 $0.00003 $0.00215

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

Security

Grade A, and why

vobiz-sip-trunking 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 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

TRUNK=$(curl -s -X POST "$BASE/trunks" "${H[@]}" \
skills/vobiz-sip-trunking/SKILL.md · 105 lines

How it starts

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

Vobiz SIP trunking skill

Use this when the user is provisioning their own SIP infrastructure - connecting an on-prem PBX, a BYOC carrier, or restricting trunk access by IP.

Base URL: https://api.vobiz.ai/api/v1. Auth on every request: X-Auth-ID and X-Auth-Token headers. JSON bodies use Content-Type: application/json.

Resources

  • Trunks - the parent SIP container. POST /Account/{auth_id}/trunks, GET, PUT, DELETE. Creating a trunk auto-generates a SIP domain {trunk_id}.sip.vobiz.ai.
  • Credentials - username/password for SIP digest auth. POST /Account/{auth_id}/credentials, list at GET /Account/{auth_id}/trunks/credentials.
  • IP ACL - IP/CIDR allowlist for inbound SIP traffic. POST /Account/{auth_id}/ip-acl, list at GET /Account/{auth_id}/trunks/ip-acl.
  • Origination URIs - outbound SIP routing destinations with priority/weight failover. POST /Account/{auth_id}/origination-uris, list at GET /Account/{auth_id}/trunks/origination-uris.
  • Number assignment - route a DID to a trunk. POST /Account/{auth_id}/numbers/{phone_number}/assign with body { "trunk_group_id": "<trunk_id>" }.

The four auth/routing layers

A trunk can combine four independent controls. Know which one the user needs before reaching for an endpoint:

  1. Credentials (SIP digest) - username/password. Use for dynamic IPs, softphones, remote workers, AI agents. Works behind NAT.
  2. IP ACL - allowlist a source IP or CIDR. Use for static-IP PBXs, SBCs, and carrier interconnects. No per-client config, faster (no auth exchange), but public-IP only.
  3. Origination URI - outbound termination targets. priority (lower wins, tried first) selects the route; weight splits traffic across same-priority URIs (weight 20 gets 2x the traffic of weight 10).
  4. Webhook - informational only. CallInitiated (with Allowed/Reason) and Hangup (with Billsec/MOS) notifications. Fail-open and non-blocking; a webhook response cannot accept or reject a call.

Read the full file on GitHub · 105 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 · 105 lines · 35 tokens per session scan A 3dac0f61e26f

Subscribe to this mod's changes

vobiz-sip-trunking is a skill published in the GitHub repository vobiz-ai/Agent-Skills (2 stars, last pushed 23d ago), licensed MIT. It adds 35 tokens to every session and 2,148 once invoked, about $0.0002 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

architecture-decision-record

ADR templates in the Nygard format with context, decision, consequences, and alternatives. Use when writing ADRs, recording an architectural decision, or evaluating options.

yonatangross/orchestkit · 38 tokens

azure-event-grid-webhooks

Receive and validate Azure Event Grid webhook deliveries. Use when setting up an Event Grid WebHook event handler, implementing the Microsoft.EventGrid.SubscriptionValidationEvent handshake (echo data.validationCode as validationResponse with HTTP 200), implementing the CloudEvents v1.0 HTTP OPTIONS abuse-protection…

hookdeck/webhook-skills · 148 tokens

baselinker-webhooks

Receive BaseLinker (Base.com) webhooks. Use when building a BaseLinker order or warehouse callback receiver, because BaseLinker is not a normal webhook source: deliveries arrive as HTTP HEAD requests with NO body, the entire payload is in the query string (observed params: orderid, state), there is NO signature…

hookdeck/webhook-skills · 131 tokens

cronofy-webhooks

Receive and verify Cronofy push notifications (webhooks). Use when setting up Cronofy notification channels, debugging Cronofy-HMAC-SHA256 verification, or handling Cronofy calendar events like verification, change, profiledisconnected, conferencingprofiledisconnected, profileinitialsynccompleted, and gdprrequested.…

hookdeck/webhook-skills · 102 tokens

alipay-webhooks

Receive and verify Alipay (Antom / Alipay+) webhook notifications. Use when setting up Alipay webhook handlers, debugging RSA256 Signature header verification, or handling payment events like notifyPayment, notifyCapture, notifyRefund, notifyAuthorization, and notifyDispute.

hookdeck/webhook-skills · 58 tokens

clio-webhooks

Receive and verify Clio (Clio Manage) webhooks. Use when setting up Clio webhook handlers, debugging X-Hook-Signature verification, completing the X-Hook-Secret handshake, or handling legal practice events like matter.created, contact.updated, activity.created, or bill events.

hookdeck/webhook-skills · 64 tokens