Add thread shellCommand support to tui app server

This commit is contained in:
Eric Traut
2026-03-17 14:55:19 -06:00
parent 5cada46ddf
commit eb6a697707
43 changed files with 2633 additions and 311 deletions

View File

@@ -291,6 +291,15 @@
}
]
},
"CommandExecutionSource": {
"enum": [
"agent",
"userShell",
"unifiedExecStartup",
"unifiedExecInteraction"
],
"type": "string"
},
"CommandExecutionStatus": {
"enum": [
"inProgress",
@@ -997,6 +1006,11 @@
"null"
]
},
"formattedOutput": {
"default": "",
"description": "The command's output after applying the model-facing formatter/truncation policy.",
"type": "string"
},
"id": {
"type": "string"
},
@@ -1007,6 +1021,14 @@
"null"
]
},
"source": {
"allOf": [
{
"$ref": "#/definitions/CommandExecutionSource"
}
],
"default": "agent"
},
"status": {
"$ref": "#/definitions/CommandExecutionStatus"
},