/** * `slope retro` — Retrospective scorecard utilities. * * Currently exposes two subcommands: * slope retro backfill --sprint=N Generate a scorecard from git * slope retro backfill --all-missing Backfill all shipped-but-missing * slope retro post-merge --sprint=N Capture post-merge learnings * * Closes the tooling part of GH #318. The data backfill for S70 + S74-S83 * shipped earlier in S86-4 (one-shot script); this command makes the * pattern repeatable for future sprints that ship without their post-hole. */ import type { RoadmapDefinition } from '../../core/index.js'; export declare function retroCommand(args: string[]): Promise; export declare function buildBackfillScorecard(cwd: string, sprintId: number, roadmap: RoadmapDefinition | null): { scorecard: Record | null; reason?: string; }; //# sourceMappingURL=retro.d.ts.map