/** * The analysis commands, as prompts both interfaces can send. * * /architect, /performance and /security were canned messages inside the terminal's command * switch — a fixed prompt sent through the ordinary path, exactly like /compact. That made them * trivial to run from a prompt and impossible to run from the browser, which is the gap this closes. * * Kept here rather than duplicated so the two interfaces cannot drift: the web palette and the * terminal send the same words. Each is a review that produces findings with file:line references, * which is what makes the output something a person can act on rather than an essay. */ export interface Skill { /** The palette/command name. */ name: string; /** One line, for the palette. */ hint: string; /** The message sent to the model. */ prompt: string; } export declare const SKILLS: Readonly>; //# sourceMappingURL=skills.d.ts.map