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/bigcommerce-webhooksnpx skills add hookdeck/webhook-skills --skill bigcommerce-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.00056 | $0.02018 |
| Opus 5 | $0.00028 | $0.01009 |
| Sonnet 5 | $0.00011 | $0.00404 |
| Haiku 4.5 | $0.00006 | $0.00202 |
Grade A, and why
bigcommerce-webhooks 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 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -X POST https://api.bigcommerce.com/stores/{store_hash}/v3/hooks \ How it starts
The opening of the file, as written. The whole thing — 184 lines — stays where its author put it; the contents beside it link to each section on GitHub.
BigCommerce Webhooks
When to Use This Skill
- How do I receive BigCommerce webhooks?
- How do I verify BigCommerce webhook signatures?
- How do I handle store/order/created or store/order/statusUpdated events?
- Why is my BigCommerce webhook signature verification failing?
- How do I create a BigCommerce webhook via the API?
How BigCommerce Webhooks Work
BigCommerce webhooks are created via API only (no dashboard UI):
POST /stores/{store_hash}/v3/hooks with an X-Auth-Token OAuth access token.
Payloads are thin — data carries only the resource type and id. Read
the event from scope and call the REST API back to fetch the full resource:
{
"store_id": "1000",
"producer": "stores/abc123",
"scope": "store/order/statusUpdated",
"data": { "type": "order", "id": 173331 },
"hash": "…",
"created_at": 1561479335
}
Respond HTTP 200 immediately; do slow work asynchronously. Failed deliveries retry over ~48h, after which the hook is deactivated. If a domain's success ratio drops below 90% in a 2-minute window it is blocklisted for 3 minutes.
Verification (core)
BigCommerce documents callback signing per the Standard Webhooks spec and
recommends verifying with Standard Webhooks libraries. The spec's headers are
webhook-id, webhook-timestamp, and webhook-signature (v1,<base64>),
with the signature computed as HMAC-SHA256 over
{webhook-id}.{webhook-timestamp}.{rawBody} — note BigCommerce's own docs
don't currently name the headers explicitly, state whether the feature is GA,
or clarify whether signatures apply to all hooks or only app-created hooks.
Log incoming headers on your first delivery to confirm. If signatures aren't
present on your hooks, fall back to custom headers set at hook creation
(see references/setup.md).
The signing key is your app's client secret, base64-encoded — the
standardwebhooks library base64-decodes whatever you pass, so encoding the
client secret first makes the raw client-secret bytes the HMAC key. Pass the
raw request body — don't JSON.parse first.
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 491 B
- examples/express/package.json 526 B
- examples/express/README.md 1.5 KB
- examples/express/src/index.js 4.1 KB runs code
- examples/express/test/webhook.test.js 6.2 KB runs code
- examples/fastapi/.env.example 421 B
- examples/fastapi/main.py 4.0 KB runs code
- examples/fastapi/README.md 1.6 KB
- examples/fastapi/requirements.txt 127 B
- examples/fastapi/test_webhook.py 4.5 KB runs code
- examples/nextjs/.env.example 421 B
- examples/nextjs/app/webhooks/bigcommerce/route.ts 3.6 KB runs code
- examples/nextjs/package.json 492 B
- examples/nextjs/README.md 1.5 KB
- examples/nextjs/test/webhook.test.ts 4.4 KB runs code
- examples/nextjs/vitest.config.ts 157 B runs code
- references/overview.md 3.6 KB
- references/setup.md 3.4 KB
- references/verification.md 5.8 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.
- 2d ago First seen · 184 lines · 56 tokens per session scan A 202331dd5d28
bigcommerce-webhooks is a skill published in the GitHub repository hookdeck/webhook-skills (84 stars, last pushed 6d ago), licensed MIT. It adds 56 tokens to every session and 2,018 once invoked, about $0.0003 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-30.
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.