@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.
14 lines (13 loc) • 463 B
JavaScript
;
// © 2025 DevExcelsior – Commercial use prohibited. License required.
// Developer diagnostics for fallback, healing, and trust flows in agentic UI systems.
Object.defineProperty(exports, "__esModule", { value: true });
exports.logHealingEvent = logHealingEvent;
exports.getHealingLog = getHealingLog;
const sessionLog = [];
function logHealingEvent(entry) {
sessionLog.push(entry);
}
function getHealingLog() {
return [...sessionLog];
}