File size: 277 Bytes
0dbc9de | 1 2 3 4 5 6 7 8 9 10 11 12 | import type { SkillV2Source } from "@opencode-ai/sdk/v2/types"
import type { Hooks } from "./registration.js"
export interface SkillDraft {
source(source: SkillV2Source): void
list(): readonly SkillV2Source[]
}
export type SkillHooks = Hooks<{
transform: SkillDraft
}>
|