import type { ToolContext, ToolExecutionResult } from "../types.js"; /** The exported interface a skill tool script must implement. */ export interface SkillToolScript { run( input: Record, context: ToolContext, ): Promise; }