import type { SkillId } from "./SkillId"; export type SkillUpdate = { id: SkillId; /** * The title of the skill, describing the task type. */ title?: string; /** * User-defined instructions for performing this skill in markdown format. */ promptMarkdown?: string; };