/** * Command palette catalog — the slash commands exposed via the * Space-at-empty quick picker. Hand-curated rather than auto- * extracted from handleSlashCommand's switch, because: * * 1. The switch contains alias arms (/branch → /fork, /quit → /exit, * etc.) that would clutter a UI listing. * 2. Some commands are internal sentinels (__DICTATE__, __SWARM__) * that should never appear to users. * 3. Curating gives us a tight description column for each entry — * the picker shows label + hint + description, and a hand- * written one-liner is more scannable than a parsed comment. * * Categories mirror /help's grouping so muscle memory transfers. */ export interface CommandEntry { command: string; description: string; category: string; } export declare const COMMAND_CATALOG: CommandEntry[];