Skip to content

Documentation / @agentick/core / LoadSkillOptions

Interface: LoadSkillOptions<TInput>

Defined in: core/src/skill/loader.ts:49

Type Parameters

TInput

TInput = unknown

Properties

input?

optional input: ZodSchema<TInput>

Defined in: core/src/skill/loader.ts:55

Optional Zod schema for the skill's args. When provided, args are validated at invocation time. Files don't carry typed schemas; pass one here to opt into validation for a particular caller.


name?

optional name: string

Defined in: core/src/skill/loader.ts:61

Override the skill's name. Resolution order: opts.name → frontmatter name → directory name (for folder loads) → filename (for .md loads).

Released under the ISC License.