docusign-webhooks

Instructions for receiving DocuSign Connect notifications about electronic-signature envelopes and recipients, then checking their authenticity.

In plain words
What is it for?
Use it to build or debug handlers for events such as envelope-sent, envelope-completed, and recipient-completed.
Why use it?
It removes confusion about DocuSign's HMAC signature headers, multiple active signing keys, and the fact that the event name is inside the JSON body.

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/docusign-webhooks
Any agent
npx skills add hookdeck/webhook-skills --skill docusign-webhooks
Clone the repo
git clone --depth 1 https://github.com/hookdeck/webhook-skills

Made for: Claude Code, Codex.

Per session 64 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,660 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin 80% copy Near-identical to another mod 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.00064 $0.01660
Opus 5 $0.00032 $0.00830
Sonnet 5 $0.00013 $0.00332
Haiku 4.5 $0.00006 $0.00166

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

Security

Grade A, and why

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

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.

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.

Origin

This is a copy

80% identical to adyen-webhooks — 168 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.

skills/docusign-webhooks/SKILL.md · 137 lines

How it starts

The opening of the file, as written. The whole thing — 137 lines — stays where its author put it; the contents beside it link to each section on GitHub.

DocuSign Webhooks

When to Use This Skill

  • Setting up DocuSign Connect webhook handlers
  • Debugging DocuSign HMAC signature verification failures
  • Understanding DocuSign envelope and recipient event types and payloads
  • Handling envelope-completed, recipient-completed, or other Connect events
  • Verifying the X-DocuSign-Signature-1 header

Verification (core)

DocuSign Connect signs the raw request body with HMAC-SHA256 keyed on your Connect HMAC secret and sends the digest as base64 in X-DocuSign-Signature-1. When multiple HMAC keys are active it sends one header per key (X-DocuSign-Signature-1, X-DocuSign-Signature-2, … up to 100); only one needs to match. The x-authorization-digest header names the algorithm (HMACSHA256). This is not the Standard Webhooks spec. The event type lives in the JSON body's event field (e.g. envelope-completed), not in a header.

Node:

const crypto = require('crypto');

// Collect every X-DocuSign-Signature-N header; any match = authentic.
function verify(rawBody, headers, secret) {
  const expected = crypto.createHmac('sha256', secret).update(rawBody).digest('base64');
  const signatures = Object.keys(headers)
    .filter((h) => h.toLowerCase().startsWith('x-docusign-signature-'))
    .map((h) => headers[h]);
  return signatures.some((sig) => {
    try {
      return crypto.timingSafeEqual(Buffer.from(sig), Buffer.from(expected));
    } catch {
      return false; // length mismatch = not a match
    }
  });
}

Python:

import hmac, hashlib, base64

def verify(raw_body: bytes, headers, secret: str) -> bool:
    expected = base64.b64encode(
        hmac.new(secret.encode(), raw_body, hashlib.sha256).digest()
    ).decode()
    sigs = [v for k, v in headers.items() if k.lower().startswith("x-docusign-signature-")]
    return any(hmac.compare_digest(sig, expected) for sig in sigs)

Important: Verify against the exact raw body bytes DocuSign sent. Any re-serialization (pretty-printing, JSON round-trip) changes the bytes and breaks the signature.

Read the full file on GitHub · 137 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 · 137 lines · 64 tokens per session scan A 26d9a5aceb04

Subscribe to this mod's changes

docusign-webhooks is a skill published in the GitHub repository hookdeck/webhook-skills (84 stars, last pushed 5d ago), licensed MIT. It adds 64 tokens to every session and 1,660 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. It is 80% identical to adyen-webhooks, differing in 168 lines, and is treated as a copy.

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

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…

open-mercato/open-mercato · 134 tokens

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…

waybarrios/opencode-power-pack · 61 tokens

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.

thiientv/godmode · 56 tokens

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.

iamtouchskyer/memex · 38 tokens