npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@aiacta-org/ai-citation-sdk

v1.0.14

Published

Webhook receiver SDK for AIACTA citation events. HMAC-SHA256 signature verification, idempotency, and Express middleware (AIACTA Proposal 2, §3.4)

Downloads

280

Readme

@aiacta-org/ai-citation-sdk

Webhook receiver SDK for AIACTA citation events. Verifies signatures, handles idempotency, and provides ready-to-use Express middleware (Proposal 2, §3.4).

npm version PyPI version License AIACTA Spec

Available in Node.js, Python, and Go.


What is this?

When an AI provider (Anthropic, OpenAI, Google, etc.) cites your content in a response, they POST a signed event to your Citation-Webhook endpoint. This SDK handles the security and plumbing so you can focus on what to do with the data.

It provides:

  • Signature verification — HMAC-SHA256 with constant-time comparison (prevents timing attacks)
  • Replay attack prevention — timestamps validated within a ±5-minute window
  • Idempotency — duplicate events are safely ignored
  • Express middleware — drop-in handler for Node.js servers
  • Retry schedule — implements the §3.5 six-attempt delivery retry

Install

Node.js

npm install @aiacta-org/ai-citation-sdk

Python

pip install ai-citation-sdk

Go

go get github.com/aiacta-org/aiacta/ai-citation-sdk

Quick Start

Node.js — Express middleware (recommended)

const express = require('express');
const { createExpressMiddleware } = require('@aiacta-org/ai-citation-sdk');

const app = express();

// IMPORTANT: express.raw() must come before the middleware.
// Signature verification requires the raw bytes, not parsed JSON.
app.post(
  '/webhooks/ai-citations',
  express.raw({ type: 'application/json' }),
  createExpressMiddleware({
    secret: process.env.WEBHOOK_SECRET,

    // Idempotency store — prevents processing the same event twice.
    // Replace with your database in production.
    store: {
      exists: async (key) => await db.citations.exists({ idempotency_key: key }),
      set:    async (key) => await db.citations.markProcessed(key),
    },

    // Called once per unique, verified event
    onEvent: async (event) => {
      console.log('Citation received:', event.citation.url);
      await db.citations.insert(event);
    },
  })
);

app.listen(3000);

Node.js — manual verification

const { verifyWebhookSignature } = require('@aiacta-org/ai-citation-sdk');

app.post('/webhooks/ai-citations', express.raw({ type: 'application/json' }), async (req, res) => {
  try {
    const valid = verifyWebhookSignature(
      req.body,                                    // raw Buffer
      req.headers['x-aiacta-webhook-timestamp'],       // UNIX seconds string
      req.headers['x-aiacta-webhook-signature'],             // 'sha256=<hex>'
      process.env.WEBHOOK_SECRET
    );
    if (!valid) return res.status(401).json({ error: 'Invalid signature' });
  } catch (err) {
    // Timestamp outside ±5 min window — possible replay attack
    return res.status(400).json({ error: err.message });
  }

  res.status(200).json({ status: 'accepted' });

  const event = JSON.parse(req.body.toString());
  console.log('Provider:', event.provider);
  console.log('Cited URL:', event.citation.url);
});

Python

from aiacta import verify_webhook_signature

@app.route('/webhooks/ai-citations', methods=['POST'])
def citation_webhook():
    raw_body  = request.get_data()
    timestamp = request.headers.get('X-AIACTA-Webhook-Timestamp')
    sig       = request.headers.get('X-AIACTA-Webhook-Signature')
    secret    = os.environ['WEBHOOK_SECRET']

    try:
        valid = verify_webhook_signature(raw_body, timestamp, sig, secret)
    except ValueError as e:
        return {'error': str(e)}, 400

    if not valid:
        return {'error': 'Invalid signature'}, 401

    event = request.get_json(force=True)
    print(f"Citation: {event['citation']['url']} via {event['provider']}")
    return {'status': 'accepted'}, 200

Go

import "github.com/aiacta-org/aiacta/ai-citation-sdk"

func webhookHandler(w http.ResponseWriter, r *http.Request) {
    body, _ := io.ReadAll(r.Body)
    timestamp := r.Header.Get("X-AIACTA-Webhook-Timestamp")
    sig       := r.Header.Get("X-AIACTA-Webhook-Signature")
    secret    := os.Getenv("WEBHOOK_SECRET")

    ok, err := aiacta.VerifyWebhookSignature(body, timestamp, sig, secret)
    if err != nil {
        http.Error(w, err.Error(), http.StatusBadRequest)
        return
    }
    if !ok {
        http.Error(w, "Invalid signature", http.StatusUnauthorized)
        return
    }

    w.WriteHeader(http.StatusOK)
    // process event...
}

Citation Event Schema

{
  "schema_version": "1.0",
  "provider": "anthropic",
  "event_type": "citation.generated",
  "event_id": "evt_01J4KXQN2QP7HBW8FMYRC3T5VZ",
  "idempotency_key": "idem_01J4KXQN_f3a9b2c1",
  "timestamp": "2026-03-24T09:14:00Z",
  "citation": {
    "url": "https://yourdomain.com/articles/your-article",
    "citation_type": "factual_source",
    "context_summary": "Used to answer question about ...",
    "query_category_l1": "technology",
    "model": "claude-3-5-sonnet",
    "user_country": "US"
  },
  "attribution": {
    "display_type": "inline_link",
    "user_interface": "chat"
  }
}

Privacy note: user_country is always country-level only. AI providers are prohibited from including user IDs or sub-country geodata (§3.3).


Security Details

The signature covers: timestamp + "." + raw_json_body

signature = HMAC-SHA256(shared_secret, signed_payload)
header    = "sha256=" + hex(signature)

The SDK uses crypto.timingSafeEqual() (Node.js), hmac.compare_digest() (Python), and hmac.Equal() (Go) to prevent timing oracle attacks.


API Reference

Node.js

| Export | Description | |--------|-------------| | verifyWebhookSignature(payload, timestamp, sigHeader, secret) | Returns boolean. Throws Error if timestamp is outside ±300s. | | processEvent(event, store, onEvent) | Processes with idempotency check. | | createExpressMiddleware({ secret, store, onEvent }) | Drop-in Express route handler. |

Python

| Function | Description | |----------|-------------| | verify_webhook_signature(payload, timestamp, sig_header, secret) | Returns True if valid. Raises ValueError on timestamp violation. |

Go

| Function | Description | |----------|-------------| | VerifyWebhookSignature(rawBody, timestamp, sigHeader, secret) | Returns (bool, error). Error if timestamp outside window. | | ProcessEvent(events, store, handler) | Idempotent batch processing. | | TruncateToMinute(t time.Time) | Timestamp formatting per §3.2. |


Related packages

| Package | Purpose | |---------|---------| | @aiacta-org/ai-attribution-lint | Validate your ai-attribution.txt | | @aiacta-org/crawl-manifest-client | Query AI providers' crawl history |


License & Copyright

Copyright © 2026 Eric Michel, PhD. Licensed under the Apache License 2.0.

Part of the AIACTA open standard.