/** * squad notes — manage squad git-notes state (Round 5, P0.3 A3). * * Subcommand: * promote [--ref ] [--all] [--dry-run] * * Production caller for {@link TwoLayerBackend.promoteNotes}. Walks notes on * each `refs/notes/squad/*` ref, moves notes flagged `promote_to_permanent` * into the orphan layer under `promoted//.json`, copies notes * flagged `archive_on_close` under `archive//.json`, and leaves * un-flagged notes in place. * * Round 4 audit found `promoteNotes` had zero production callers — the SDK * API was wired but never invoked. This command, plus the Ralph heartbeat * `notes-promote` capability, are those production callers. * * @module cli/commands/notes */ /** * Run `squad notes promote`. Returns process exit code. */ export declare function runNotesPromote(cwd: string, args: string[]): Promise; /** * Top-level `squad notes` dispatcher. */ export declare function runNotes(cwd: string, args: string[]): Promise; //# sourceMappingURL=notes.d.ts.map