/** * bhived_run_script Tool * * Executes a script from an activated skill in a sandboxed subprocess. * Scripts are admin-curated — agents never upload their own scripts. * * Runtime detection: * .py → python3 (or python on Windows) * .js → node * .ts → npx tsx * .sh → bash (Git Bash on Windows, /bin/bash on Unix) * * Cross-platform: Windows (Git Bash / WSL), Linux, macOS */ import type { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; export declare function registerRunScriptTool(server: McpServer): void; //# sourceMappingURL=runScript.d.ts.map