twilio-regulatory-compliance-bundles

twilio-regulatory-compliance-bundles is a skill for Claude Code, Codex from twilio/ai. It costs 70 tokens per session (1,734 once invoked), scanned B, original, MIT.

Guidance for Twilio regulatory compliance bundles, which are records proving who is allowed to use phone numbers in countries that require identity checks. A bundle combines an end user, such as a person or business, with documents such as registration or proof of address.

In plain words
What is it for?
Use it to determine whether a country requires a bundle, create the end user and supporting documents, assign them to the bundle, evaluate and submit it, fix failures, and manage multi-account setups for software providers.
Why use it?
It explains why phone-number provisioning can fail and how to satisfy country-specific verification rules. It also covers checking, submitting, correcting, and updating the required records.

Skill for Claude CodeCodex ✓ vendor

Written for Claude Code and Codex: shipped in a Claude Code plugin, but also agents/openai.yaml present.

Part of the ai plugin — 57 skills shipped together

Good fit Use it to determine whether a country requires a bundle, create the end user and supporting documents, assign them to the bundle, evaluate and submit it, fix failures, and manage multi-account setups for software providers.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/twilio/ai/twilio-regulatory-compliance-bundles
View source ↗ twilio/ai
About the project

Twilio for AI provides coding agents with skills and an MCP server for using Twilio services and documentation. The MCP server searches Twilio documentation and API specifications and retrieves full schemas for selected operations, while the skills supply procedural guidance to agents. Its catalogue add-ons are intended for Claude Code, Cursor, Codex, and other tools that support the Agent Skills standard.

twilio/ai · 32 stars · on GitHub

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 twilio/ai --skill twilio-regulatory-compliance-bundles
Clone the repo
git clone --depth 1 https://github.com/twilio/ai

Made for: Claude Code, Codex.

Or install ai, the plugin that ships this one along with the rest of its 57 skills.

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 twilio-regulatory-compliance-bundles

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/twilio/ai/twilio-regulatory-compliance-bundles"><img src="https://agentmods.dev/badge/skills/twilio/ai/twilio-regulatory-compliance-bundles.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 70 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,734 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 2 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.00070 $0.01734
Opus 5 $0.00035 $0.00867
Sonnet 5 $0.00014 $0.00347
Haiku 4.5 $0.00007 $0.00173

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

Security

Grade B, and why

twilio-regulatory-compliance-bundles scanned grade B with 2 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 13d 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.

Sends data to an external URLmediumData exfiltration

A POST to an outside endpoint may be telemetry or may be exfiltration; either way the mod talks to somewhere, and you should know where.

end_user = requests.post( "https://numbers.twilio.com/v2/RegulatoryCompliance/EndUsers",

Makes network callslowCapability

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

regulations = requests.get(
skills/twilio/twilio-regulatory-compliance-bundles/SKILL.md · 208 lines

How it starts

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

Overview

Phone numbers are national resources — many countries require identity verification of the end-user before provisioning. A Regulatory Bundle is a container holding an End-User record + Supporting Documents that proves your right to use numbers in a specific country.

Not all countries require bundles — check the Regulatory Guidelines page for country-specific requirements. If a country requires a bundle, provisioning fails without one.


Key Concepts

Resource What it is
Regulation Country-specific requirement defining what End-User types and document types are needed
Bundle Container that holds an End-User + Supporting Documents for a specific regulation
End-User The entity answering calls or receiving messages (individual or business type)
Supporting Document Identity/address verification documents (business registration, proof of address, etc.)
Evaluation Synchronous check that validates a bundle against its regulation before submission
Item Assignment Links an End-User or Supporting Document to a Bundle

Quickstart: Provision a Number with a Bundle

Step 1 — Query the Regulation

Find out what's required for the country and number type:

Python

import os, requests

account_sid = os.environ["TWILIO_ACCOUNT_SID"]
auth_token = os.environ["TWILIO_AUTH_TOKEN"]

# What does Germany require for local business numbers?
regulations = requests.get(
    "https://numbers.twilio.com/v2/RegulatoryCompliance/Regulations",
    params={"IsoCountry": "DE", "NumberType": "local", "EndUserType": "business"},
    auth=(account_sid, auth_token)
).json()

for reg in regulations["results"]:
    print(f"Regulation: {reg['sid']}")
    print(f"Requirements: {reg['requirements']}")

Step 2 — Create an End-User

Python

end_user = requests.post(
    "https://numbers.twilio.com/v2/RegulatoryCompliance/EndUsers",
    data={
        "FriendlyName": "Acme GmbH",
        "Type": "business",
        "Attributes": '{"business_name": "Acme GmbH", "business_registration_number": "HRB12345"}'
    },
    auth=(account_sid, auth_token)
).json()

Read the full file on GitHub · 208 lines

Files

What ships with it

3 files 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.

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. 13d ago First seen · 208 lines · 70 tokens per session scan B c5877b728fb7

Subscribe to this mod's changes

twilio-regulatory-compliance-bundles is a skill published in the GitHub repository twilio/ai (32 stars, last pushed 29d ago), licensed MIT. It adds 70 tokens to every session and 1,734 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it B with 2 findings (sends data to an external url, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

specification-writing

A workflow for writing complete patent specifications from patent claims and an invention disclosure. It adapts the document to a chosen jurisdiction, such as the US, Europe, or China.

wanshuiyin/Auto-claude-code-research-in-sleep · 49 tokens

regulatory-research-fallback

Fallback workflow for regulatory research when web extraction tools fail on government PDFs.

HKUDS/OpenSpace · 20 tokens

x-scorecard

OpenSSF Scorecard for assessing open source project security. Check security best practices and compliance. Dependency: This is an x-cmd module. Install x-cmd first (see x-cmd skill for installation options). see x-cmd skill for installation.

x-cmd/x-cmd · 57 tokens

gesellschaftsrechtliche-satzungen-agb

Für Gesellschaftsrechtliche Satzungen AGB Abgrenzung: ordnet Norm, Beweislast und Gegenargument; Ergebnis: Prüfprodukt mit Risiko und nächstem Schritt. Fachgebiet: AGB-Recht-Prüfer. Route: gesellschaftsrechtliche-satzungen-agb.

Klotzkette/claude-fuer-deutsches-recht · 69 tokens

memstack-business-gdpr

Use this skill when the user says 'GDPR', 'data protection', 'privacy compliance', 'DPA', 'DSAR', 'data subject request', 'cookie consent', 'privacy audit', 'CCPA', or asks 'do I need GDPR for this repo'. Scans the repository to detect what personal data is collected, classifies sensitivity, determines whether GDPR…

cwinvestments/memstack · 121 tokens

nda-review

Use when the user uploads or pastes a non-disclosure agreement and asks for review, redline, risk assessment, or a recommendation on whether to sign. Identifies missing standard protections, one-sided or unusual provisions, and operational issues; produces a structured report with severity ratings and citations to…

LegalQuants/lq-ai · 79 tokens