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

@@ -2881,6 +2881,21 @@
],
"type": "object"
},
"ThreadShellCommandParams": {
"properties": {
"command": {
"type": "string"
},
"threadId": {
"type": "string"
}
},
"required": [
"command",
"threadId"
],
"type": "object"
},
"ThreadSortKey": {
"enum": [
"created_at",
@@ -3587,6 +3602,30 @@
"title": "Thread/compact/startRequest",
"type": "object"
},
{
"properties": {
"id": {
"$ref": "#/definitions/RequestId"
},
"method": {
"enum": [
"thread/shellCommand"
],
"title": "Thread/shellCommandRequestMethod",
"type": "string"
},
"params": {
"$ref": "#/definitions/ThreadShellCommandParams"
}
},
"required": [
"id",
"method",
"params"
],
"title": "Thread/shellCommandRequest",
"type": "object"
},
{
"properties": {
"id": {