Read pane output; accepts no client-supplied executable input. Returned content may be sensitive or untrusted. Returns pane output produced after a cursor.
All Go tools · JSON · Source
Arguments
cursoroptional · string- a cursor returned by an earlier capture
max_linesoptional · integer- maximum new lines, keeping the newest
pane_idrequired · string- the pane id, such as %1
Schemas
The schema defines required fields, nested values, defaults, and validation constraints.
Input schema
{ "additionalProperties": false, "properties": { "cursor": { "description": "a cursor returned by an earlier capture", "type": "string" }, "max_lines": { "description": "maximum new lines, keeping the newest", "type": "integer" }, "pane_id": { "description": "the pane id, such as %1", "type": "string" } }, "required": [ "pane_id" ], "type": "object"}Output schema
{ "additionalProperties": false, "properties": { "cursor": { "type": "string" }, "lines": { "items": { "type": "string" }, "type": [ "array" ] }, "linesMissed": { "type": "boolean" }, "paneId": { "type": "string" }, "truncated": { "type": "boolean" }, "truncatedBytes": { "type": "integer" }, "truncatedLines": { "type": "integer" } }, "required": [ "paneId", "cursor", "lines", "linesMissed", "truncated" ], "type": "object"}Tool annotations
{ "destructiveHint": true, "openWorldHint": true, "title": "Capture new pane output"}