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

@@ -2549,6 +2549,28 @@
],
"type": "object"
},
"ThreadAsyncTaskStartParams": {
"properties": {
"input": {
"items": {
"$ref": "#/definitions/UserInput"
},
"type": "array"
},
"taskId": {
"type": "string"
},
"threadId": {
"type": "string"
}
},
"required": [
"input",
"taskId",
"threadId"
],
"type": "object"
},
"ThreadCompactStartParams": {
"properties": {
"threadId": {
@@ -3743,6 +3765,30 @@
"title": "Thread/shellCommandRequest",
"type": "object"
},
{
"properties": {
"id": {
"$ref": "#/definitions/RequestId"
},
"method": {
"enum": [
"thread/asyncTask/start"
],
"title": "Thread/asyncTask/startRequestMethod",
"type": "string"
},
"params": {
"$ref": "#/definitions/ThreadAsyncTaskStartParams"
}
},
"required": [
"id",
"method",
"params"
],
"title": "Thread/asyncTask/startRequest",
"type": "object"
},
{
"properties": {
"id": {