🛡️
Gate
Default-deny gateway checks every AI action before execution. Zero trust by design.
Default-deny gateway for AI actions. Free your eyes, trust the code.
import { SovrClient } from '@sovr/sdk';
const sovr = new SovrClient({
tenantId: 'your-tenant-id',
apiKey: 'sk_...'
});
// Gate check before AI action
const result = await sovr.gate.check({
action: 'send_email',
context: { recipient: 'ceo@company.com', content: aiGeneratedContent }
});
if (result.decision === 'allow') {
await sendEmail(result.plan);
} else if (result.decision === 'require_approval') {
console.log(`Pending approval: ${result.approvalId}`);
}npm install @sovr/sdk