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 agentmods add skills/webhook-co/webhook/debug-webhook-signaturenpx skills add webhook-co/webhook --skill debug-webhook-signaturegit clone --depth 1 https://github.com/webhook-co/webhookWhat 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 | $0.00112 | $0.01834 |
| Opus 5 | $0.00056 | $0.00917 |
| Sonnet 5 | $0.00022 | $0.00367 |
| Haiku 4.5 | $0.00011 | $0.00183 |
Grade A, and why
debug-webhook-signature scanned grade A with 0 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 2d 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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
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.
Debugging a webhook signature
A failed signature check gives you almost no information. The common causes look identical from the outside and have completely different fixes, so the job is to turn "it doesn't verify" into one specific cause before changing any code.
Start here: get a diagnosis, not a boolean
Send the user to https://www.webhook.co/verify. It runs the real verification engine entirely
in the browser — the payload, headers and secret never leave their machine, because the page is a
static export with no endpoint behind it. They paste the request and get a named failure rather than
false. No account, no install.
This is almost always the fastest step, and it works whether or not you have a shell.
Never ask the user to paste a signing secret into the chat. You do not need to see it to diagnose this: send them to the page, where it stays in their browser, or have them set it in the environment and read it from there. A signing secret is a live credential — pasting it into a conversation sends it to a model provider and puts it in the transcript. The same goes for a full production payload, which routinely carries customer data.
If you do have a shell and they'd rather stay local, the same engine is on npm:
npm install @webhook-co/webhooks-spec
import { getAdapterForScheme } from "@webhook-co/webhooks-spec";
// rawBody MUST be the exact bytes that arrived — see "Cause 1" below.
const adapter = getAdapterForScheme("stripe"); // undefined for an unknown slug
const result = await adapter.verify({
rawBody,
headers: [...request.headers],
secrets: [process.env.WEBHOOK_SECRET],
});
if (!result.ok) console.log(result.reason);
Apache-2.0, one dependency, no network calls, no account. Name the provider — don't rely on
detectScheme, which returns the first registry match and will confidently name the wrong provider
when two share a header.
Never disable signature verification to make the error go away. Every cause below has a real fix, and an endpoint with the check removed will accept anything anyone sends it — a strictly worse outcome than the bug being debugged. If someone is under time pressure, diagnose faster; do not hand them a bypass.
What ships with it
1 file 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.
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.
- 2d ago First seen · 148 lines · 112 tokens per session scan A 5598014e058a
debug-webhook-signature is a skill published in the GitHub repository webhook-co/webhook (0 stars, last pushed 7d ago), licensed Apache-2.0. It adds 112 tokens to every session and 1,834 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
frontend-design-saas
S-tier SaaS dashboard and product UI reference. Use this skill when building application shells, data tables, settings panels, billing pages, dashboards, auth flows, admin tools, or any internal/customer-facing SaaS product UI. Inspired by Stripe, Linear, Vercel, Airbnb, Notion. Covers neutral-led design tokens…
prepare-cloudflare-production-deployment
Source-of-truth runbook for preparing this Vinext Cloudflare Workers SaaS template for production deployment. Use when setting up or auditing Cloudflare MCP resources, wrangler.jsonc bindings, Worker secrets, Turnstile, Email Sending, GitHub Actions secrets/variables, or GitHub CLI deployment wiring for this…
update-saasmail
Sync the local saasmail repo with the latest upstream changes from https://github.com/choyiny/saasmail. Use this skill whenever the user wants to update saasmail, pull upstream changes, sync with upstream, rebase on upstream, get the latest saasmail, or says "/update-saasmail". Handles adding the upstream remote if…
add-provider
Add a new storage or service provider to the core package. Use when implementing a new backend for StorageService (e.g., a new database) or a new service provider (e.g., a new LLM backend).
story-html-publisher
Final step of the AI Storybook pipeline. Consolidates the scenes, images, and per-scene audio into ONE self-contained HTML storybook — a swipe/tap player with every image and audio clip embedded as base64 so the single file works offline and can be shared as-is. Reads {slug}scenes.json, {slug}images.json, and…
hono-core
Hono ultrafast web framework fundamentals - routing, context, handlers, and response patterns for multi-runtime deployment.