
Security News
White House Authorizes Private Companies to Conduct Offensive Cyber Operations
A new federal program will let vetted U.S. cybersecurity firms help investigate and disrupt foreign cybercrime groups under government direction.
@kakunin/sdk
Advanced tools
TypeScript SDK for the Kakunin AI agent compliance API — X.509 certificate issuance, behavioral monitoring, and MiCA / EU AI Act compliance reporting.
npm install @kakunin/sdk
import { Kakunin } from '@kakunin/sdk';
const kkn = new Kakunin({ apiKey: process.env.KKN_KEY! });
// Register an agent and issue its X.509 certificate
const agent = await kkn.agents.create({
name: 'TradeBot-1',
model_hash: await Kakunin.computeModelHash('gpt-4o:2024-11'),
});
const cert = await kkn.agents.certify(agent.id);
console.log(cert.serial_number); // e.g. "c4f9-17a2"
// Ingest a behavioral event and get a real-time risk score
const event = await kkn.events.ingest({
agentId: agent.id,
actionType: 'transaction_initiated',
details: { amount_usd: 50000, venue: 'NYSE' },
});
console.log(event.risk_band); // "low" | "medium" | "high"
// Verify a certificate (public — no auth required)
const verified = await kkn.verify.cert(cert.serial_number);
console.log(verified.status); // "active" | "revoked" | "expired"
Use a kkn_test_... key to hit the sandbox CA at no cost. Certificates are real X.509 but issued by a test root and have no regulatory validity.
const sandbox = new Kakunin({ apiKey: 'kkn_test_...' });
console.log(sandbox.isSandbox()); // true
| Resource | Methods |
|---|---|
kkn.agents | create, get, list, update, certify, getRisk |
kkn.events | ingest, list |
kkn.certificates | revoke |
kkn.verify | cert (no auth) |
kkn.webhooks | constructEvent |
Kakunin (static) | computeModelHash |
app.post('/webhooks/kakunin', async (req, res) => {
const event = await kkn.webhooks.constructEvent(
req.rawBody,
req.headers['kakunin-signature'] as string,
process.env.KKN_WEBHOOK_SECRET!,
);
if (event.event === 'certificate.revoked') {
// block the agent immediately
}
res.sendStatus(200);
});
Node.js ≥ 18. Full docs at docs.kakunin.ai.
FAQs
Official TypeScript SDK for the Kakunin AI Agent KYC platform — API client plus drop-in certificate enforcement middleware (@kakunin/sdk/verify)
The npm package @kakunin/sdk receives a total of 2 weekly downloads. As such, @kakunin/sdk popularity was classified as not popular.
We found that @kakunin/sdk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
A new federal program will let vetted U.S. cybersecurity firms help investigate and disrupt foreign cybercrime groups under government direction.

Research
/Security News
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.