Skip to content

Commit 0304675

Browse files
Release Open Codex 0.131.6
Ship the beta agent-view/session browser work, restore per-query xhigh markers after the 0.131 merge, and include the background terminal and Zellij regressions in the release notes. Tests: - cargo fmt -- --config imports_granularity=Item - cargo test -p codex-agent-view - cargo test -p codex-tui xhigh_reasoning_marker_matches_standalone_aliases - cargo test -p codex-tui submission_ultra_marker_uses_xhigh_for_current_turn_only - cargo test -p codex-tui submission_xhigh_marker_requires_standalone_token - cargo test -p codex-tui open_background_task_panel_refreshes_when_terminal_state_changes - cargo test -p codex-tui background_terminals_are_not_rendered_as_footer_summary - cargo test -p codex-tui alternate_screen_auto_disables_alt_screen_inside_zellij - cargo build --profile release-fast -p codex-cli --bin codex Co-authored-by: Open Codex <hff582580@gmail.com>
1 parent 08252a0 commit 0304675

21 files changed

Lines changed: 335 additions & 191 deletions

FEATURES.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Open Codex Feature Inventory
22

3-
Last updated: 2026-05-21
3+
Last updated: 2026-05-22
44

55
This file tracks fork-specific features and fixes that should remain visible during README, release-note, and roadmap updates. It is an engineering inventory, not a marketing page. Keep it scoped to behavior implemented in this fork.
66

@@ -52,6 +52,7 @@ Fast-moving prompt packs, hooks, setup flows, and project policies are better ha
5252
| --- | --- | --- | --- |
5353
| `/export` | Export the current session transcript to a user-chosen `.md` or `.txt` path. | `/export <path>` | Useful for debugging, archival, and sharing. |
5454
| Renamed session identity | Renamed sessions show `Session: <name>` in the chat composer and use the name in quit guidance while keeping resume commands direct. | `/rename`, chat composer, quit summary | Resume hints use `open-codex resume <thread-id>` / `open-codex-dev resume <thread-id>` instead of picker wording. |
55+
| Agent view session browser (beta) | Users can browse saved sessions, peek transcript content, resume a selected thread, or start a new session from the browser. | `codex agents`, composer Left arrow | Beta surface; useful for local session navigation but still expected to evolve. |
5556
| Claude Code-style rewind UX | Double-Esc rewind supports code + conversation restore and a cleaner picker. | Double-Esc backtrack flow | Recent fixes tightened session scoping and ordering. |
5657
| Revoke restore scope fix | Conversation-only restore no longer rolls back files. | Revoke/rewind restore logic | Fixed by `b6f62e4867`. |
5758
| Esc interrupt routing | Single Esc interrupt and double-Esc rewind detection both work without blocking each other. | Composer key handling | Fixed by `0d20c120d8`. |
@@ -93,6 +94,18 @@ Fast-moving prompt packs, hooks, setup flows, and project policies are better ha
9394

9495
## Release Notes
9596

97+
### 0.131.6 - 2026-05-22
98+
99+
- Add the first beta version of agent-view: `codex agents` can inspect saved sessions offline, and the TUI session browser can open from the composer with Left arrow.
100+
- Render the agent-view session browser as a full-screen overlay with grouped session rows, peek preview, delete confirmation, resume, and start-new-session flows.
101+
- Mark agent-view as beta in this release: the core browsing/resume workflow is available, but UI polish and interaction details may still change.
102+
- Fix the 0.131 merge regression where standalone `xhigh`, `ultra`, or `ulw` markers no longer submitted the current query with `xhigh` reasoning.
103+
- Show the per-turn xhigh override in `model-with-reasoning` status-line output while that foreground turn is pending or running, without mutating persistent session defaults.
104+
- Keep per-turn effort override state across thread switch capture/restore.
105+
- Fix background task status-line drift so `/ps` and the footer agree when background terminals or subagents start, finish, or are cleared.
106+
- Preserve Zellij pane scroll behavior by rendering TUI inline under Zellij instead of trapping pane scroll in the alt screen.
107+
- Tighten subagent spawning guidance around contract-first delegation and quota-aware cleanup.
108+
96109
### 0.131.5 - 2026-05-21
97110

98111
- Show renamed session identity directly in the chat composer border with a `Session: <name>` marker.

codex-cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@leonw24/open-codex",
3-
"version": "0.131.5",
3+
"version": "0.131.6",
44
"license": "Apache-2.0",
55
"bin": {
66
"open-codex": "bin/codex.js"

0 commit comments

Comments
 (0)