terminal_execute
Execute system commands within an Electron application terminal session programmatically, enabling control and interaction with terminal output for streamlined development and automation tasks.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
command | Yes | ||
sessionId | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"command": {
"type": "string"
},
"sessionId": {
"type": "string"
}
},
"required": [
"command",
"sessionId"
],
"type": "object"
}