Type Alias: SkillActivateResponse
Makaio Framework / contracts / SkillActivateResponse
Type Alias: SkillActivateResponse
Section titled “Type Alias: SkillActivateResponse”SkillActivateResponse =
z.infer<typeofSkillSchemas["activate"]["response"]>
Defined in: ../../../packages/contracts/src/skill/schemas.ts:245
Type Composition
Section titled “Type Composition”SkillActivateResponsez.infer<(typeof SkillSchemas)['activate']['response']>(typeof SkillSchemas)['activate']['response']
Resolved Shape
Section titled “Resolved Shape”type SkillActivateResponse = { name: string; content: string; alreadyActive: boolean; metadata?: { license?: string | undefined; compatibility?: string | undefined; allowedTools?: string | undefined; metadata?: Record<string, string> | undefined; } | undefined; baseDir?: string | undefined; resources?: Array<string> | undefined;};