Loading...
Loading...
Agent Context
See inside every agent. Capture, inspect, and compare complete state snapshots including policy evaluations, memory, actions, and configuration.
Capabilities
See every active policy evaluation, rule match, and enforcement decision applied to an agent in real-time.
Inspect agent working memory, accumulated context, and decision history across conversation sessions.
Chronological timeline of every agent action with timestamps, outcomes, and the policy decisions applied.
Compare two points in time to see exactly what changed in an agent's state, config, or behavior.
View the complete agent configuration including model parameters, tool access permissions, and rate limits.
Watch policy evaluations happen in real-time as agents make decisions and take actions.
Getting Started
Take a point-in-time snapshot of any agent's complete internal state including policy, memory, and config.
Browse through policy evaluations, recent actions, memory contents, and configuration settings.
Compare snapshots to identify what changed. Perfect for debugging unexpected behavior.
Developer Integration
import { DRD } from '@drd/sdk';
const drd = new DRD({ token: 'drd_live_sk_...' });
// Capture agent state snapshot
const snapshot = await drd.agentContext.capture({
agentId: 'agent_abc123',
});
// Inspect state sections
console.log(snapshot.policyState);
console.log(snapshot.memoryState);
console.log(snapshot.recentActions);
// Compare two snapshots
const diff = await drd.agentContext.compare({
snapshotIdA: 'snap_before',
snapshotIdB: 'snap_after',
});Never wonder why an agent made a decision again. Full state visibility, snapshot comparison, and live evaluation feeds.