@nogataka/codex-viewer
v0.0.11
Published
**English** | [日本語](./README.ja.md)
Downloads
220
Readme
English | 日本語
Codex Viewer
Codex Viewer is a full-featured web client for Codex projects. Launch new conversations, resume existing sessions, monitor running tasks, and review historical logs directly from your browser with real-time synchronization to ~/.codex/sessions/ and ~/.codex/history.jsonl.
Note: This project is a Codex-focused fork of claude-code-viewer by d-kimuson.



Features
Project Explorer
- Search projects by name or path, sort by last update / name / message count, and switch between grid and table views.
- See message counts and latest activity (including updates recorded in
history.jsonl).
Session Management
- Resume or inspect conversations with syntax-highlighted logs and tool outputs.
- Copy
sessionIdinstantly from the header; abort or resume Codex tasks from the UI. - View diffs, command outputs, and SSE-driven updates without manual refresh.
Automation & Integrations
- CLI automatically opens the default browser once the server is ready (Windows, Linux, macOS). Disable via
CC_VIEWER_NO_AUTO_OPEN=1orNO_AUTO_OPEN=1. - File watcher monitors both
~/.codex/sessions/and~/.codex/history.jsonlto surface the latest activity in the UI.
Quick Start
Run without installation:
PORT=5656 npx @nogataka/codex-viewer@latestCodex Viewer starts the server (default port 5656) and opens http://localhost:5656 in your browser once it becomes reachable. To skip auto-launch, export CC_VIEWER_NO_AUTO_OPEN=1 beforehand.
Install Globally
npm install -g @nogataka/codex-viewer
codex-viewerFrom Source
git clone https://github.com/nogataka/codex-viewer.git
cd codex-viewer
pnpm install
pnpm build
pnpm startUsage Guide
1. Projects Page
- Filter: Type in the search box to narrow projects by workspace name or path.
- Sort: Choose Last Modified, Project Name, or Message Count; toggle ascending / descending with the adjacent button.
- Views: Grid view shows cards with quick actions; list view renders a sortable table with compact rows and direct navigation to sessions.
2. Sessions Page
- Header Controls: Title reflects the first command;
sessionId:badge includes a copy button and displays the UUID if present. - Live Status: Running or waiting tasks surface badges and actions (abort, resume). The page auto-scrolls as new turns arrive.
- Tooling: Diff viewer, command outputs, and SSE updates keep the timeline synchronized with on-disk JSONL changes and
history.jsonlevents. Consecutive Tool Use entries now collapse into a single accordion so long automation bursts stay scannable.
3. Real-time Sync & History
- The backend merges timestamps from both the session JSONL files and
~/.codex/history.jsonl, so the “Last modified” column always reflects the latest Codex activity. - File watcher broadcasts
project_changed/session_changedevents via SSE, allowing the UI to react immediately without polling.
Configuration
- Port:
PORT=8080 npx @nogataka/codex-viewer@latest - Disable Auto Browser:
CC_VIEWER_NO_AUTO_OPEN=1(alternativelyNO_AUTO_OPEN=1orNO_AUTO_BROWSER=1) - Data Directory: Defaults to
~/.codex/sessions/.history.jsonlis read automatically if present.
Development Scripts
pnpm dev– Run Next.js (Turbopack) + embedded Hono API on port 5656.pnpm lint/pnpm fix– Format and lint via Biome.pnpm typecheck– Strict TypeScript checks.pnpm test– Execute Vitest suites.pnpm build– Produce the standalone.next/standalonebundle and CLI entry indist/.
Articles
Codex Viewer background and workflows are documented in:
License & Contributing
Licensed under MIT – see LICENSE. Contribution guidelines and architecture notes live in docs/dev.md.
Release Notes
dist/index.jsは CLI (bin) のエントリーポイントです。削除・リネームするとnpx @nogataka/codex-viewerやグローバルインストールが動かなくなるので注意してください。
