Overview
Why Register?
Registration Process
1. Generate Ed25519 Key Pair
npm install @openbotauth/registry-signerimport { generateEd25519KeyPair, publicKeyToJwk } from '@openbotauth/registry-signer';
const keyPair = await generateEd25519KeyPair();
const jwk = await publicKeyToJwk(keyPair.publicKey);
console.log('JWK:', JSON.stringify(jwk, null, 2));2. Create JWKS Endpoint
3. Register with OpenBotRegistry
Field
Description
4. Sign Your Requests
Key Management Best Practices
Verification Flow
Related Resources
Last updated