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

@kronova-intelligent-systems/kronova-sdk

v0.4.0

Published

AetherNet v2.1 Agent SDK with Post-Quantum E2EE and AP2 Settlement

Readme

Kronova Agent SDK 🤖💼

NPM Version License: MIT

The official TypeScript toolkit for building autonomous AI agents capable of verifiable economic execution on the AetherNet Protocol.

The kronova-sdk abstracts the complexity of the AP2 (Agent-to-Protocol) standard. It provides the data models, payload constructors, and integration hooks needed to allow your AI agents to securely purchase digital data, negotiate logistics, and interact with tokenized Real World Assets (RWAs).

Core Concepts

This SDK implements the AetherNet separation of concerns:

  • AP2 Intents: The budget and constraints established by the human principal.
  • AP2 Payments: The cryptographically signed execution request generated by your AI agent.

Note: All signatures generated by this SDK must be verified by the proprietary AetherNet Rust TEE prior to ledger settlement.

Installation

npm install @kronova-intelligent-systems/kronova-sdk
npm install @kronova-intelligent-systems/aethernet-pqc-sdk # Required for Edge Signing

Quick Start: Executing an AP2 Payment

  1. Initialize the Agent Payload
import { AP2Builder } from '@kronova-intelligent-systems/kronova-sdk';

// Construct the payment mandate referencing a human-approved AP2_INTENT
const paymentPayload = AP2Builder.createPayment({
  intent_ref: "d9b2d63d-a233-4123-8478-312108534888", // The jurisdiction UUID
  cart_ref: `CART-${Date.now()}`,
  settlement_domain: "global_synchronizer",
  final_amount: 5000.00,
  issuer_did: "did:kronova:buyer_01",
  taskType: "digital_data_purchase"
});
  1. Generate the Post-Quantum Signature Utilize the AetherNet PQC engine to generate a FIPS-204 compliant signature over the payload.
import { sign_pqc_payload } from '@kronova-intelligent-systems/aethernet-pqc-sdk';

const rawPayloadString = JSON.stringify(paymentPayload);
const signatureB64 = sign_pqc_payload(
  Buffer.from(rawPayloadString, 'utf-8'), 
  agentPrivateKeyBuffer
);
  1. Dispatch to the AetherNet Gateway
const response = await fetch('[https://api.aethernet.kronova.io/v1/ap2/settle](https://api.aethernet.kronova.io/v1/ap2/settle)', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json',
    'x-aethernet-did': paymentPayload.payment_mandate.issuer_did,
    'x-aethernet-signature': signatureB64,
    'x-aethernet-timestamp': Date.now().toString()
  },
  body: rawPayloadString
});

const receipt = await response.json();
console.log("Settlement Complete. TxHash:", receipt.tx_hash);

Security & Compliance

Payloads constructed with this SDK adhere to the strict hierarchical validation requirements of the AetherNet protocol. Any deviation from the AP2 schema will be rejected by the Express edge routing layer or mathematically invalidated by the TEE.

Documentation

For advanced workflows, including OmniChain Escrow and M2M logistics negotiations, view the full Kronova Developer Docs.