terminal_launch
Initiate a new terminal session with customizable command, width, and height settings through a virtual X11 display, enabling AI agents to interact with terminal-based applications efficiently.
Instructions
Launch a new terminal session with virtual X11 display
Args: command: Command to run in terminal (default: bash) width: Terminal width in characters (default: 80) height: Terminal height in characters (default: 24)
Returns: Dictionary with session_id and status
Input Schema
Name | Required | Description | Default |
---|---|---|---|
command | No | bash | |
height | No | ||
width | No |
Input Schema (JSON Schema)
{
"properties": {
"command": {
"default": "bash",
"title": "Command",
"type": "string"
},
"height": {
"default": 24,
"title": "Height",
"type": "integer"
},
"width": {
"default": 80,
"title": "Width",
"type": "integer"
}
},
"type": "object"
}