You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add /export session transcript command and refresh roadmap.
Implement a Claude Code-style /export flow for the current session and update the README to document both the export feature and the Open Codex-specific update notification improvements.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: README.md
+60-28Lines changed: 60 additions & 28 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -82,6 +82,26 @@ Four new subsystems inspired by Claude Code and oh-my-codex:
82
82
83
83
This directly addresses roadmap item 3 (better memory mechanics).
84
84
85
+
### 4. Open Codex-aware update detection and upgrade prompts
86
+
87
+
From commit `e1e88af89d`:
88
+
89
+
- switches npm/bun update detection from upstream Codex metadata to the fork package `@leonw24/open-codex`
90
+
- updates upgrade commands and release notes links so prompts point to Open Codex instead of `@openai/codex`
91
+
- keeps the runtime check aligned with the actual package users install from npm
92
+
93
+
This is a fork-correctness patch: update notifications should describe the Open Codex release a user can actually install, not the upstream Codex CLI release stream.
94
+
95
+
### 5. Session export inside the TUI
96
+
97
+
From recent fork-specific changes:
98
+
99
+
- adds `/export <path>` for the current session transcript
100
+
- supports user-chosen filenames like `/export talk.md` or `/export talk.txt`
101
+
- writes a markdown transcript suitable for debugging, archival, and sharing
102
+
103
+
This brings a Claude Code-style export flow into the TUI without requiring external scripts or manual transcript scraping.
104
+
85
105
## Maintenance Philosophy
86
106
87
107
This fork is maintained with a conservative strategy:
@@ -109,30 +129,26 @@ The near-term roadmap is intentionally focused on a few CLI-facing improvements:
109
129
110
130
Improve the Codex CLI status line so it can surface token throughput directly, instead of only showing coarse task state. The aim is to make model responsiveness easier to judge in real time.
111
131
112
-
### 2. Session export
132
+
### 2. ~~Session export~~ ✅ Completed
113
133
114
-
Implement a Claude Code-style export flow for the current session, so a user can export the active session record in a reusable format. The goal is to make debugging, sharing, and archival much easier.
134
+
Implemented as a Claude Code-style `/export` flow for the current session, with user-defined filenames like `/export talk.txt` or `/export talk.md`. This now covers the debugging, sharing, and archival use case directly inside the TUI.
115
135
116
136
### 3. ~~Better memory mechanics~~ ✅ Completed
117
137
118
138
Implemented as the consolidated memory subsystem (see Current Delta section 3 above). Remaining improvements tracked below.
119
139
120
-
### 5. AutoDream background daemon
121
-
122
-
Replace the startup-blocking Phase 2 consolidation with a 3-gate background consolidator (time ≥ 24h, ≥ 5 new sessions, no lock), using a 4-phase merge pipeline: Orient → Gather → Consolidate → Prune. Inspired by Claude Code's AutoDream.
123
-
124
-
### 6. Notepad TUI sidebar
125
-
126
-
Show notepad sections in the TUI sidebar so users can view and edit memory context without running `/memories` commands.
127
-
128
-
### 7. Memory versioning
129
-
130
-
Keep a lightweight changelog of topic edits so agents can reason about what changed and when.
131
-
132
140
### 4. Better Zellij ergonomics
133
141
134
142
Continue improving the Codex CLI experience under `zellij`, especially around rendering, layout, contrast, and other interaction details that behave differently from plain terminal sessions or `tmux`.
135
143
144
+
### Next focus areas
145
+
146
+
-**Background AutoDream-style consolidation** — move consolidation fully off the startup path and replace it with a background 3-gate consolidator (time ≥ 24h, ≥ 5 new sessions, no lock), using a 4-phase pipeline: Orient → Gather → Consolidate → Prune.
147
+
-**Notepad TUI sidebar** — surface notepad sections directly in the TUI sidebar so memory context can be viewed and edited without routing everything through `/memories`.
148
+
-**Memory versioning** — keep a lightweight changelog for topic edits so agents can reason about what changed and when.
149
+
-**More proactive subagent parallel planning** — let the agent split work and dispatch parallel subagents more aggressively instead of stepping through tasks strictly serially.
150
+
-**Claude Code-style background execution** — automatically send long-running commands and agent work to the background rather than keeping the main process occupied by foreground waiting and polling.
151
+
136
152
## Community
137
153
138
154
Issues and pull requests are welcome in this fork.
0 commit comments