Skip to content
Menu
WorkflowSkills, tmux and the daily loopToolsai-usagebarQuota and reset times for 24 AI providersghpendingEvery open PR and issue in one listtclockA terminal clock with command widgetsai-memoryLong-term memory for coding agentsai-jailAn OS sandbox for AI coding agentsWritingThe blog and the LLM benchmarkNewsletterThe M.Akita Chronicles, every MondayPodcastsLong conversations about AI, on videoGamesMy game collection as code, on OmarchySetupOmarchy, tmux, and what I set asideFollow
Setup

The rest of my setup

The tools I did not write but use every day, and a few popular ones I tried and set aside.

Omarchy, the operating system

Omarchy is DHH's Linux distribution: Arch Linux with the Hyprland tiling window manager, configured and themed out of the box. Its site calls it "the malleable OS for the age of agents". It is my daily desktop, and I think it is the best choice for developers today.

  • Keyboard first: every window, workspace and app is a shortcut away, which suits a day spent in terminals
  • Arch underneath, so the newest compilers, runtimes and agent CLIs are one package away
  • Everything is plain configuration files, which is exactly what a coding agent can read and change for you
  • ai-usagebar and my games launcher have native Omarchy integrations

I believe in it enough to have donated to the Omacom Foundation, the nonprofit that funds Omarchy and the open source projects it is built on.

tmux, so nothing dies by accident

tmux is a terminal multiplexer: it runs your shells inside a session that lives apart from the terminal window, split into windows and panes. I use it mostly for one reason. If I close the terminal by accident, the agents keep running, and one command brings everything back.

all it takes
tmux new -s work       # start a named session# ...terminal closed by accident...tmux attach -t work    # everything is still there

Each project gets a tmux window with its agent, and that is all the orchestration I need.

tmux on GitHub

My favorite models

I test every major model in my benchmark, but day to day the choice is simple. If you pay for an Anthropic or OpenAI subscription on the Pro plan, you are well served.

The daily driver

The latest Opus or the latest GPT Sol, at medium effort. That covers about 90% of what I do.

In the rotation

Kimi K3 and GLM 5.3, on their own subscription plans. When Claude or GPT hits its quota, I switch to one of them, and ai-memory brings the context along.

Tried and set aside: Herdr

Herdr is an agent multiplexer written in Rust: tmux-style panes and sessions, plus a sidebar that knows which pane holds a coding agent and whether it is working, blocked or done.

I tried it. It is well made and plenty of people like it. I did not find a use for it in my own routine, because one tmux window per project already tells me where each agent is, and yours may be different.

herdr.dev

Everything here is open source

The tools, the skills and the benchmark are public repositories. Fork them and build the version that fits the way you work.