/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { SkillTypeEnum } from './SkillTypeEnum'; export type PatchedAgentSkill = { readonly id?: number; readonly unique_id?: string; name?: string; slug?: string; description?: string; version?: string; skill_type?: SkillTypeEnum; /** * Grouping for the catalog UI: web, code, browser, data, etc. */ category?: string; /** * Provenance for seeded/imported skills (e.g. iblai-claw-agents/higher-education/skills/canvas). */ source?: string; /** * Featured skills on the 'main' platform are visible to all tenants. */ is_featured?: boolean; mentor?: string | null; /** * SKILL.md body — the agent runbook for this skill. */ instruction?: string; /** * SKILL.md frontmatter (requires, primaryEnv, emoji, etc.). */ metadata?: any; enabled?: boolean; readonly platform_key?: string; readonly created_at?: string; readonly updated_at?: string; };