I built a local web dashboard to run Claude Code and Codex CLI in parallel
Hiroshi Ishizaka developed a local web dashboard called any-ai-cli to manage Claude Code and Codex CLI sessions simultaneously. The tool allows users to handle approval prompts and monitor multiple coding agents from a single interface. It is designed to enhance productivity by consolidating terminal outputs and providing real-time interaction through a browser.
- ▪The any-ai-cli dashboard wraps AI coding CLIs in a PTY and mirrors their output in real time.
- ▪Users can approve or reject prompts directly from the browser, keeping the terminal and UI in sync.
- ▪The tool is built as a single Go binary and prioritizes user privacy by binding to localhost and not sending telemetry.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 3912564) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Hiroshi Ishizaka Posted on May 24 I built a local web dashboard to run Claude Code and Codex CLI in parallel #ai #cli #cloudecode I run Claude Code and Codex CLI side by side a lot. The coding part is great — the annoying part is everything around it. Which terminal is waiting for an approval? Which session is still working, and which one quietly finished ten minutes ago? Tabbing between terminal windows just to hit "yes" got old fast.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).