codex-kanban is a public fork of openai/codex that adds a board-based multi-session workflow on top of the official Codex CLI.
The project keeps the official chat experience as intact as possible and layers kanban-style session management on top of it instead of rebuilding the whole TUI.
Install from npm:
npm install -g @duo121/codex-kanbanStart with either command:
codexkb
# or
codex-kanbanHomebrew support:
- Recommended:
brew tap duo121/homebrew-codex-kanban
brew install --cask codex-kanbanbrew install --cask codex-kanbanwithout a tap only works after the cask is accepted intohomebrew/cask.
The official Codex CLI is optimized around one terminal window per active session.
That model breaks down when you want to drive many concurrent tasks at once:
- too many terminal windows
- fragmented session state
- hard to see which session is still running
- high context-switch cost when following up
codex-kanban keeps the official interaction model on the right side and adds lightweight board/session management so one Codex window can manage a small working set of sessions.
- Reuse the official Codex UI wherever possible
- Keep
/resumesemantics unchanged - Avoid introducing a permanent custom sidebar
- Minimize fork drift so upstream sync stays manageable
- Treat boards as an organizational layer, not a new transcript store
The current implementation focuses on a low-drift kanban workflow:
/kbopens the board picker~opens the current board's session picker- create, rename, delete, and switch boards
- create, rename, remove, search, and reorder sessions inside a board
- board-local session state tracking:
runningneeds attentionseenwaiting approvalerrored
- persistence for boards, board sessions, ordering, and status snapshots
- mirrored behavior in both
codex-tuiandcodex-tui-app-server
Removing a session from a board does not delete the underlying Codex thread. It remains available through the normal /resume flow.
Global board entry point:
- search boards
ncreate boardrrename boardddelete board with confirmationEnterbind the current window to the selected board
Current board session entry point:
- search sessions in the current board
ncreate a new session inside the bound boardrrename the selected board sessiondremove it from the board with confirmationShift+Up/Shift+Downreorder sessionsEnterswitch the active chat area to that session
This fork intentionally keeps most changes in isolated modules:
codex-rs/tui/src/app/boards.rscodex-rs/tui/src/app/board_state_sync.rscodex-rs/tui_app_server/src/app/boards.rscodex-rs/tui_app_server/src/app/board_state_sync.rscodex-rs/state/src/runtime/boards.rscodex-rs/core/src/boards.rs
That structure is deliberate so future upstream sync work stays focused and predictable.
Follow the upstream install guide first:
Then run the Rust workspace locally:
cd codex-rs
cargo run -p codex-cli --bin codex- Slash commands
- Product spec
- Vercel docs-site deployment
- Release deploy checklist
- Contributing
- Installing & building
The repository keeps both remotes:
origin->duo121/codex-kanbanupstream->openai/codex
Recommended maintenance flow:
- Fetch upstream regularly.
- Rebase or merge upstream into
main. - Keep kanban changes isolated to board-related modules and minimal app wiring.
- Mirror TUI behavior in both local and app-server variants.
Vercel is appropriate for a project website or documentation site for codex-kanban.
It is not a runtime target for the Rust TUI itself. The CLI and TUI still run locally on the user's machine.
This repository remains under the Apache-2.0 License.