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 kudosity/gemini-kudosity-sms-extension --skill setup-webhookgit clone --depth 1 https://github.com/kudosity/gemini-kudosity-sms-extensionWrote 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/kudosity/gemini-kudosity-sms-extension/setup-webhook)<a href="https://agentmods.dev/skills/kudosity/gemini-kudosity-sms-extension/setup-webhook"><img src="https://agentmods.dev/badge/skills/kudosity/gemini-kudosity-sms-extension/setup-webhook.svg" alt="Measured on agentmods" 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.00023 | $0.01275 |
| Opus 5 | $0.00012 | $0.00638 |
| Sonnet 5 | $0.00005 | $0.00255 |
| Haiku 4.5 | $0.00002 | $0.00128 |
Grade A, and why
setup-webhook 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 8d 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.
- All requests use `curl` commands How it starts
The opening of the file, as written. The whole thing — 148 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Create & Manage Webhooks
Webhooks allow users to receive HTTP POST notifications when events occur, such as SMS delivery status changes, inbound messages, link clicks, and opt-outs.
Authentication
- Header:
x-api-key: {KUDOSITY_API_KEY} - If the user hasn't configured credentials, direct them to run
/setup
API Details
- Base URL:
https://api.transmitmessage.com - Content-Type:
application/json - All requests use
curlcommands
Create a Webhook
Endpoint: POST /v2/webhook
Required parameters:
name(string): Webhook name, 2-100 charactersurl(string): HTTPS URL that accepts JSON-encoded POST requests
Optional parameters:
filter(object): Filter which events trigger the webhookevent_type(array): Types of events to subscribe tosender(array): Filter by sender numberstatus(array): Filter by message status (for status events only)message_ref(array): Filter by message referencecampaign_id(array): Filter by campaign ID
rate_limit(integer): Max requests per second to your URL (max 10,000, 0 = system default)
Available Event Types
| Event Type | Description |
|---|---|
SMS_STATUS |
SMS delivery status changes (SENT, ACCEPTED, DELIVERED, FAILED, SOFT_BOUNCE, HARD_BOUNCE, OTHER) |
SMS_INBOUND |
Inbound SMS received from a recipient |
MMS_STATUS |
MMS status changes (SENT, FAILED) |
MMS_INBOUND |
Inbound MMS received from a recipient |
LINK_HIT |
Recipient clicked a tracked link |
OPT_OUT |
Recipient opted out via link or STOP message |
Filter Logic
- Within a filter array (e.g., multiple senders): conditions are combined with OR
- Between different filters (e.g., sender AND status): conditions are combined with AND
Example: Create a webhook for SMS delivery status and inbound messages
curl -s -X POST "https://api.transmitmessage.com/v2/webhook" \
-H "x-api-key: ${KUDOSITY_API_KEY}" \
-H "Content-Type: application/json" \
-d '{
"name": "SMS Events",
"url": "https://myapp.com/webhooks/sms",
"filter": {"event_type": ["SMS_STATUS", "SMS_INBOUND"]}
}'
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.
- 8d ago First seen · 148 lines · 23 tokens per session scan A 8d4980a55f85
setup-webhook is a skill published in the GitHub repository kudosity/gemini-kudosity-sms-extension (5 stars, last pushed 4mo ago), licensed MIT. It adds 23 tokens to every session and 1,275 once invoked, about $0.0001 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
java-coding-standards
Java coding standards for Spring Boot services: naming, immutability, Optional usage, streams, exceptions, generics, and project layout.
Twilio SMS Automation
Automate SMS communications, two-way messaging, notifications, and voice workflows with Twilio.
postgres-patterns
PostgreSQL database patterns for query optimization, schema design, indexing, and security. Based on Supabase best practices.
backend-patterns
Backend architecture patterns, API design, database optimization, and server-side best practices for Node.js, Express, and Next.js API routes.
django-patterns
Django architecture patterns, REST API design with DRF, ORM best practices, caching, signals, middleware, and production-grade Django apps.
dotnet-patterns
Idiomatic C# and .NET patterns, conventions, dependency injection, async/await, and best practices for building robust, maintainable .NET applications.