feat(codex): implement /btw /async slash command path

This commit is contained in:
starr-openai
2026-04-13 16:14:00 -07:00
parent 6c36e7d688
commit b7749c93b0
21 changed files with 1192 additions and 1 deletions

View File

@@ -482,6 +482,30 @@
"title": "Thread/shellCommandRequest",
"type": "object"
},
{
"properties": {
"id": {
"$ref": "#/definitions/v2/RequestId"
},
"method": {
"enum": [
"thread/asyncTask/start"
],
"title": "Thread/asyncTask/startRequestMethod",
"type": "string"
},
"params": {
"$ref": "#/definitions/v2/ThreadAsyncTaskStartParams"
}
},
"required": [
"id",
"method",
"params"
],
"title": "Thread/asyncTask/startRequest",
"type": "object"
},
{
"properties": {
"id": {
@@ -12448,6 +12472,35 @@
"title": "ThreadArchivedNotification",
"type": "object"
},
"ThreadAsyncTaskStartParams": {
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"input": {
"items": {
"$ref": "#/definitions/v2/UserInput"
},
"type": "array"
},
"taskId": {
"type": "string"
},
"threadId": {
"type": "string"
}
},
"required": [
"input",
"taskId",
"threadId"
],
"title": "ThreadAsyncTaskStartParams",
"type": "object"
},
"ThreadAsyncTaskStartResponse": {
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "ThreadAsyncTaskStartResponse",
"type": "object"
},
"ThreadClosedNotification": {
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {