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/hookdeck/webhook-skills/fastspring-webhooksnpx skills add hookdeck/webhook-skills --skill fastspring-webhooksgit clone --depth 1 https://github.com/hookdeck/webhook-skillsWhat 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.00053 | $0.01550 |
| Opus 5 | $0.00026 | $0.00775 |
| Sonnet 5 | $0.00011 | $0.00310 |
| Haiku 4.5 | $0.00005 | $0.00155 |
Grade A, and why
fastspring-webhooks 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 3d 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.
This is a copy
84% identical to adyen-webhooks — 170 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.
How it starts
The opening of the file, as written. The whole thing — 141 lines — stays where its author put it; the contents beside it link to each section on GitHub.
FastSpring Webhooks
When to Use This Skill
- Setting up FastSpring webhook handlers
- How do I verify FastSpring webhook signatures?
- Why is my
X-FS-Signatureverification failing? - Handling
order.completed,subscription.activated, orsubscription.charge.completedevents - Iterating the batched
eventsarray FastSpring delivers in each POST
Verification (core)
FastSpring signs the exact raw request body with HMAC-SHA256 keyed on your
per-webhook HMAC SHA256 Secret, base64-encodes the digest, and sends it in the
X-FS-Signature header. Pass the raw body (do not parse/re-serialize first),
recompute, and compare timing-safe. Each POST batches multiple events in an
events array — verify the signature once against the whole body, then iterate.
Note: Signing is only active when the HMAC secret is set on the webhook. If no secret is configured, no
X-FS-Signatureheader is sent.
Node:
const crypto = require('crypto');
function verify(rawBody, signatureHeader, secret) {
if (!signatureHeader) return false;
const expected = crypto.createHmac('sha256', secret).update(rawBody).digest('base64');
try {
return crypto.timingSafeEqual(Buffer.from(signatureHeader), Buffer.from(expected));
} catch {
return false;
}
}
Python:
import hmac, hashlib, base64
def verify(raw_body: bytes, signature_header: str, secret: str) -> bool:
if not signature_header:
return False
expected = base64.b64encode(
hmac.new(secret.encode(), raw_body, hashlib.sha256).digest()
).decode()
return hmac.compare_digest(signature_header, expected)
After verifying, iterate payload.events and dispatch on each event.type.
Dedupe on event.id — automatic retries reuse the same id (manual retries get new
ids). FastSpring auto-retries over HTTPS until your endpoint returns HTTP 200.
For complete handlers with route wiring, batch iteration, event dispatch, and tests, see:
What ships with it
19 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.
- examples/express/.env.example 237 B
- examples/express/package.json 376 B
- examples/express/README.md 1.4 KB
- examples/express/src/index.js 4.4 KB runs code
- examples/express/test/webhook.test.js 5.1 KB runs code
- examples/fastapi/.env.example 168 B
- examples/fastapi/main.py 3.8 KB runs code
- examples/fastapi/README.md 1.5 KB
- examples/fastapi/requirements.txt 82 B
- examples/fastapi/test_webhook.py 5.4 KB runs code
- examples/nextjs/.env.example 168 B
- examples/nextjs/app/webhooks/fastspring/route.ts 3.8 KB runs code
- examples/nextjs/package.json 488 B
- examples/nextjs/README.md 1.4 KB
- examples/nextjs/test/webhook.test.ts 3.6 KB runs code
- examples/nextjs/vitest.config.ts 140 B runs code
- references/overview.md 3.4 KB
- references/setup.md 2.5 KB
- references/verification.md 4.6 KB
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.
- 3d ago First seen · 141 lines · 53 tokens per session scan A 5b4f7877476b
fastspring-webhooks is a skill published in the GitHub repository hookdeck/webhook-skills (84 stars, last pushed 6d ago), licensed MIT. It adds 53 tokens to every session and 1,550 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. It is 84% identical to adyen-webhooks, differing in 170 lines, and is treated as a copy.
Other skills, from other repositories
domain-hunter
Search domains, compare prices, find promo codes, get purchase recommendations. Use when user wants to buy a domain, check domain prices, find domain deals, compare registrars, or search for .ai/.com domains.
memstack-content-product-description
Use this skill when the user says 'product description', 'product listing', 'product copy', 'Amazon listing', 'Shopify listing', 'e-commerce copy', or needs conversion-optimized product descriptions with benefit-driven headlines and platform-specific SEO. Do NOT use for pricing strategy or sales funnels.
form-cro
When the user wants to optimize any form that is NOT signup/registration — lead capture, contact, demo request, application, survey, or checkout forms; "form friction," "form completion rate," "form abandonment," "too many fields," "nobody fills out our form." For signup/registration forms, see signup-flow-cro. For…
frappe-payments
Frappe Payments and ERPNext payment workflow guidance for payment gateways, payment requests, subscriptions, invoices, reconciliation, webhooks, and secure checkout flows. Use when work touches payments in Frappe or ERPNext.
wiki
Rebuild a flow-first project wiki using the mimirs wiki MCP tool. Use when the user asks to generate, rebuild, refresh, or write the wiki for a codebase.
scout
Research the web for solutions, competitors, alternatives, or prior art for a decision facing this project — then store the findings in project memory so they survive the session. Use when choosing a library or approach, comparing tools, checking what others do, or evaluating whether to build vs adopt.