@obep/protocol
v0.1.0
Published
OBEP wire protocol, playbook schema, canonicalization, and Ed25519 signing primitives. Apache-2.0.
Downloads
69
Maintainers
Readme
@obep/protocol
The open trust anchor of OBEP — wire-protocol types, the playbook JSON Schema, RFC-8785 (JCS) canonicalization, Ed25519 signing/verification, and the signed-token + audit-record shapes. Apache-2.0.
npm install @obep/protocolThis package is dependency-free and isomorphic (Web Crypto via globalThis.crypto in
both the browser and Node 20+). The signer (your server) and the verifier (the
extension) share these exact primitives, which is what makes "trust the protocol, not
the vendor" verifiable.
import { signPlaybook, verifyPlaybook, playbookHash, PLAYBOOK_SCHEMA } from "@obep/protocol";Most app developers use @obep/sdk instead
and never import this directly. Reach for it when you're building tooling, a
conformant relay, or verifying playbooks yourself. See the
repo.
