@leonw24/open-codex 0.131.1 → 0.131.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +4 -4
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -174,9 +174,9 @@ The shared interaction model is:
174
174
  - `Enter` opens details, `x` stops the selected stoppable background item, and `Esc`/`Left` closes the panel.
175
175
  - the status line keeps foreground `Working` state separate from background subagent/terminal counts.
176
176
  - terminal details show runtime and recent output; subagent details show role, task, status, runtime, progress, and task-boundary context.
177
- - `/agent` shows available agent profiles, while `/subagents` keeps the subagent thread picker/switching workflow.
177
+ - `/agent` shows available agent profiles, while `/subagents` opens the subagent thread picker/switching workflow for live, resumable, and closed-but-reviewable threads.
178
178
  - completed subagent work wakes the parent turn through a core completion event, so results can be integrated without manually calling `wait_agent` or closing the agent.
179
- - completed subagents are reclaimed from spawn quota when they reach a final state, and the spawn path performs opportunistic cleanup before reporting that no quota is available. Interrupted subagents remain visible as active quota holders because they may still be resumed; `/subagents` is therefore the active/resumable subagent view, not a stale-handle inventory.
179
+ - completed subagents are reclaimed from spawn quota when they reach a final state, and the spawn path performs opportunistic cleanup before reporting that no quota is available. Interrupted subagents remain active quota holders because they may still be resumed; closed `/subagents` rows are retained for review/switching context and should not be read as proof that spawn quota is still held.
180
180
  - completed background command output is preserved in history without pulling the task back into the foreground.
181
181
 
182
182
  This is the essential interaction change behind the Claude Code-style behavior: background work stays visible and controllable, but it no longer blocks normal chat flow.
@@ -476,9 +476,9 @@ Codex CLI 是开源的,但上游仓库当前对外部代码贡献采用 invita
476
476
  - `Enter` 打开详情,`x` 停止当前选中的 stoppable 后台项,`Esc`/`Left` 关闭 panel。
477
477
  - status line 会把前台 `Working` 状态和后台 subagent/terminal 数量分开显示。
478
478
  - terminal detail 展示运行时间和最近输出;subagent detail 展示 role、task、status、运行时间、progress 和任务边界信息。
479
- - `/agent` 用于查看可用 agent profiles,`/subagents` 保留 subagent thread picker / 切换工作流。
479
+ - `/agent` 用于查看可用 agent profiles,`/subagents` 打开 subagent thread picker / 切换工作流,覆盖 live、resumable、以及 closed-but-reviewable threads。
480
480
  - subagent 完成后会通过 core completion event 唤醒 parent turn,因此不需要手动调用 `wait_agent` 或关闭 agent 才能继续整合结果。
481
- - completed subagent 到达 final state 后会从 spawn quota 中回收;当 spawn 没有可用 quota 时,主线程会先做 opportunistic cleanup 再返回 quota 不足。Interrupted subagent 仍会作为 active quota holder 保留,因为它们可能被 resume;因此 `/subagents` 的语义是 active/resumable subagent view,而不是僵尸 handle 列表。
481
+ - completed subagent 到达 final state 后会从 spawn quota 中回收;当 spawn 没有可用 quota 时,主线程会先做 opportunistic cleanup 再返回 quota 不足。Interrupted subagent 仍会作为 active quota holder 保留,因为它们可能被 resume;closed `/subagents` rows 会保留用于 review / switching context,不应被理解为 spawn quota 仍被占用。
482
482
  - background command 完成后会保留输出到 history,但不会把任务重新拉回前台。
483
483
 
484
484
  这是 Claude Code 风格体验背后的本质交互变化:后台工作仍然可见、可管理,但不会阻塞正常聊天流。
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leonw24/open-codex",
3
- "version": "0.131.1",
3
+ "version": "0.131.2",
4
4
  "license": "Apache-2.0",
5
5
  "bin": {
6
6
  "open-codex": "bin/codex.js"
@@ -19,6 +19,6 @@
19
19
  },
20
20
  "packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319",
21
21
  "dependencies": {
22
- "@leonw24/open-codex-linux-x64": "npm:@leonw24/open-codex@0.131.1-linux-x64"
22
+ "@leonw24/open-codex-linux-x64": "npm:@leonw24/open-codex@0.131.2-linux-x64"
23
23
  }
24
24
  }