bigcommerce-webhooks

A guide for receiving BigCommerce store event notifications, checking that they really came from BigCommerce, and fetching the full record involved.

In plain words
What is it for?
Use it to handle events such as new or updated orders, changed products, and abandoned carts, including creating webhooks through the BigCommerce API.
Why use it?
It helps avoid incorrect signature checks and incomplete event data. It also explains how to respond quickly so failed deliveries do not lead to retries or deactivation.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/hookdeck/webhook-skills/bigcommerce-webhooks
Any agent
npx skills add hookdeck/webhook-skills --skill bigcommerce-webhooks
Clone the repo
git clone --depth 1 https://github.com/hookdeck/webhook-skills

Made for: Claude Code, Codex.

Per session 56 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,018 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
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 $0.00056 $0.02018
Opus 5 $0.00028 $0.01009
Sonnet 5 $0.00011 $0.00404
Haiku 4.5 $0.00006 $0.00202

Measured 2d ago against content hash 202331dd5d28, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

The scan reads SKILL.md. This mod also ships 7 executable files (examples/express/src/index.js, examples/express/test/webhook.test.js, examples/fastapi/main.py, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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 \
skills/bigcommerce-webhooks/SKILL.md · 184 lines

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 thindata 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.

Read the full file on GitHub · 184 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. 2d ago First seen · 184 lines · 56 tokens per session scan A 202331dd5d28

Subscribe to this mod's changes

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.

Related

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.

ReScienceLab/opc-skills · 48 tokens

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.

cwinvestments/memstack · 65 tokens

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…

rajitsaha/100xprism · 84 tokens

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.

Dkm0315/frappe-agent · 49 tokens

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.

TheWinci/mimirs · 38 tokens

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.

TheWinci/mimirs · 60 tokens