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

@aivoralabs/agenttrail-vercel

v0.1.1

Published

Vercel AI SDK middleware for AgentTrail audit receipts

Downloads

88

Readme

@aivoralabs/agenttrail-vercel

npm version License: MIT EU AI Act

Vercel AI SDK middleware for EU AI Act Article 12 compliance.

Wraps generateText and streamText with automatic cryptographic audit receipts. No code changes — middleware pattern.

Part of the AgentTrail monorepo. Requires @aivoralabs/agenttrail and ai (Vercel AI SDK) as peer dependencies.


Features

  • generateText — automatic receipts for non-streaming completions
  • streamText — receipts for streaming responses
  • ✅ Compliance modes: strict (fail-closed) and permissive
  • ✅ Pre-flight compliance gate in strict mode
  • ✅ Compatible with any Vercel AI SDK provider

Installation

npm install @aivoralabs/agenttrail-vercel @aivoralabs/agenttrail ai

Quick Start

import { generateText } from 'ai';
import { openai } from '@ai-sdk/openai';
import { auditReceiptMiddleware } from '@aivoralabs/agenttrail-vercel';
import { JSONLFileWriter } from '@aivoralabs/agenttrail';

const { wrapGenerate, wrapStream } = auditReceiptMiddleware({
  agentId: 'hr-ai',
  storage: new JSONLFileWriter('./audit-logs'),
  complianceConfig: { mode: 'strict' },
});

const wrappedGenerate = wrapGenerate(generateText);

const result = await wrappedGenerate({
  model: openai('gpt-4o'),
  prompt: 'Evaluate candidate profile for senior engineer position.',
});

// Every generateText call now produces a signed audit receipt
console.log(result.text);

API Reference

auditReceiptMiddleware(options)

Returns { wrapGenerate, wrapStream }.

| Option | Type | Required | Description | |--------|------|----------|-------------| | agentId | string | Yes | Agent identifier | | storage | IReceiptStorage | Yes | Receipt storage backend | | complianceConfig.mode | 'strict' \| 'permissive' | No | Default: 'strict' | | complianceConfig.redactPII | boolean | No | Enable PII redaction | | keyStore | IKeyStore | No | Ed25519 key management |

wrapGenerate(generateText)

Wraps the Vercel AI SDK generateText function. Returns a function with the same signature + automatic receipt generation.

wrapStream(streamText)

Wraps the Vercel AI SDK streamText function. Accumulates the stream and generates a receipt when complete.


Next.js Integration

// app/api/chat/route.ts
import { generateText } from 'ai';
import { openai } from '@ai-sdk/openai';
import { auditReceiptMiddleware } from '@aivoralabs/agenttrail-vercel';
import { JSONLFileWriter } from '@aivoralabs/agenttrail';

const { wrapGenerate } = auditReceiptMiddleware({
  agentId: 'nextjs-chat',
  storage: new JSONLFileWriter('/tmp/audit-logs'),
  complianceConfig: { mode: 'strict' },
});

export async function POST(req: Request) {
  const { prompt } = await req.json();
  const result = await wrapGenerate(generateText)({
    model: openai('gpt-4o'),
    prompt,
  });
  return Response.json({ text: result.text });
}

Links

License: MIT