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/flexport-webhooksnpx skills add hookdeck/webhook-skills --skill flexport-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.00054 | $0.01799 |
| Opus 5 | $0.00027 | $0.00899 |
| Sonnet 5 | $0.00011 | $0.00360 |
| Haiku 4.5 | $0.00005 | $0.00180 |
Grade A, and why
flexport-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
89% identical to adyen-webhooks — 192 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 — 163 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Flexport Webhooks
When to Use This Skill
- Setting up Flexport webhook handlers
- Debugging Flexport signature verification failures (
X-Hub-Signature-256) - Understanding Flexport Event objects and milestone identifiers
- Handling shipment, shipment leg, container, document, invoice, and purchase order events
Verification (core)
Flexport signs the raw request body with HMAC keyed on your per-endpoint secret token and sends two GitHub/X-Hub-style headers, each a hex digest prefixed with the algorithm:
X-Hub-Signature-256— HMAC-SHA256, formattedsha256=<hex>(use this)X-Hub-Signature— HMAC-SHA1, formattedsha1=<hex>(legacy, being deprecated)
Verify against the raw UTF-8 body before parsing JSON, and compare timing-safe.
Node:
const crypto = require('crypto');
function verify(rawBody, signatureHeader, secret) {
const [algo, sig] = (signatureHeader || '').split('=');
if (algo !== 'sha256' || !sig) return false;
const expected = crypto.createHmac('sha256', secret).update(rawBody).digest('hex');
try {
return crypto.timingSafeEqual(Buffer.from(sig, 'hex'), Buffer.from(expected, 'hex'));
} catch {
return false;
}
}
Python:
import hmac, hashlib
def verify(raw_body: bytes, signature_header: str, secret: str) -> bool:
algo, _, sig = (signature_header or "").partition("=")
if algo != "sha256" or not sig:
return False
expected = hmac.new(secret.encode(), raw_body, hashlib.sha256).hexdigest()
return hmac.compare_digest(sig, expected)
There is no official Flexport SDK, so verify manually in every framework.
For complete handlers with route wiring, event dispatch, and tests, see:
Event Object & Dispatch
The delivered payload is a Flexport Event object. Dispatch on the type
field, which holds the milestone identifier in /object#event format (note:
/object#event, not object.event). The affected object is under data.
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 119 B
- examples/express/package.json 372 B
- examples/express/README.md 982 B
- examples/express/src/index.js 4.6 KB runs code
- examples/express/test/webhook.test.js 5.6 KB runs code
- examples/fastapi/.env.example 119 B
- examples/fastapi/main.py 3.9 KB runs code
- examples/fastapi/README.md 1010 B
- examples/fastapi/requirements.txt 82 B
- examples/fastapi/test_webhook.py 5.5 KB runs code
- examples/nextjs/.env.example 119 B
- examples/nextjs/app/webhooks/flexport/route.ts 3.5 KB runs code
- examples/nextjs/package.json 484 B
- examples/nextjs/README.md 834 B
- examples/nextjs/test/webhook.test.ts 3.7 KB runs code
- examples/nextjs/vitest.config.ts 140 B runs code
- references/overview.md 4.0 KB
- references/setup.md 2.3 KB
- references/verification.md 3.5 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 · 163 lines · 54 tokens per session scan A 3ba86efc6179
flexport-webhooks is a skill published in the GitHub repository hookdeck/webhook-skills (84 stars, last pushed 6d ago), licensed MIT. It adds 54 tokens to every session and 1,799 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. It is 89% identical to adyen-webhooks, differing in 192 lines, and is treated as a copy.
Other skills, from other repositories
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.
plan
Design an implementation plan before writing code — where the change lands, what it will touch, what could break, and the steps in order. Use when asked to plan a feature, scope a change, or figure out how to approach an edit before making it. To assess a change that already exists (a diff, refactor, or rename), use…
research
Answer a hard, open-ended question about how the project works or is built by synthesizing every source — code, structure, git history, prior decisions, discussion, caveats — and verifying each claim against the source. Use for deep cross-cutting questions that span more than one area. Narrower siblings — a single…
explore
Build an accurate mental model of an unfamiliar codebase, feature, or area before changing it — where it lives, how it connects, what it does, and why. Use when asked how something works, where something is, when onboarding to a repo, or before editing code you don't know. For a cross-cutting question that needs…
handoff
Wrap up a work session so the next session (or another agent) can pick up cleanly — what was done, what's in flight, what to watch out for. Use when ending a session, switching tasks, or asked to hand off, wrap up, or save state for later.