Skip to content

Type Alias: SkillGetCatalogResponse

Makaio Framework


Makaio Framework / contracts / SkillGetCatalogResponse

SkillGetCatalogResponse = z.infer<typeof SkillSchemas["getCatalog"]["response"]>

Defined in: ../../../packages/contracts/src/skill/schemas.ts:243

  • SkillGetCatalogResponse
    • z.infer<(typeof SkillSchemas)['getCatalog']['response']>
      • (typeof SkillSchemas)['getCatalog']['response']
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;
};