pid-sdk
v0.1.0
Published
Universal Portable Identity SDK for the Agentic Era (PID)
Maintainers
Readme
PID SDK
Universal Portable Identity for the Agentic Era
What is PID?
PID (Passport ID) is a universal identity system for AI agents and the humans who use them. Create once, use everywhere. Like an email address — but for the agentic era.
import { PID } from 'pid-sdk';
// Create a new identity
const passport = await PID.create({
name: 'Sarah',
domain: 'ad-intelligence',
});
// Connect to any AOS — instant context transfer
const wiz = new AOS({ name: 'wiz', ... });
wiz.identity(passport);
// Wiz already knows Sarah's brand, competitors, KPIs. Zero re-onboarding.The Problem
Every AI tool makes you start from scratch. Re-explain your brand. Re-upload your files. Re-describe your goals. Your context dies at every tool boundary.
The Solution
PID carries your agentic identity across every system:
- ✅ Portable — Works across any AOS, any platform
- ✅ Progressive — Gets richer over time via Boarding
- ✅ Private — Your keys, your data, zero-knowledge
- ✅ Rewarded — Data royalties via Source protocol
The Journey
CREATE BOARD FLY
(3 min) (progressive) (forever)
┌──────────┐ ┌──────────┐ ┌──────────┐
│ Identity │ → │ Deep │ → │ Every AOS│
│ + basic │ │ context │ │ knows you│
│ profile │ │ capture │ │ instantly│
└──────────┘ └──────────┘ └──────────┘Quick Start
npm install pid-sdkimport { PID } from 'pid-sdk';
// Create
const pid = await PID.create({ name: 'Sarah' });
// Board (progressive context capture)
await pid.board({
domain: 'ad-intelligence',
context: {
brand: 'Glow Beauty',
competitors: ['Fenty', 'Glossier'],
budget: '$200K/month',
},
});
// Connect to any AOS
aos.identity(pid);
// Export (portable)
const portable = await pid.export(); // encrypted JSONImplements
PID Spec — the open standard for portable agentic identity.
License
MIT © XY and Z
