feat: expose codex review sandbox search governance

This commit is contained in:
AI Bot
2026-06-03 12:03:36 +08:00
parent ca64a4c498
commit afeb352fe3
12 changed files with 148 additions and 7 deletions

View File

@@ -86,6 +86,12 @@ if (args[0] === "app-server" && args[1] === "generate-json-schema") {
{ properties: { method: { const: "marketplace/upgrade" } } },
{ properties: { method: { const: "experimentalFeature/list" } } },
{ properties: { method: { const: "experimentalFeature/enablement/set" } } },
{ properties: { method: { const: "review/start" } } },
{ properties: { method: { const: "windowsSandbox/readiness" } } },
{ properties: { method: { const: "windowsSandbox/setupStart" } } },
{ properties: { method: { const: "windowsSandbox/setupCompleted" } } },
{ properties: { method: { const: "fuzzyFileSearch/sessionUpdated" } } },
{ properties: { method: { const: "fuzzyFileSearch/sessionCompleted" } } },
{ properties: { method: { const: "skills/extraRoots/set" } } },
{ properties: { method: { const: "hooks/list" } } },
{ properties: { method: { const: "turn/interrupt" } } },
@@ -165,6 +171,10 @@ process.exit(2);
assert.equal(manifest.supports.marketplaceRemove, true);
assert.equal(manifest.supports.marketplaceUpgrade, true);
assert.equal(manifest.supports.experimentalFeatureEnablementSet, true);
assert.equal(manifest.supports.reviewStart, true);
assert.equal(manifest.supports.windowsSandboxReadiness, true);
assert.equal(manifest.supports.windowsSandboxSetupStart, true);
assert.equal(manifest.supports.fuzzyFileSearchEvents, true);
assert.deepEqual(manifest.methods, [
"account/chatgptAuthTokens/refresh",
"account/login/cancel",
@@ -193,6 +203,8 @@ process.exit(2);
"fs/unwatch",
"fs/watch",
"fs/writeFile",
"fuzzyFileSearch/sessionCompleted",
"fuzzyFileSearch/sessionUpdated",
"hooks/list",
"marketplace/add",
"marketplace/remove",
@@ -206,6 +218,7 @@ process.exit(2);
"plugin/share/updateTargets",
"plugin/skill/read",
"plugin/uninstall",
"review/start",
"skills/config/write",
"skills/extraRoots/set",
"thread/archive",
@@ -221,6 +234,9 @@ process.exit(2);
"thread/unsubscribe",
"turn/interrupt",
"turn/start",
"windowsSandbox/readiness",
"windowsSandbox/setupCompleted",
"windowsSandbox/setupStart",
]);
assert.match(
await readFile(path.join(outDir, "0.135.0-alpha.1", "app-server-help.txt"), "utf8"),