execute_command
Executes terminal commands on your computer with a specified timeout, allowing commands to run in the background if not completed within the set time.
Instructions
Execute a terminal command with timeout. Command will continue running in background if it doesn't complete within timeout.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
command | Yes | ||
timeout_ms | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"command": {
"type": "string"
},
"timeout_ms": {
"type": "number"
}
},
"required": [
"command"
],
"type": "object"
}