feat: surface codex thread collaboration capabilities
This commit is contained in:
@@ -13521,6 +13521,32 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"InitializeCapabilities": {
|
||||
"description": "Client-declared capabilities negotiated during initialize.",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"experimentalApi": {
|
||||
"description": "Opt into receiving experimental API methods and fields.",
|
||||
"default": false,
|
||||
"type": "boolean"
|
||||
},
|
||||
"optOutNotificationMethods": {
|
||||
"description": "Exact notification method names that should be suppressed for this connection (for example `thread/started`).",
|
||||
"type": [
|
||||
"array",
|
||||
"null"
|
||||
],
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"requestAttestation": {
|
||||
"description": "Opt into `attestation/generate` requests for upstream `x-oai-attestation`.",
|
||||
"default": false,
|
||||
"type": "boolean"
|
||||
}
|
||||
}
|
||||
},
|
||||
"FuzzyFileSearchSessionUpdatedNotification": {
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"title": "FuzzyFileSearchSessionUpdatedNotification",
|
||||
@@ -13545,6 +13571,73 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"FuzzyFileSearchMatchType": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"file",
|
||||
"directory"
|
||||
]
|
||||
},
|
||||
"FuzzyFileSearchParams": {
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"title": "FuzzyFileSearchParams",
|
||||
"type": "object",
|
||||
"required": [
|
||||
"query",
|
||||
"roots"
|
||||
],
|
||||
"properties": {
|
||||
"cancellationToken": {
|
||||
"type": [
|
||||
"string",
|
||||
"null"
|
||||
]
|
||||
},
|
||||
"query": {
|
||||
"type": "string"
|
||||
},
|
||||
"roots": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"FuzzyFileSearchSessionCompletedNotification": {
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"title": "FuzzyFileSearchSessionCompletedNotification",
|
||||
"type": "object",
|
||||
"required": [
|
||||
"sessionId"
|
||||
],
|
||||
"properties": {
|
||||
"sessionId": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ClientInfo": {
|
||||
"type": "object",
|
||||
"required": [
|
||||
"name",
|
||||
"version"
|
||||
],
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"title": {
|
||||
"type": [
|
||||
"string",
|
||||
"null"
|
||||
]
|
||||
},
|
||||
"version": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"InitializeParams": {
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"title": "InitializeParams",
|
||||
@@ -13609,99 +13702,6 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"FuzzyFileSearchMatchType": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"file",
|
||||
"directory"
|
||||
]
|
||||
},
|
||||
"InitializeCapabilities": {
|
||||
"description": "Client-declared capabilities negotiated during initialize.",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"experimentalApi": {
|
||||
"description": "Opt into receiving experimental API methods and fields.",
|
||||
"default": false,
|
||||
"type": "boolean"
|
||||
},
|
||||
"optOutNotificationMethods": {
|
||||
"description": "Exact notification method names that should be suppressed for this connection (for example `thread/started`).",
|
||||
"type": [
|
||||
"array",
|
||||
"null"
|
||||
],
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"requestAttestation": {
|
||||
"description": "Opt into `attestation/generate` requests for upstream `x-oai-attestation`.",
|
||||
"default": false,
|
||||
"type": "boolean"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ClientInfo": {
|
||||
"type": "object",
|
||||
"required": [
|
||||
"name",
|
||||
"version"
|
||||
],
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"title": {
|
||||
"type": [
|
||||
"string",
|
||||
"null"
|
||||
]
|
||||
},
|
||||
"version": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"FuzzyFileSearchSessionCompletedNotification": {
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"title": "FuzzyFileSearchSessionCompletedNotification",
|
||||
"type": "object",
|
||||
"required": [
|
||||
"sessionId"
|
||||
],
|
||||
"properties": {
|
||||
"sessionId": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"FuzzyFileSearchParams": {
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"title": "FuzzyFileSearchParams",
|
||||
"type": "object",
|
||||
"required": [
|
||||
"query",
|
||||
"roots"
|
||||
],
|
||||
"properties": {
|
||||
"cancellationToken": {
|
||||
"type": [
|
||||
"string",
|
||||
"null"
|
||||
]
|
||||
},
|
||||
"query": {
|
||||
"type": "string"
|
||||
},
|
||||
"roots": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"ClientRequest": {
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"title": "ClientRequest",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"generatedAt": "2026-06-03T04:31:48.629Z",
|
||||
"generatedAt": "2026-06-04T06:31:54.080Z",
|
||||
"codexVersion": "0.136.0-alpha.2",
|
||||
"codexVersionRaw": "codex-cli 0.136.0-alpha.2",
|
||||
"codexBin": "codex",
|
||||
@@ -15,6 +15,8 @@
|
||||
"account/read",
|
||||
"account/sendAddCreditsNudgeEmail",
|
||||
"account/updated",
|
||||
"app/list",
|
||||
"app/list/updated",
|
||||
"command/exec",
|
||||
"command/exec/outputDelta",
|
||||
"command/exec/resize",
|
||||
@@ -24,11 +26,13 @@
|
||||
"config/mcpServer/reload",
|
||||
"config/read",
|
||||
"config/value/write",
|
||||
"configRequirements/read",
|
||||
"experimentalFeature/enablement/set",
|
||||
"experimentalFeature/list",
|
||||
"externalAgentConfig/detect",
|
||||
"externalAgentConfig/import",
|
||||
"externalAgentConfig/import/completed",
|
||||
"feedback/upload",
|
||||
"fs/changed",
|
||||
"fs/copy",
|
||||
"fs/createDirectory",
|
||||
@@ -39,9 +43,15 @@
|
||||
"fs/unwatch",
|
||||
"fs/watch",
|
||||
"fs/writeFile",
|
||||
"fuzzyFileSearch",
|
||||
"fuzzyFileSearch/sessionCompleted",
|
||||
"fuzzyFileSearch/sessionUpdated",
|
||||
"getAuthStatus",
|
||||
"getConversationSummary",
|
||||
"gitDiffToRemote",
|
||||
"hooks/list",
|
||||
"initialize",
|
||||
"initialized",
|
||||
"item/agentMessage/delta",
|
||||
"item/autoApprovalReview/completed",
|
||||
"item/autoApprovalReview/started",
|
||||
@@ -70,6 +80,7 @@
|
||||
"mcpServer/resource/read",
|
||||
"mcpServer/startupStatus/updated",
|
||||
"mcpServer/tool/call",
|
||||
"mcpServerStatus/list",
|
||||
"model/list",
|
||||
"model/rerouted",
|
||||
"model/verification",
|
||||
@@ -91,6 +102,7 @@
|
||||
"rawResponseItem/completed",
|
||||
"remoteControl/status/changed",
|
||||
"review/start",
|
||||
"serverRequest/resolved",
|
||||
"skills/changed",
|
||||
"skills/config/write",
|
||||
"skills/extraRoots/set",
|
||||
@@ -140,15 +152,38 @@
|
||||
"turn/start",
|
||||
"turn/started",
|
||||
"turn/steer",
|
||||
"windows/worldWritableWarning",
|
||||
"windowsSandbox/readiness",
|
||||
"windowsSandbox/setupCompleted",
|
||||
"windowsSandbox/setupStart"
|
||||
],
|
||||
"itemTypes": [
|
||||
"agentMessage",
|
||||
"commandExecution",
|
||||
"contextCompaction",
|
||||
"dynamicToolCall",
|
||||
"enteredReviewMode",
|
||||
"exitedReviewMode",
|
||||
"fileChange",
|
||||
"imageGeneration",
|
||||
"imageView",
|
||||
"mcpToolCall",
|
||||
"plan",
|
||||
"reasoning",
|
||||
"userMessage",
|
||||
"webSearch"
|
||||
],
|
||||
"supports": {
|
||||
"stdioTransport": true,
|
||||
"unixTransport": true,
|
||||
"wsTransport": true,
|
||||
"wsAuth": true,
|
||||
"threadStart": true,
|
||||
"threadResume": true,
|
||||
"threadRead": true,
|
||||
"threadList": true,
|
||||
"threadLoadedList": true,
|
||||
"threadTurnHistory": false,
|
||||
"threadInjectItems": true,
|
||||
"threadRollback": true,
|
||||
"threadArchive": true,
|
||||
@@ -165,6 +200,11 @@
|
||||
"commandExec": true,
|
||||
"realtimeThread": true,
|
||||
"modelList": true,
|
||||
"appList": true,
|
||||
"appListUpdated": true,
|
||||
"collaborationModeList": false,
|
||||
"configRequirementsRead": true,
|
||||
"mcpServerStatusList": true,
|
||||
"skillsExtraRoots": true,
|
||||
"hooksList": true,
|
||||
"pluginInstall": true,
|
||||
@@ -213,6 +253,8 @@
|
||||
"mcpToolProgress": true,
|
||||
"commandOutputDeltas": true,
|
||||
"terminalInteraction": true,
|
||||
"fileChangeOutputDelta": true
|
||||
"fileChangeOutputDelta": true,
|
||||
"threadCollaborationItems": false,
|
||||
"contextCompactionItem": true
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user