/** * App initializer service — detection + init/repair workflows for gaboe-owned apps. * * Manages a catalog of 4 apps with detection logic, one-click init, * and repair workflows exposed via registered commands. */ export type AppId = "oc-codex-multi-account" | "oc-anthropic-multi-account" | "opencode-gitbutler" | "opencode-usage"; export type AppState = "ready" | "partial" | "missing-deps" | "not-installed"; export type AppStatus = { id: AppId; name: string; description: string; state: AppState; details: string[]; }; export declare function getAppCatalog(): Promise; export declare function ensureAppCommandsRegistered(): void;