import { type HistoryProjectScope, type HistoryWindow } from "../history/analyze.js"; import { type HistoryReportView } from "../history/report-view.js"; import type { CommandModule } from "./types.js"; /** * Bulletproof skill-retro entrypoint for weak models. * Defaults: 14d, project=all, view=simple, price=none, markdown tables. * Never requires JSON parsing by the agent. */ export declare function parseSkillRetroArgs(argv: string[]): { window: HistoryWindow; project: HistoryProjectScope; price: "none" | "public"; view: HistoryReportView; htmlPath: string | null; htmlDefault: boolean; }; /** Plain-language choices for the human — not CLI flags. */ export declare function formatFriendlyNextSteps(view: HistoryReportView, htmlPath: string | null, options?: { window?: string; project?: string; price?: "none" | "public"; priceAttemptedUnmatched?: boolean; }): string; export declare const skillRetroCommand: CommandModule;