Type Alias: SkillRecordInput
Makaio Framework / contracts / SkillRecordInput
Type Alias: SkillRecordInput
Section titled “Type Alias: SkillRecordInput”SkillRecordInput =
z.infer<typeofSkillRecordInputSchema>
Defined in: ../../../packages/contracts/src/skill/schemas.ts:240
Type Composition
Section titled “Type Composition”SkillRecordInputz.infer<typeof SkillRecordInputSchema>typeof SkillRecordInputSchema
Resolved Shape
Section titled “Resolved Shape”type SkillRecordInput = { name: string; description: string; activationMode: 'auto' | 'manual'; enabled: boolean; id: string; scope: 'session' | 'global' | 'project'; content: string; source: 'database'; license?: string | undefined; compatibility?: string | undefined; metadata?: Record<string, string> | undefined; allowedTools?: string | undefined; category?: string | undefined; tags?: Array<string> | undefined; adapters?: Array<string> | null | undefined; reinjection?: { maxTurns?: number | undefined; } | undefined; projectId?: string | undefined; sessionId?: string | undefined;};