Loading...
Loading...
Trust Decisions
Every trust decision logged, reviewed, and analyzed. Build confidence in your governance with outcome tracking and continuous learning.
Capabilities
Chronological log of every trust decision with full context, action details, and confidence scores.
0-100 confidence score on every decision. Track confidence trends and identify areas needing human review.
Mark decisions as correct, incorrect, or inconclusive. Build a feedback loop to improve future decisions.
Capture lessons learned from each decision review. Build institutional knowledge for better governance.
Aggregate statistics on decision types, outcomes, and confidence distributions. Identify patterns and trends.
Tamper-evident decision log with reviewer identity, timestamps, and full context for compliance audits.
Developer Integration
import { DRD } from '@drd/sdk';
const drd = new DRD({ token: 'drd_live_sk_...' });
// Log a trust decision
const decision = await drd.trustDecisions.create({
agentId: 'agent_abc123',
decisionType: 'access_grant',
action: 'Allow read access to customer DB',
confidence: 92,
reasoning: 'Valid scope, verified identity',
});
// Review outcome
await drd.trustDecisions.updateOutcome({
id: decision.id,
outcome: 'correct',
lessonsLearned: 'Scope validation working correctly',
});Every decision logged, every outcome tracked. Build a governance system that learns and improves.