Install
openclaw skills install local-task-runnerExecutes Node.js code snippets or scripts locally with isolation, cleanup, and timeout, serving as a lightweight alternative to spawning subagents.
openclaw skills install local-task-runnerThis skill provides a mechanism to execute Node.js code snippets or full scripts locally on the host machine. It is the default execution method when subagent spawning is unavailable or inefficient.
write + exec + rm).When you need to perform a calculation, check system status, or run a utility script:
run_task (or execute via CLI) with the code.# Execute a task
node skills/local-task-runner/index.js run --code "console.log('Hello World')"
# Execute with timeout (ms)
node skills/local-task-runner/index.js run --code "while(true){}" --timeout 5000
Success:
[TASK: <id>] Completed in 123ms
--- STDOUT ---
...
Error:
[TASK: <id>] Failed in 123ms
Error: ...
--- STDERR ---
...