/** * openlore decisions command * * Agent-recorded architectural decision workflow: * record (via MCP) → consolidate → verify → approve → sync → spec.md * * Can be installed as a pre-commit hook that gates commits until decisions * are reviewed. */ import { Command } from 'commander'; import type { PendingDecision } from '../../types/index.js'; export declare function installPreCommitHook(rootPath: string): Promise; export declare function uninstallPreCommitHook(rootPath: string): Promise; export declare function uninstallClaudeHook(rootPath: string): Promise; export declare function displayDecision(d: PendingDecision, verbose?: boolean): void; /** * One-line glyph legend printed beneath any decision listing. Its job is to make * a gate-blocking `verified` status legible as "awaiting review" — visually * distinct from the done statuses (approved/synced) — rather than a bare glyph * a reader has to guess at. */ export declare function printDecisionLegend(): void; export declare const decisionsCommand: Command; //# sourceMappingURL=decisions.d.ts.map