agent-afk 5.101.0 → 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.
@@ -1,5 +1,6 @@
1
1
  import type { ClaudeModel } from './types.js';
2
2
  export declare const MODEL_MAX_OUTPUT_TOKENS: Record<string, number>;
3
+ export declare function maxOutputTokensForKnown(model: ClaudeModel | string): number | undefined;
3
4
  export declare function maxOutputTokensFor(model: ClaudeModel | string): number;
4
5
  export declare const MODEL_CONTEXT_LIMITS: Record<string, number>;
5
6
  export declare function contextLimitFor(model: ClaudeModel | string): number;
@@ -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';