UNPKG

@devexcelsior/healing-devtools

Version:

Developer tools for inspecting healing attempts, fallback behavior, retries, and trust arbitration in agentic UI systems. Provides live diagnostics for SDK sessions and governance flows.

9 lines (8 loc) 258 B
export interface DevtoolsEntry { timestamp: number; action: string; trustScore?: number; fallbackUsed?: boolean; } export declare function logHealingEvent(entry: DevtoolsEntry): void; export declare function getHealingLog(): DevtoolsEntry[];