/** * openlore panic-replay * * Replay a recorded/synthetic behavioral trace through the REAL panic engine and print the panic * timeline + summary. Deterministic (virtual clock), read-only. This is how a maintainer validates * the signal against a specific real session: capture the tool sequence, replay it, see whether — * and where — it would have tripped an intervention. * * Trace format: JSON Lines, one step per line: {"tool":"search_code","filePath":"src/auth/x.ts","gapMs":15000} * - tool: required (drives cognitive-load weight + the module window) * - filePath: optional (drives module/density/oscillation; omit for non-file tools) * - gapMs: optional ms since the previous step (drives decay/staleness); default 0 */ import { Command } from 'commander'; export declare const panicReplayCommand: Command; //# sourceMappingURL=panic-replay.d.ts.map