TUI app-server

This commit is contained in:
pakrym-oai
2026-02-23 08:31:57 -08:00
parent e8949f4507
commit 10ed8d6a42
116 changed files with 9136 additions and 928 deletions

View File

@@ -364,6 +364,25 @@
}
]
},
"BackgroundEventNotification": {
"properties": {
"message": {
"type": "string"
},
"threadId": {
"type": "string"
},
"turnId": {
"type": "string"
}
},
"required": [
"message",
"threadId",
"turnId"
],
"type": "object"
},
"ByteRange": {
"properties": {
"end": {
@@ -995,6 +1014,139 @@
],
"type": "object"
},
"McpServerStartupCompletedNotification": {
"properties": {
"cancelled": {
"items": {
"type": "string"
},
"type": "array"
},
"failed": {
"items": {
"$ref": "#/definitions/McpServerStartupFailure"
},
"type": "array"
},
"ready": {
"items": {
"type": "string"
},
"type": "array"
},
"threadId": {
"type": "string"
}
},
"required": [
"cancelled",
"failed",
"ready",
"threadId"
],
"type": "object"
},
"McpServerStartupFailure": {
"properties": {
"error": {
"type": "string"
},
"server": {
"type": "string"
}
},
"required": [
"error",
"server"
],
"type": "object"
},
"McpServerStartupStatus": {
"oneOf": [
{
"properties": {
"state": {
"enum": [
"starting"
],
"type": "string"
}
},
"required": [
"state"
],
"title": "StartingMcpServerStartupStatus",
"type": "object"
},
{
"properties": {
"state": {
"enum": [
"ready"
],
"type": "string"
}
},
"required": [
"state"
],
"title": "ReadyMcpServerStartupStatus",
"type": "object"
},
{
"properties": {
"error": {
"type": "string"
},
"state": {
"enum": [
"failed"
],
"type": "string"
}
},
"required": [
"error",
"state"
],
"type": "object"
},
{
"properties": {
"state": {
"enum": [
"cancelled"
],
"type": "string"
}
},
"required": [
"state"
],
"title": "CancelledMcpServerStartupStatus",
"type": "object"
}
]
},
"McpServerStartupUpdatedNotification": {
"properties": {
"server": {
"type": "string"
},
"status": {
"$ref": "#/definitions/McpServerStartupStatus"
},
"threadId": {
"type": "string"
}
},
"required": [
"server",
"status",
"threadId"
],
"type": "object"
},
"McpToolCallError": {
"properties": {
"message": {
@@ -1397,6 +1549,36 @@
}
]
},
"SkillsUpdatedNotification": {
"properties": {
"threadId": {
"type": "string"
}
},
"required": [
"threadId"
],
"type": "object"
},
"StreamErrorNotification": {
"properties": {
"error": {
"$ref": "#/definitions/TurnError"
},
"threadId": {
"type": "string"
},
"turnId": {
"type": "string"
}
},
"required": [
"error",
"threadId",
"turnId"
],
"type": "object"
},
"SubAgentSource": {
"oneOf": [
{
@@ -2177,6 +2359,17 @@
],
"type": "object"
},
"ThreadShutdownCompletedNotification": {
"properties": {
"threadId": {
"type": "string"
}
},
"required": [
"threadId"
],
"type": "object"
},
"ThreadStartedNotification": {
"properties": {
"thread": {
@@ -2330,6 +2523,52 @@
],
"type": "object"
},
"ThreadUndoCompletedNotification": {
"properties": {
"message": {
"type": [
"string",
"null"
]
},
"success": {
"type": "boolean"
},
"threadId": {
"type": "string"
},
"turnId": {
"type": "string"
}
},
"required": [
"success",
"threadId",
"turnId"
],
"type": "object"
},
"ThreadUndoStartedNotification": {
"properties": {
"message": {
"type": [
"string",
"null"
]
},
"threadId": {
"type": "string"
},
"turnId": {
"type": "string"
}
},
"required": [
"threadId",
"turnId"
],
"type": "object"
},
"TokenUsageBreakdown": {
"properties": {
"cachedInputTokens": {
@@ -2654,6 +2893,25 @@
}
]
},
"WarningNotification": {
"properties": {
"message": {
"type": "string"
},
"threadId": {
"type": "string"
},
"turnId": {
"type": "string"
}
},
"required": [
"message",
"threadId",
"turnId"
],
"type": "object"
},
"WebSearchAction": {
"oneOf": [
{
@@ -2831,6 +3089,26 @@
"title": "ErrorNotification",
"type": "object"
},
{
"properties": {
"method": {
"enum": [
"warning"
],
"title": "WarningNotificationMethod",
"type": "string"
},
"params": {
"$ref": "#/definitions/WarningNotification"
}
},
"required": [
"method",
"params"
],
"title": "WarningNotification",
"type": "object"
},
{
"properties": {
"method": {
@@ -2951,6 +3229,66 @@
"title": "Thread/tokenUsage/updatedNotification",
"type": "object"
},
{
"properties": {
"method": {
"enum": [
"thread/shutdown/completed"
],
"title": "Thread/shutdown/completedNotificationMethod",
"type": "string"
},
"params": {
"$ref": "#/definitions/ThreadShutdownCompletedNotification"
}
},
"required": [
"method",
"params"
],
"title": "Thread/shutdown/completedNotification",
"type": "object"
},
{
"properties": {
"method": {
"enum": [
"thread/undo/started"
],
"title": "Thread/undo/startedNotificationMethod",
"type": "string"
},
"params": {
"$ref": "#/definitions/ThreadUndoStartedNotification"
}
},
"required": [
"method",
"params"
],
"title": "Thread/undo/startedNotification",
"type": "object"
},
{
"properties": {
"method": {
"enum": [
"thread/undo/completed"
],
"title": "Thread/undo/completedNotificationMethod",
"type": "string"
},
"params": {
"$ref": "#/definitions/ThreadUndoCompletedNotification"
}
},
"required": [
"method",
"params"
],
"title": "Thread/undo/completedNotification",
"type": "object"
},
{
"properties": {
"method": {
@@ -2991,6 +3329,26 @@
"title": "Turn/completedNotification",
"type": "object"
},
{
"properties": {
"method": {
"enum": [
"turn/streamError"
],
"title": "Turn/streamErrorNotificationMethod",
"type": "string"
},
"params": {
"$ref": "#/definitions/StreamErrorNotification"
}
},
"required": [
"method",
"params"
],
"title": "Turn/streamErrorNotification",
"type": "object"
},
{
"properties": {
"method": {
@@ -3192,6 +3550,46 @@
"title": "Item/mcpToolCall/progressNotification",
"type": "object"
},
{
"properties": {
"method": {
"enum": [
"mcpServer/startup/updated"
],
"title": "McpServer/startup/updatedNotificationMethod",
"type": "string"
},
"params": {
"$ref": "#/definitions/McpServerStartupUpdatedNotification"
}
},
"required": [
"method",
"params"
],
"title": "McpServer/startup/updatedNotification",
"type": "object"
},
{
"properties": {
"method": {
"enum": [
"mcpServer/startup/completed"
],
"title": "McpServer/startup/completedNotificationMethod",
"type": "string"
},
"params": {
"$ref": "#/definitions/McpServerStartupCompletedNotification"
}
},
"required": [
"method",
"params"
],
"title": "McpServer/startup/completedNotification",
"type": "object"
},
{
"properties": {
"method": {
@@ -3212,6 +3610,26 @@
"title": "McpServer/oauthLogin/completedNotification",
"type": "object"
},
{
"properties": {
"method": {
"enum": [
"skills/updated"
],
"title": "Skills/updatedNotificationMethod",
"type": "string"
},
"params": {
"$ref": "#/definitions/SkillsUpdatedNotification"
}
},
"required": [
"method",
"params"
],
"title": "Skills/updatedNotification",
"type": "object"
},
{
"properties": {
"method": {
@@ -3393,6 +3811,26 @@
"title": "DeprecationNoticeNotification",
"type": "object"
},
{
"properties": {
"method": {
"enum": [
"backgroundEvent"
],
"title": "BackgroundEventNotificationMethod",
"type": "string"
},
"params": {
"$ref": "#/definitions/BackgroundEventNotification"
}
},
"required": [
"method",
"params"
],
"title": "BackgroundEventNotification",
"type": "object"
},
{
"properties": {
"method": {