read_output
Retrieve new output from a terminal session using the specified process ID (PID). Enables monitoring of active command execution in real time.
Instructions
Read new output from a running terminal session.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pid | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"pid": {
"type": "number"
}
},
"required": [
"pid"
],
"type": "object"
}