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/cloudinary-webhooksnpx skills add hookdeck/webhook-skills --skill cloudinary-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.00074 | $0.01759 |
| Opus 5 | $0.00037 | $0.00879 |
| Sonnet 5 | $0.00015 | $0.00352 |
| Haiku 4.5 | $0.00007 | $0.00176 |
Grade A, and why
cloudinary-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 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.
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
81% identical to adyen-webhooks — 187 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 — 138 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Cloudinary Webhooks
Cloudinary sends webhook notifications to a URL you register, telling your
app when assets are uploaded, eager transformations finish, moderation completes,
assets are deleted or renamed, folders change, and more. Each POST is a JSON body
signed with your account API Secret and delivered with two headers:
x-cld-signature (a hex digest) and x-cld-timestamp (a unix timestamp).
When to Use This Skill
- How do I receive Cloudinary webhooks / notifications?
- How do I verify the
x-cld-signatureheader on a Cloudinary webhook? - Why is my Cloudinary webhook signature verification failing?
- How do I handle
upload,eager, ormoderationnotifications? - What are the Cloudinary
notification_typevalues?
Verification (core)
Cloudinary signs the raw request body concatenated with the timestamp and your
account API Secret. Verify with the official SDK — it enforces a freshness window
(default 7200s) as well as the digest. Use the raw body byte-for-byte — do not
JSON.parse then re-stringify before verifying.
const cloudinary = require('cloudinary').v2;
cloudinary.config({
api_secret: process.env.CLOUDINARY_API_SECRET,
signature_algorithm: process.env.CLOUDINARY_SIGNATURE_ALGORITHM || 'sha1', // 'sha256' if enabled
});
// rawBody = exact request body string; headers come from the request
const signature = req.get('x-cld-signature');
const timestamp = req.get('x-cld-timestamp');
// Reject missing headers with 400 first — a 401 should mean "bad signature".
if (!signature || !timestamp) return res.status(400).send('Missing signature headers');
// verifyNotificationSignature(body, timestamp, signature, valid_for = 7200) -> boolean
const valid = cloudinary.utils.verifyNotificationSignature(rawBody, Number(timestamp), signature);
if (!valid) return res.status(401).send('Invalid signature');
Cloudinary computes the signature as a plain hex digest of
rawBody + timestamp + api_secret using sha1 (default) or sha256 (an
opt-in account setting) — it is not a keyed HMAC, though Cloudinary's docs
sometimes call it "HMAC-SHA1". The SDK abstracts this; see
references/verification.md for the exact scheme and
a manual fallback.
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 601 B
- examples/express/package.json 420 B
- examples/express/README.md 1.4 KB
- examples/express/src/index.js 5.8 KB runs code
- examples/express/test/webhook.test.js 5.9 KB runs code
- examples/fastapi/.env.example 601 B
- examples/fastapi/main.py 4.7 KB runs code
- examples/fastapi/README.md 1.6 KB
- examples/fastapi/requirements.txt 101 B
- examples/fastapi/test_webhook.py 5.8 KB runs code
- examples/nextjs/.env.example 601 B
- examples/nextjs/app/webhooks/cloudinary/route.ts 4.2 KB runs code
- examples/nextjs/package.json 532 B
- examples/nextjs/README.md 1.4 KB
- examples/nextjs/test/webhook.test.ts 5.2 KB runs code
- examples/nextjs/vitest.config.ts 140 B runs code
- references/overview.md 4.8 KB
- references/setup.md 2.8 KB
- references/verification.md 6.7 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 · 138 lines · 74 tokens per session scan A 0f78b0dc502e
cloudinary-webhooks is a skill published in the GitHub repository hookdeck/webhook-skills (83 stars, last pushed 5d ago), licensed MIT. It adds 74 tokens to every session and 1,759 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. It is 81% identical to adyen-webhooks, differing in 187 lines, and is treated as a copy.
Other skills, from other repositories
using-git-worktrees
Use when a coding task needs a concurrent checkout, unrelated dirty state blocks safe branch switching, or the user or repository explicitly requires a worktree.
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.
ai-slop
Operational rubric that turns "don't make AI slop" into observable properties, severity levels, evidence requirements, and repair actions for interface design. Use as the reference rubric when building or reviewing marketing sites, product interfaces, dashboards, portfolios, or e-commerce pages, especially alongside…
om-gap-analysis
Grounded platform gap analysis at engagement scale — turn a folder of client docs into an Epic/Story tree where every coverage verdict is re-run by executable gates against a validated checkout of the platform, scored in atomic commits, license-tier-tagged, and synthesized into a client-facing summary + backlog. Use…
using-git-worktrees
Creates and manages isolated Git worktrees for parallel agents, risky experiments, or long-running feature work while preserving the user's current checkout. Use before concurrent branch edits or when isolation makes rollback safer. Not for a trivial one-file change that is already isolated.
agent-prompts-warmup
Audit and sync agent instruction files across all coding agent formats. FRE (first-run) checks scaffolding completeness; ongoing use keeps files in sync after edits.