Type Alias: SkillGetCatalogResponse
Makaio Framework / contracts / SkillGetCatalogResponse
Type Alias: SkillGetCatalogResponse
Section titled “Type Alias: SkillGetCatalogResponse”SkillGetCatalogResponse =
z.infer<typeofSkillSchemas["getCatalog"]["response"]>
Defined in: ../../../packages/contracts/src/skill/schemas.ts:243
Type Composition
Section titled “Type Composition”SkillGetCatalogResponsez.infer<(typeof SkillSchemas)['getCatalog']['response']>(typeof SkillSchemas)['getCatalog']['response']
Resolved Shape
Section titled “Resolved Shape”type SkillGetCatalogResponse = { entries: Array<{ name: string; description: string; activationMode: 'auto' | 'manual'; source: 'filesystem' | 'database'; scope: 'session' | 'global' | 'project'; compatibility?: string | undefined; category?: string | undefined; tags?: Array<string> | undefined; adapters?: Array<string> | null | undefined; location?: string | undefined; baseDir?: string | undefined; }>; cwd: string;};