/** * reflect_scars Tool * * End-of-session scar reflection — the closing counterpart to confirm_scars. * Mirrors CODA-1's [Scar Reflection] protocol for CLI/DAC/Brain agents. * * Flow: * recall → confirm_scars (START: "I will...") → work * → reflect_scars (END: "I did...") → session_close uses reflections * * Each scar surfaced during the session should be reflected upon with: * OBEYED — Followed the scar, with concrete evidence (min 15 chars) * REFUTED — Scar didn't apply or was overridden (min 30 chars) */ import type { ReflectScarsParams, ReflectScarsResult } from "../types/index.js"; /** * Main tool implementation: reflect_scars */ export declare function reflectScars(params: ReflectScarsParams): Promise; //# sourceMappingURL=reflect-scars.d.ts.map