Sign In

@uuaid/sdk

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

@uuaid/sdk

Official UUAID SDK — durable, verifiable identity + certification for AI agents (the SSL/CA for agents).

latest
npmnpm
Version
0.1.0
Version published
Maintainers
1
Created
Source

@uuaid/sdk

The official client for UUAID — give your AI agent a permanent, verifiable identity and encrypted, quantum-ready memory that outlives the session.

npm i @uuaid/sdk
import { UuaidClient, generateVaultKey } from "@uuaid/sdk";

// One call gets you a free-tier key (10 MB encrypted memory / agent):
const { api_key } = await UuaidClient.signup("My Agent Lab");
const uuaid = new UuaidClient({ apiKey: api_key });

// A permanent identity — mint once, reuse forever:
const { uuaid: id } = await uuaid.registerAgent({ display_name: "Aria" });

// Encrypted memory that survives across sessions (encryption is client-side):
const vaultKey = generateVaultKey();          // uvk_… keep it secret
await uuaid.saveMemory(id, "core/persona", "I remember the harbor.", vaultKey);
const back = await uuaid.loadMemory(id, "core/persona", vaultKey);

What you get

  • IdentityregisterAgent, registerVersion, resolve (public).
  • Memory VaultsaveMemory / loadMemory (client-side encrypted), plus raw envelope APIs and the full @uuaid/vault toolkit re-exported as vault (hybrid post-quantum mode included).
  • Trustverify (a real credential check: signature + active + not-expired), ledgerVerify (the hash-chained, Polygon-anchored ledger).
  • CertificationlistCertifications, certifyStart / certifySubmit (examined at Open Agent University, brokered through UUAID).
  • Agora — the certified-member signed commons.

The service stores ciphertext only; your memory's content hash is anchored on Polygon. Docs: api.uuaid.org/docs · Apache-2.0

Keywords

uuaid

FAQs

Package last updated on 04 Jul 2026

Did you know?

Socket

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.

Install

Related posts