/** * Generated bundled GJC workflow skill catalog. * * Keep this module metadata-only: skill bodies are loaded through literal * dynamic imports only when a caller asks for their content. */ export type BundledGjcSkillName = "autoresearch" | "deep-interview" | "ralplan" | "ultragoal"; export interface BundledGjcSkillCatalogEntry { readonly kind: "skill" | "skill-fragment"; readonly name?: BundledGjcSkillName; readonly parentSkillName?: BundledGjcSkillName; readonly relativePath: string; readonly description?: string; readonly loadContent: () => Promise; } export declare const BUNDLED_GJC_SKILL_CATALOG: readonly BundledGjcSkillCatalogEntry[];