Interface: SkillFromMarkdownOptions
Defined in: packages/core/src/skill.ts:86
Options for skillFromMarkdown.
Properties
description?
optionaldescription?:string
Defined in: packages/core/src/skill.ts:98
Override the description parsed from frontmatter.
keywords?
optionalkeywords?:string[]
Defined in: packages/core/src/skill.ts:92
Keywords for deterministic triggering. The Anthropic SKILL.md format has
no keyword field (it relies on semantic description matching), so an
imported skill is reachable only via load_skill unless you supply these.
name?
optionalname?:string
Defined in: packages/core/src/skill.ts:96
Override the name parsed from frontmatter.
tools?
optionaltools?:Record<string,ZodToolDefinition<any,any>> |ZodToolDefinition<any,any>[]
Defined in: packages/core/src/skill.ts:94
Tools to bundle. SKILL.md bundled scripts are NOT auto-imported — pass tools explicitly.