The Authorization Layer for the AI Economy
YEBO replaces legacy authentication with cryptographically verified intent. Every action is anchored to human intent, eliminating automated credential abuse at scale.
import { YeboClient } from '@yebo/sdk-core'; const yebo = new YeboClient({ apiKey: process.env.YEBO_KEY, environment: 'production' }); // Verify intent in 1 line const intent = await yebo.create_intent({ action: 'TRANSFER_ASSETS', params: { amount: '100.00' }, identity: 'did:yebo:user_892' });
Built for the next era of security
Every component designed from first principles to eliminate the weaknesses in legacy authentication systems.
Biometric Anchoring
Every high-value action is bound to a human biological signature. Impossible to phish, impossible to replay. Hardware-bound identity with Secure Enclave isolation.
Zero Trust Architecture
No implicit access. Every agent, every action, every moment, verified against the policy engine in real time.
Plugin Marketplace
Connect YEBO to Amazon, Walmart, SAP, Amadeus, and 200+ enterprise data sources with verified plugins.
Browse Marketplace arrow_forwardDeveloper-First SDKs
TypeScript, Python, Swift, and Rust SDKs. Production-ready security in under 10 lines of code.
Start Building arrow_forwardThe Verification Flow
Three steps from user action to cryptographically verified execution.
Intent Generation
SDK creates a signed intent payload from the user action.
PAI Verification
Proof of Authorized Intent validated across the network.
Secure Execution
Validated PAI submitted to backend for immutable execution.
Production-ready security in 10 lines.
Stop worrying about replay attacks and malicious overrides. YEBO provides a hardened intent layer that scales with your infrastructure.
- check_circleHSM-backed signing modules
- check_circleMulti-signature support
- check_circleZero-Knowledge identity hooks
// YEBO Quick Start
const yebo = new YeboClient({
apiKey: process.env.YEBO_KEY
});
const verified = await yebo.verify({
action: 'TRANSFER_ASSETS',
amount: '100.00',
identity: 'did:yebo:user'
});
// Status: HUMAN_VERIFIED ✓