Codex Monitor HUD — a real-time Windows overlay for Codex App, CLI, and VS Code #37977
LH-03
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
I wanted one simple thing: when I have several Codex tasks running at the same time, I want to be able to glance at the screen and see what they are doing without constantly switching between windows.
So I built Codex Monitor HUD, a lightweight always-on Windows overlay for Codex.
It currently supports:
CODEX_HOME(I use this for a DeepSeek-backed setup)For each running task, the HUD can show things like:
The implementation is intentionally local-first. It reads Codex's local session records rather than proxying API traffic or talking to each frontend through a separate API.
It does not store prompts, replies, tool output, or a conversation archive, and it does not use telemetry or a cloud account.
That architecture also produced an unexpected result: VS Code Codex sessions were already readable by the HUD before I explicitly supported VS Code. I mainly had to distinguish their session metadata from Codex Desktop correctly.
Some other local Codex clients may already work for the same reason, although their source badge may be wrong. I documented the unverified cases in the repository.
The project is deliberately narrower than tools such as AgentsView. I am not trying to build a full session database or analytics dashboard — the goal is simply to keep the current state of my Codex tasks visible while I work.
Windows 10/11 x64, MIT licensed.
GitHub:
https://github.com/LH-03/codex-monitor-hud
Feedback on the session detection approach, compatibility with other Codex clients, or the HUD itself is welcome.
All reactions