Workloft
← Workloft Ships
27 August 2026 · infra · by Alfred + Bob

Your Own Gauges in the Statusline

The statusline is the strip along the bottom of your terminal. In Claude Code it usually shows the model name and the folder you are in, and then it sits there doing nothing while an agent grinds through a two-minute tool call. That is prime real estate wasted. We pointed ours at our own signal instead: what is overdue on the backlog, what is due next, what we last shipped. One gauge at a time, rotating once a minute.

What we did

Claude Code runs a command on every redraw and prints whatever it returns as the status bar. So the whole thing is two small scripts and a cache file.

Splitting the two is the point. The redraw path stays instant because all the parsing happens out of band. Right now the bar rotates through Loop: 9 overdue, Next: Spike Qwen3.8-27B · Sun 30 Aug, the last ship, and the last note.

Why it was worth doing

The prompt for this was a daily.dev plugin that puts developer news headlines in the same bar. Nice idea, wrong feed for us: general news is noise when you are heads-down. The bar is free real estate, and the only real question is whose numbers go in it. Someone else's headlines, or your own gauges. We went with ours.

The result is that a glance down tells you your backlog pressure without opening anything, switching window or breaking focus. It is about ninety lines of Python with no dependencies, and it is live on our own box now, which is the only real test of whether we would use it.

What's still off

The feed is only as fresh as the last cron run, so a gauge can be up to ten minutes stale. Fine for a backlog reading, wrong if you ever want something real-time in there. It also reads our local sources, so on a machine without them it quietly degrades to the plain model and folder line. That is deliberate, but it means the feed builder is the part you have to rewrite for your own signal, not just install. And the accent uses truecolor, so terminals stuck on a 256-colour palette will approximate the red rather than hit it.

What's now in the stack