Documentation / @agentick/core / SubstituteOptions
Interface: SubstituteOptions
Defined in: core/src/skill/substitute.ts:23
Properties
args?
optionalargs:unknown
Defined in: core/src/skill/substitute.ts:32
The argument value. May be:
- an object — keys become available as
$name, values (inargumentNamesorder, or insertion order) as$N/$ARGUMENTS[N] - a string — used directly as
$ARGUMENTS;$Nindexed via shell-style tokenization (whitespace + quotes) - undefined — substitutions resolve to empty string
argumentNames?
optionalargumentNames:string[]
Defined in: core/src/skill/substitute.ts:39
Declared argument names (from the arguments frontmatter field). When present, drives the order for $N access on object args, and the set of valid $name keys.
vars?
optionalvars:Record<string,string>
Defined in: core/src/skill/substitute.ts:44
Environment-style variables for ${VAR} substitution.