Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

Back to skills

Webhooks

ASecurity

Receive or send HTTP webhooks correctly — signature verification on the raw body, fast acknowledgement, deduplication, out-of-order handling, retry and dead-letter behaviour, and the delivery contract a consumer needs. Use when adding or debugging a webhook endpoint, when integrating a provider's events, or when your own service has to notify others of changes. Not for internal queue or event-bus messages that never cross an HTTP boundary, and not for general outbound API retry policy.

46 stars
0 votes
0 copies
0 views
Added 9/22/2026
ai-agentsrustgodebuggingapidocumentation

Works with

api

Security Analysis

A100/100

Scanned 9/22/2026

Install to Claude Code

$npx -y skills add nahid-sparktales/agent-dispatcher --skill webhooks --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Webhooks?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Webhooks
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/nahid-sparktales-webhooks/badge)](https://www.skillsdirectory.com/skills/nahid-sparktales-webhooks)

More formats (shields.io, HTML) on the badges page.

Download Zip
Files
SKILL.md
---
name: webhooks
description: Receive or send HTTP webhooks correctly — signature verification on the raw body, fast acknowledgement, deduplication, out-of-order handling, retry and dead-letter behaviour, and the delivery contract a consumer needs. Use when adding or debugging a webhook endpoint, when integrating a provider's events, or when your own service has to notify others of changes. Not for internal queue or event-bus messages that never cross an HTTP boundary, and not for general outbound API retry policy.
---

# Webhooks

A webhook is an untrusted HTTP request that claims to be an event. Almost every webhook bug is one
of four things: the signature was checked against a re-serialized body, the handler did its work
before acknowledging, the same event arrived twice, or events arrived out of order.

## When this fires

Building or reviewing a webhook receiver, integrating a provider's events, or designing outbound
event delivery to consumers. It does not fire for an internal queue consumer — that has no HTTP
trust boundary, though its idempotency requirements are the same.

## Procedure — receiving

1. **Verify before you parse.** Compute the signature over the **raw request body exactly as
   received**, before any JSON decode or middleware re-serialization, and compare in constant time.
   Check the signed timestamp against a tolerance window so an old capture cannot be replayed. A
   request that fails verification gets a 4xx and nothing else — no logging of the payload as if it
   were real, no side effects. Never identify the sender by a field inside the payload.
2. **Confirm the secret's source.** Per-endpoint secret from configuration, never committed, and
   the verification path must fail closed when the secret is missing rather than skipping the check.
3. **Acknowledge fast, work later.** Persist the raw body and headers, return 2xx, and process
   asynchronously. A handler that does its work inline will eventually exceed the sender's timeout,
   the sender will retry, and you will get duplicates on top of the original that actually
   succeeded.
4. **Deduplicate on the provider's event id.** A persisted record with a unique constraint is the
   arbiter; a read-then-write check is a race, not a guard. At-least-once delivery is the norm — a
   second delivery of an event you already applied must be a no-op that still returns 2xx.
5. **Do not trust arrival order.** Order by the event's own sequence number, version, or emitted
   timestamp, and ignore an event whose version is older than the state you already hold. Where the
   payload is thin or ordering matters more than latency, treat the event as a signal and fetch
   current state from the provider's API instead of applying the payload.
6. **Make the effect idempotent**, not just the dispatch — see `idempotency-and-retries`. Dedupe
   keeps you from processing twice; idempotent effects keep you correct when it happens anyway.
7. **Use status codes to mean what the sender thinks they mean.** 2xx: delivered, stop retrying.
   4xx: permanent — the sender will not retry and may disable the endpoint, so return it only for
   events you will never be able to process. 5xx: retry me. Never return 2xx to silence a failure
   you have not recorded, and never return 5xx for a malformed event that will fail identically
   forever.
8. **Dead-letter after the retry budget**, keeping the raw body, headers, receipt time and failure
   reason. Provide a deliberate replay path. Replaying events into a production system is an
   outward-facing action with real side effects: stop and ask before running one.
9. **Log without secrets.** Event id, type, verification result, outcome. Not the signature header,
   not tokens or card data inside the payload.

## Procedure — sending

10. **Publish the contract before the first delivery.** Event types and their payload schemas, a
    stable event id, an emitted timestamp, the signature scheme and which bytes it covers, the
    delivery headers, the retry schedule, and — stated plainly — the ordering guarantee you actually
    offer, which is usually none. Promise at-least-once and tell consumers to be idempotent.
11. **Sign every delivery** with a per-endpoint secret, include the timestamp in the signed
    material, and support two active secrets so a consumer can rotate without dropping events.
12. **Retry with exponential backoff plus jitter**, a capped attempt count, and a per-endpoint
    concurrency limit so one slow consumer cannot drain your workers. Disabling a customer's
    endpoint after sustained failure is a customer-visible action — notify, and ask before doing it
    by hand.
13. **Treat the destination URL as hostile.** It is user-supplied: block private and link-local
    address ranges, resolve and check the address actually connected to, refuse redirects to
    internal hosts, set connect and read timeouts, and cap the response size you read. This is the
    SSRF surface of your whole cluster.
14. **Version payloads additively.** Adding a field is safe only if consumers were told to ignore
    unknown ones; removing or re-typing a field needs a new event type or version.

## Checklist

- [ ] Signature verified on raw bytes, constant time, with a timestamp window
- [ ] Missing or misconfigured secret fails closed
- [ ] Endpoint acknowledges before doing the work, within the sender's timeout
- [ ] Duplicate delivery of the same event id is a no-op, enforced by a unique constraint
- [ ] Out-of-order and stale events are detected by version or timestamp, not ignored
- [ ] 2xx / 4xx / 5xx each returned for the case the sender interprets them as
- [ ] Dead-letter store keeps raw body and headers, with a replay path that asks first
- [ ] Outbound: contract published, deliveries signed, backoff bounded, destination URL restricted
- [ ] Verified against a real signed delivery, or stated as only exercised with a sample payload

## Failure handling

- **Signature fails against a known-good delivery** — suspect body mutation first: a framework that
  parses and re-serializes, a proxy that rewrites encoding, trailing-newline handling. Do not
  "solve" it by weakening or skipping verification; an endpoint that accepts unsigned requests is a
  remote write primitive for anyone who learns the URL.
- **Events arrive but nothing happens** — check the async path, not the endpoint. A 2xx from a
  receiver whose queue consumer is dead looks perfect from outside.
- **Duplicate side effects in production** — this is the dedupe or idempotency gap, not the
  provider misbehaving. At-least-once means exactly what it says.
- **Cannot receive a real delivery locally** — say the handler was exercised with a constructed
  payload and that live delivery is unverified. A tunnelled or sandbox delivery is better evidence;
  a unit test with a hand-made signature is the weakest and must be labelled as such.
- **Provider's documented headers or schema are uncertain** — read their current documentation
  rather than assuming. Header names, signature formats and tolerance windows differ per provider
  and change.

## Evidence to report

The verification path and what bytes it covers. One delivery you actually observed — event id,
type, status returned, elapsed time to acknowledge. The duplicate test: the same event id delivered
twice, and proof of one effect. An out-of-order or stale event, and what the handler did with it.
For outbound work, the published contract and the retry schedule's actual numbers. And which of
these were executed against a real signed delivery versus only constructed in a test — never let
"the webhook works" stand in for either.

Attribution

nahid-sparktalesnahid-sparktales
View sourceMore from nahid-sparktales →
SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Related Skills

Caveman

Ultra-compressed communication mode that cuts output tokens while keeping technical accuracy. Levels: lite, full, ultra and the wenyan variants. Use for /caveman, "caveman mode", "talk like caveman", "be brief" or "less tokens".

1066601 votes

Hyperplan

Adversarial multi-agent planning skill. Self-orchestrates 5 hostile category members (unspecified-low, unspecified-high, deep, ultrabrain, artistry) via team-mode for ruthless cross-critique debate, distills only the defensible insights, then MANDATORILY hands the distilled insight bundle to the `plan` agent for executable plan formalization. Use when planning needs maximum rigor and surfacing of weak assumptions, blind spots, and over-engineering. Triggers: 'hyperplan', 'hpp', '/hyperplan', ...

686011 votes

Mcp Code Execution

Routes multi-tool workflows through MCP servers for large datasets and pipelines. Use when Bash tool overhead is limiting throughput on data-heavy tasks.

3351 votes

catchup

Recovers the conversation and failed tool calls of a previous Codex, Claude Code, Antigravity, Cline, Copilot CLI, Cursor, DeepSeek Harness, Kimi, OpenCode, Pi Agent, or ZCode session. Use when the user says "catch up", "what did the last session do", "get me up to speed", "I switched agents", asks to recover/summarize a previous session before continuing, or asks to diagnose or report a catchup failure. Do NOT use for the current conversation, git history, or any non-agent log.

651 votes

math-skill

A comprehensive mathematical reasoning skill for AI assistants — handles arithmetic to research-level problems with rigorous step-by-step reasoning, systematic verification, and transparent uncertainty handling

381 votes
View all in ai-agents →