agent-afk 5.101.1 → 5.102.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,2 @@
1
+ export declare function tokenizeArgs(args: string): string[];
2
+ export declare function substituteSkillArgs(body: string, args: string | undefined): string;
@@ -8,4 +8,4 @@ export declare function executeLoadedRegistrySkill(internals: SkillExecutorInter
8
8
  loadBody?: string;
9
9
  }, args: string | undefined, call: ToolCall): ToolResult;
10
10
  export declare function executeLoadedPluginSkill(internals: SkillExecutorInternals, skillName: string, body: string, args: string | undefined, call: ToolCall): ToolResult;
11
- export declare function substituteSkillArgs(body: string, args: string | undefined): string;
11
+ export { substituteSkillArgs, tokenizeArgs } from './arg-substitution.js';