skill_run
Run a declared skill script with an argument array. First call previews the command; a second call with confirm:true executes it and returns the exit code and output, including non-zero results.
Instructions
Execute a script the skill DECLARES as runnable, with an argument array. Returns the exit code and the captured output; a non-zero exit is a normal, reported outcome. Mutating: call it once without confirm to see exactly what would run, then again with confirm: true.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| args | No | Arguments passed as an argv array. There is no shell: nothing here is interpreted. | |
| name | Yes | The skill's name, exactly as skill_list reports it. | |
| script | Yes | The exact script path skill_list reports for this skill. | |
| confirm | No | Must be true to proceed. Without this, the tool returns a preview. |