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

@@ -0,0 +1,17 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"command": {
"type": "string"
},
"threadId": {
"type": "string"
}
},
"required": [
"command",
"threadId"
],
"title": "ThreadShellCommandParams",
"type": "object"
}