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 commands/mentilead/shopify-app-skill/add-webhookgit clone --depth 1 https://github.com/mentilead/shopify-app-skillWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/commands/mentilead/shopify-app-skill/add-webhook)<a href="https://agentmods.dev/commands/mentilead/shopify-app-skill/add-webhook"><img src="https://agentmods.dev/badge/commands/mentilead/shopify-app-skill/add-webhook.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00000 | $0.00454 |
| Opus 5 | $0.00000 | $0.00227 |
| Sonnet 5 | $0.00000 | $0.00091 |
| Haiku 4.5 | $0.00000 | $0.00045 |
Grade A, and why
add-webhook 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 5d 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.
What it actually says
Add Webhook Handler
Scaffold a new Shopify webhook handler with proper authentication, idempotency, and GDPR compliance.
Arguments
$ARGUMENTS = the Shopify webhook topic (e.g., "orders/create", "products/update", "app/uninstalled")
Instructions
- Parse the webhook topic from
$ARGUMENTS. If empty, ask the user which webhook topic to handle. - Read
.claude/skills/shopify-app/references/webhook-patterns.mdfor the handler pattern and GDPR requirements. - Read
.claude/skills/shopify-app/references/react-router-patterns.mdfor file-naming conventions (webhooks use thewebhooks.prefix). - Determine the route filename from the topic:
orders/create→app/routes/webhooks.app.orders-create.tsxproducts/update→app/routes/webhooks.app.products-update.tsx- Replace
/with.in the prefix,-in the specific topic part.
- Create the webhook handler route file with:
authenticate.webhook(request)for verification- Structured logging with
shop,topic, and relevant payload fields - Idempotency check (query for existing record before processing)
- Always return
new Response(null, { status: 200 })
- Register the webhook in
app/shopify.server.tsby adding the topic to thewebhooksconfiguration if not already present. - If the webhook needs to store data, create or update the relevant service function in
app/services/*.server.tswithshopDomainas the first parameter. - If the webhook needs new DynamoDB keys, read
.claude/skills/shopify-app/references/dynamodb-patterns.mdand updateapp/services/dynamodb/keys.ts. - Create a unit test in
tests/for the service function logic (not the route handler itself). - Remind the user to:
- Run
shopify app devto register the webhook with Shopify - Test delivery via Shopify CLI:
shopify app webhook trigger --topic <TOPIC> --address <URL>
- Run
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.
- 5d ago First seen · 30 lines · 0 tokens per session scan A fc62d00a486f
add-webhook is a command published in the GitHub repository mentilead/shopify-app-skill (5 stars, last pushed 6mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 454 tokens. 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 commands, from other repositories
dev
Runs Vendure in development mode. By default it starts three processes: the GraphQL server (ts-node ./src/index.ts), the worker (ts-node ./src/index-worker.ts), and the dashboard (a Vite dev server).
eval-merge
Use the Read tool to load .skill-compass/{skill-name}/manifest.json. Verify.
cti-report
Render case deliverables — relationship graph (PNG/SVG/Mermaid) and a polished PDF/DOCX assessment. Usage: /cti-report [--graph|--pdf].
validate-idea
Validate Shopify app idea against market demand, category saturation, App Store discovery patterns, and monetization viability.
enum-udp
UDP scan + service follow-up — top ports first, full sweep only when justified.
kerberos
Kerberos attacks — AS-REP roasting and Kerberoasting.