Sign In

@kakunin/verify

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@kakunin/verify

Certificate-enforcement middleware for Kakunin AI agents — a thin re-export of @kakunin/sdk/verify so `npm install @kakunin/verify` works standalone.

latest
Source
npmnpm
Version
0.1.0
Version published
Weekly downloads
5
-28.57%
Maintainers
1
Weekly downloads
 
Created
Source

@kakunin/verify

Certificate-enforcement middleware for services that receive traffic from Kakunin-certified AI agents. This package is a thin re-export of @kakunin/sdk/verify — published standalone so npm install @kakunin/verify works on its own.

npm install @kakunin/verify
// Next.js / Fetch, Express, Fastify, Cloudflare Workers, Hono, Remix
import { kakuninMiddleware } from '@kakunin/verify';

const enforce = kakuninMiddleware();
export async function middleware(req: Request) {
  const { agent, reject } = await enforce(req);
  if (!agent) return reject('Missing or invalid agent certificate');
}

Installing @kakunin/verify pulls in @kakunin/sdk; the two expose the same middleware, so use whichever import you prefer. Full docs at kakunin.ai/docs.

Apache-2.0.

Keywords

kakunin

FAQs

Package last updated on 08 Jul 2026

Related posts