fusionauth-webhooks

A guide for connecting an application to FusionAuth, an identity and login service, through webhook notifications. It explains how to verify notifications about users and authentication activity.

In plain words
What is it for?
Use it for user creation, successful logins, registrations, and user deletion events.
Why use it?
It helps ensure account-related events are genuine before the application acts on them.

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

Made for: Claude Code, Codex.

Per session 47 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,145 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin 86% 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.00047 $0.02145
Opus 5 $0.00023 $0.01073
Sonnet 5 $0.00009 $0.00429
Haiku 4.5 $0.00005 $0.00215

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

Security

Grade A, and why

fusionauth-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 3d 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

86% identical to adyen-webhooks — 252 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/fusionauth-webhooks/SKILL.md · 235 lines

How it starts

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

FusionAuth Webhooks

When to Use This Skill

  • Setting up FusionAuth webhook handlers
  • Debugging JWT signature verification failures
  • Understanding FusionAuth event types and payloads
  • Handling user, login, registration, or group events

Essential Code (USE THIS)

FusionAuth Signature Verification (JavaScript)

FusionAuth signs webhooks with a JWT in the X-FusionAuth-Signature-JWT header. The JWT contains a request_body_sha256 claim with the SHA-256 hash of the request body.

const crypto = require('crypto');
const jose = require('jose');

// Verify FusionAuth webhook signature
async function verifyFusionAuthWebhook(rawBody, signatureJwt, hmacSecret) {
  if (!signatureJwt || !hmacSecret) return false;

  try {
    // Create key from HMAC secret
    const key = new TextEncoder().encode(hmacSecret);

    // Verify JWT signature and decode
    const { payload } = await jose.jwtVerify(signatureJwt, key, {
      algorithms: ['HS256', 'HS384', 'HS512']
    });

    // Calculate SHA-256 hash of request body
    const bodyHash = crypto
      .createHash('sha256')
      .update(rawBody)
      .digest('base64');

    // Compare hash from JWT claim with calculated hash
    return payload.request_body_sha256 === bodyHash;
  } catch (err) {
    console.error('JWT verification failed:', err.message);
    return false;
  }
}

Express Webhook Handler

const express = require('express');
const crypto = require('crypto');
const jose = require('jose');

const app = express();

// CRITICAL: Use express.raw() - FusionAuth needs raw body for signature verification
app.post('/webhooks/fusionauth',
  express.raw({ type: 'application/json' }),
  async (req, res) => {
    const signatureJwt = req.headers['x-fusionauth-signature-jwt'];

    // Verify signature
    const isValid = await verifyFusionAuthWebhook(
      req.body,
      signatureJwt,
      process.env.FUSIONAUTH_WEBHOOK_SECRET  // HMAC signing key from FusionAuth
    );

    if (!isValid) {
      console.error('FusionAuth signature verification failed');
      return res.status(401).send('Invalid signature');
    }

    // Parse payload after verification
    const event = JSON.parse(req.body.toString());

    console.log(`Received event: ${event.event.type}`);

    // Handle by event type
    switch (event.event.type) {
      case 'user.create':
        console.log('User created:', event.event.user?.id);
        break;
      case 'user.update':
        console.log('User updated:', event.event.user?.id);
        break;
      case 'user.login.success':
        console.log('User logged in:', event.event.user?.id);
        break;
      case 'user.registration.create':
        console.log('User registered:', event.event.user?.id);
        break;
      default:
        console.log('Unhandled event:', event.event.type);
    }

    res.json({ received: true });
  }
);

Read the full file on GitHub · 235 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. 3d ago First seen · 235 lines · 47 tokens per session scan A a303cf821d20

Subscribe to this mod's changes

fusionauth-webhooks is a skill published in the GitHub repository hookdeck/webhook-skills (84 stars, last pushed 6d ago), licensed MIT. It adds 47 tokens to every session and 2,145 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. It is 86% identical to adyen-webhooks, differing in 252 lines, and is treated as a copy.

Related

Other skills, from other repositories

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

plan

Design an implementation plan before writing code — where the change lands, what it will touch, what could break, and the steps in order. Use when asked to plan a feature, scope a change, or figure out how to approach an edit before making it. To assess a change that already exists (a diff, refactor, or rename), use…

TheWinci/mimirs · 75 tokens

research

Answer a hard, open-ended question about how the project works or is built by synthesizing every source — code, structure, git history, prior decisions, discussion, caveats — and verifying each claim against the source. Use for deep cross-cutting questions that span more than one area. Narrower siblings — a single…

TheWinci/mimirs · 88 tokens

explore

Build an accurate mental model of an unfamiliar codebase, feature, or area before changing it — where it lives, how it connects, what it does, and why. Use when asked how something works, where something is, when onboarding to a repo, or before editing code you don't know. For a cross-cutting question that needs…

TheWinci/mimirs · 79 tokens

handoff

Wrap up a work session so the next session (or another agent) can pick up cleanly — what was done, what's in flight, what to watch out for. Use when ending a session, switching tasks, or asked to hand off, wrap up, or save state for later.

TheWinci/mimirs · 61 tokens