Type Alias: SkillRecord
Makaio Framework / contracts / SkillRecord
Type Alias: SkillRecord
Section titled “Type Alias: SkillRecord”SkillRecord =
z.infer<typeofSkillRecordSchema>
Defined in: ../../../packages/contracts/src/skill/schemas.ts:234
Type Composition
Section titled “Type Composition”SkillRecordz.infer<typeof SkillRecordSchema>typeof SkillRecordSchema
Resolved Shape
Section titled “Resolved Shape”type SkillRecord = { name: string; description: string; activationMode: 'auto' | 'manual'; enabled: boolean; id: string; source: 'filesystem' | 'database'; scope: 'session' | 'global' | 'project'; content: string; createdAt: number; updatedAt: number; 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; location?: string | undefined; baseDir?: string | undefined;};