setup-webhook

setup-webhook is a skill for Claude Code, Codex from kudosity/gemini-kudosity-sms-extension. It costs 23 tokens per session (1,275 once invoked), scanned A, original, MIT.

A tool for creating and managing webhooks, which are HTTP notifications sent to your application when an event occurs. It covers message delivery updates, incoming messages, link clicks, and opt-outs.

In plain words
What is it for?
Use it to register HTTPS endpoints, choose event types, filter events by sender or campaign, and set request-rate limits for incoming notifications.
Why use it?
It avoids repeatedly polling an API to find out whether a message or campaign event has happened.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to register HTTPS endpoints, choose event types, filter events by sender or campaign, and set request-rate limits for incoming notifications.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/kudosity/gemini-kudosity-sms-extension/setup-webhook
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 kudosity/gemini-kudosity-sms-extension --skill setup-webhook
Clone the repo
git clone --depth 1 https://github.com/kudosity/gemini-kudosity-sms-extension

Made for: Claude Code, Codex.

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 setup-webhook

README.md
[![agentmods](https://agentmods.dev/badge/skills/kudosity/gemini-kudosity-sms-extension/setup-webhook.svg)](https://agentmods.dev/skills/kudosity/gemini-kudosity-sms-extension/setup-webhook)
Your own site
<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>
Per session 23 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,275 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.00023 $0.01275
Opus 5 $0.00012 $0.00638
Sonnet 5 $0.00005 $0.00255
Haiku 4.5 $0.00002 $0.00128

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

Security

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
skills/setup-webhook/SKILL.md · 148 lines

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 curl commands

Create a Webhook

Endpoint: POST /v2/webhook

Required parameters:

  • name (string): Webhook name, 2-100 characters
  • url (string): HTTPS URL that accepts JSON-encoded POST requests

Optional parameters:

  • filter (object): Filter which events trigger the webhook
    • event_type (array): Types of events to subscribe to
    • sender (array): Filter by sender number
    • status (array): Filter by message status (for status events only)
    • message_ref (array): Filter by message reference
    • campaign_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"]}
  }'

Read the full file on GitHub · 148 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. 8d ago First seen · 148 lines · 23 tokens per session scan A 8d4980a55f85

Subscribe to this mod's changes

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.