/** * Script Executor Module * Safely executes skill scripts in a sandboxed environment */ import type { ScriptExecutionOptions, ScriptResult } from '../types/index.js'; /** * Execute a script from a skill's scripts directory */ export declare function executeScript(skillPath: string, scriptName: string, args?: string[], options?: ScriptExecutionOptions): Promise; /** * Check if a script is safe to execute * This is a basic check - production systems should use proper sandboxing */ export declare function isScriptSafe(scriptContent: string): { safe: boolean; warnings: string[]; }; /** * List available scripts in a skill */ export declare function listScripts(skillPath: string): Promise; //# sourceMappingURL=executor.d.ts.map