惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Y
Y Combinator Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
V2EX
博客园 - 三生石上(FineUI控件)
Hugging Face - Blog
Hugging Face - Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
罗磊的独立博客
博客园_首页
量子位
雷峰网
雷峰网
GbyAI
GbyAI
小众软件
小众软件
酷 壳 – CoolShell
酷 壳 – CoolShell
D
DataBreaches.Net
H
Hackread – Cybersecurity News, Data Breaches, AI and More
The Cloudflare Blog
IT之家
IT之家
WordPress大学
WordPress大学
人人都是产品经理
人人都是产品经理
Apple Machine Learning Research
Apple Machine Learning Research
P
Proofpoint News Feed
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 聂微东

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
feat(codex): add portable Codex command pickers (#82224) ...
yaanfpv · 2026-05-31 · via Recent Commits to openclaw:main
11

import crypto from "node:crypto";

22

import { resolveAgentDir, resolveSessionAgentIds } from "openclaw/plugin-sdk/agent-runtime";

3+

import type { MessagePresentation } from "openclaw/plugin-sdk/interactive-runtime";

34

import { parseStrictPositiveInteger } from "openclaw/plugin-sdk/number-runtime";

45

import type { PluginCommandContext, PluginCommandResult } from "openclaw/plugin-sdk/plugin-entry";

56

import { normalizeOptionalString } from "openclaw/plugin-sdk/string-coerce-runtime";

@@ -240,12 +241,144 @@ export function resetCodexDiagnosticsFeedbackStateForTests(): void {

240241

pendingCodexDiagnosticsConfirmationTokensByScope.clear();

241242

}

242243244+

type CodexPickerButton = { label: string; command: string };

245+246+

function buildPickerPresentation(title: string, prompt: string, buttons: CodexPickerButton[]) {

247+

return {

248+

title,

249+

blocks: [

250+

{ type: "text", text: prompt },

251+

{

252+

type: "buttons",

253+

buttons: buttons.map((button) => ({

254+

label: button.label,

255+

value: button.command,

256+

})),

257+

},

258+

],

259+

} satisfies MessagePresentation;

260+

}

261+262+

/**

263+

* No-arg `/codex` picker. Core owns the native command tree; channels render

264+

* the portable buttons as inline controls when their transport can.

265+

*/

266+

function buildCodexSubcommandPickerReply(): PluginCommandResult {

267+

const verbs: CodexPickerButton[] = [

268+

{ label: "plugins", command: "/codex plugins menu" },

269+

{ label: "permissions", command: "/codex permissions menu" },

270+

{ label: "fast", command: "/codex fast menu" },

271+

{ label: "computer-use", command: "/codex computer-use menu" },

272+

{ label: "account", command: "/codex account" },

273+

{ label: "help", command: "/codex help" },

274+

];

275+276+

const fallbackTextLines = [

277+

"Codex commands. Pick a category or type:",

278+

"",

279+

...verbs.map((v, i) => ` ${i + 1}. ${v.command}`),

280+

"",

281+

"Tap 'help' (or type /codex help) for the full list of typeable verbs",

282+

"including threads, mcp, binding, detach, skills, resume, bind, steer,",

283+

"model, diagnostics, compact, review, computer-use.",

284+

"",

285+

"Top-level shortcuts cover everyday operations: /status, /fast, /help, /stop, /models.",

286+

];

287+288+

return {

289+

text: fallbackTextLines.join("\n"),

290+

presentation: buildPickerPresentation("Codex commands", "Pick a Codex subcommand:", verbs),

291+

};

292+

}

293+294+

/** Sub-picker for `/codex fast menu` (on / off / status). */

295+

function buildCodexFastMenuReply(): PluginCommandResult {

296+

const modes = ["on", "off", "status"] as const;

297+

const buttons: CodexPickerButton[] = [

298+

...modes.map((mode) => ({ label: mode, command: `/codex fast ${mode}` })),

299+

{ label: "back", command: "/codex" },

300+

];

301+

const fallbackTextLines = [

302+

"Codex fast mode. Pick one or type /codex fast <mode>:",

303+

"",

304+

...modes.map((m, i) => ` ${i + 1}. /codex fast ${m}`),

305+

"",

306+

"Type '/codex' to go back to the main menu.",

307+

];

308+

return {

309+

text: fallbackTextLines.join("\n"),

310+

presentation: buildPickerPresentation("Codex fast mode", "Pick a Codex fast mode:", buttons),

311+

};

312+

}

313+314+

/** Sub-picker for `/codex permissions menu` (default / yolo / status). */

315+

function buildCodexPermissionsMenuReply(): PluginCommandResult {

316+

const modes = ["default", "yolo", "status"] as const;

317+

const buttons: CodexPickerButton[] = [

318+

...modes.map((mode) => ({ label: mode, command: `/codex permissions ${mode}` })),

319+

{ label: "back", command: "/codex" },

320+

];

321+

const fallbackTextLines = [

322+

"Codex permissions. Pick one or type /codex permissions <mode>:",

323+

"",

324+

...modes.map((m, i) => ` ${i + 1}. /codex permissions ${m}`),

325+

"",

326+

"Type '/codex' to go back to the main menu.",

327+

];

328+

return {

329+

text: fallbackTextLines.join("\n"),

330+

presentation: buildPickerPresentation(

331+

"Codex permissions",

332+

"Pick a Codex permissions mode:",

333+

buttons,

334+

),

335+

};

336+

}

337+338+

/** Sub-picker for `/codex computer-use menu` (status / install). */

339+

function buildCodexComputerUseMenuReply(): PluginCommandResult {

340+

const actions = ["status", "install"] as const;

341+

const buttons: CodexPickerButton[] = [

342+

...actions.map((action) => ({

343+

label: action,

344+

command: `/codex computer-use ${action}`,

345+

})),

346+

{ label: "back", command: "/codex" },

347+

];

348+

const fallbackTextLines = [

349+

"Codex computer-use. Pick one or type /codex computer-use <action>:",

350+

"",

351+

...actions.map((a, i) => ` ${i + 1}. /codex computer-use ${a}`),

352+

"",

353+

"Flag-driven invocations (--source, --marketplace-path, --marketplace) are not in the picker. Type '/codex computer-use' or read '/codex help' for the full surface.",

354+

"",

355+

"Type '/codex' to go back to the main menu.",

356+

];

357+

return {

358+

text: fallbackTextLines.join("\n"),

359+

presentation: buildPickerPresentation(

360+

"Codex computer-use",

361+

"Pick a Codex computer-use action:",

362+

buttons,

363+

),

364+

};

365+

}

366+367+

/** Returns true when the rest-args are exactly `["menu"]` (case-insensitive). */

368+

function isMenuVerb(rest: readonly string[]): boolean {

369+

return rest.length === 1 && (rest[0] ?? "").trim().toLowerCase() === "menu";

370+

}

371+243372

export async function handleCodexSubcommand(

244373

ctx: PluginCommandContext,

245374

options: { pluginConfig?: unknown; deps?: Partial<CodexCommandDeps> },

246375

): Promise<PluginCommandResult> {

247376

const deps: CodexCommandDeps = { ...defaultCodexCommandDeps, ...options.deps };

248-

const [subcommand = "status", ...rest] = splitArgs(ctx.args);

377+

const args = splitArgs(ctx.args);

378+

if (args.length === 0) {

379+

return buildCodexSubcommandPickerReply();

380+

}

381+

const [subcommand = "status", ...rest] = args;

249382

const normalized = subcommand.toLowerCase();

250383

if (normalized === "help") {

251384

return { text: buildHelp() };

@@ -321,9 +454,15 @@ export async function handleCodexSubcommand(

321454

return { text: await setConversationModel(deps, ctx, options.pluginConfig, rest) };

322455

}

323456

if (normalized === "fast") {

457+

if (isMenuVerb(rest)) {

458+

return buildCodexFastMenuReply();

459+

}

324460

return { text: await setConversationFastMode(deps, ctx, options.pluginConfig, rest) };

325461

}

326462

if (normalized === "permissions") {

463+

if (isMenuVerb(rest)) {

464+

return buildCodexPermissionsMenuReply();

465+

}

327466

return { text: await setConversationPermissions(deps, ctx, options.pluginConfig, rest) };

328467

}

329468

if (normalized === "compact") {

@@ -360,6 +499,9 @@ export async function handleCodexSubcommand(

360499

);

361500

}

362501

if (normalized === "computer-use" || normalized === "computeruse") {

502+

if (isMenuVerb(rest)) {

503+

return buildCodexComputerUseMenuReply();

504+

}

363505

return {

364506

text: await handleComputerUseCommand(deps, options.pluginConfig, rest),

365507

};