7/30/2026 at 12:59:03 PM
There seem to be a lot of these sorts of tools popping up but it’s not clear to me the added value they bring in over using plain tmux (or any other “normal” session multiplexer).Can someone who uses one of these agent-specific multiplexers share their experience and reasoning for reaching for / building these? What makes this better than a normal multiplexer? I am asking in earnest; I just don’t understand but I want to.
by hamaluik
7/30/2026 at 1:15:58 PM
I've tested out just about every tool like this, and ended up coding my own, it is really minimal though.The primary reason people reach for these tools are two to three reasons:
1. Tmux does not natively show agent statuses of agents / notify you when one needs input. Helpful when you have a huge list of small things to fix: I just spin up N agents in parallel to handle all of them, then I go over and review.
2. Tmux does not handle worktree handling. If you wanna make changes in parallel you cannot have two agents make db migrations at the same time. The way to solve for this is to have them work on two different worktrees with separate environments, ports etc.
3. Tmux tree view is not super beautiful, especially for viewing agents.
I built this as a tmux plugin since I don't really want to opt-out of tmux as a whole, especially since I like my keybindings there.
by ymir_e
7/30/2026 at 4:09:06 PM
In your experience using your plugin (and the other tools that do something similar like herdr), does it make doing a larger volume of work feel more manageable? In my experience thus far, surfacing/managing session state is only part of the issue, context switching between them is another entirely and feels like the real productivity bottleneck for meby Arthurian
7/30/2026 at 6:15:27 PM
You're spot on here.If you're truly multi-tasking with this type of setup it feels more like "tiktok coding", "brainrot coding", or any other term that should be used for it.
I'm pretty sure we're moving away from it, the agent you interact with via voice or typing will go to a higher and higher abstraction level, and you won't have to effectively micro-manage them.
by ymir_e
7/30/2026 at 6:28:13 PM
> The way to solve for this is to have them work on two different worktrees with separate environments, portsWhat are you using for the environment part? Containers?
by apitman
7/30/2026 at 1:38:07 PM
This looks nice, but I think a screenshot or three in the README would help bring it to life betterby petesergeant
7/30/2026 at 6:17:36 PM
Great input. Added a screenshot to the readme:by ymir_e
7/30/2026 at 6:26:06 PM
Please continue developing this I’m sick of all these one-offs that escape the mature good tooling we already have.by ixtli
7/30/2026 at 2:35:42 PM
I’ve been using herdr lately and before that I was using zellij and before that tmux and before that gnu screenFor me the main advantage of herdr is that when I have the codex integration activated, herdr will keep track of the codex session ids and automatically restore them after restart
With the other multiplexers I had to create a separate tool that would save/restore layout/tabs/panes/session ids. And I had to run it manually. With herdr it just works, almost out of the box
Oh, it’s also very nice that you can create groups of tabs, so it’s easier to organize if you have more than 3-4 terminal sessions open (I usually keep at least 3 tabs, each split into an agent pane and a zsh pane)
And lastly, mouse scroll support is a lot better. I’ve had many issues with scrolling codex’s output. tmux and zellij’s scrolling wouldn’t play nicely with codex’s output, but herdr seems to work very well
by nico
7/30/2026 at 3:04:11 PM
yeah herdr has completely replaced my tmux usageby irfn
7/30/2026 at 2:44:27 PM
herdr seems more stable than psmux/tmux for windows.by tiahura
7/30/2026 at 1:09:33 PM
I've been using herdr for a couple of weeks. The only real advantage is that it makes the agent status glanceable in the sidebar, which can be nice if you don't want to cycle through your tmux panes to check if something's blocked or complete. Other than that, it's kind of just tmux (which is nice, I like tmux).by dhruvmittal
7/30/2026 at 9:18:07 PM
I don’t get this argument that’s soooo easy for add a window marker to tmux windows that updates with a Claude hook.by 0x008
7/30/2026 at 2:24:22 PM
I added a hook to Claude and Codex where they play a frog ribbit sound when they're done cooking.I should probably download different types of frog sounds for different agents though.
by andai
7/30/2026 at 3:10:23 PM
- I get OS level notifications when the agent is ready.- I don't need to use TMUX's wonky keyboard shortcuts
- I moved off of TMUX anyway, when ssh-ing into remote servers became 'not a thing'
- automatic coding session management, like auto resume, layout manamgement, etc. out of the box, without setting up TMUX, which could be a wormhole for some, by the time you fix mouse scrolling, cut/paste, etc...
I'm currently using CMUX, and been pretty happy with it it at this time, but loving the evolution of all these tools
by taude
7/30/2026 at 3:21:22 PM
https://bower.sh/you-might-not-need-tmuxby Marlinski
7/30/2026 at 1:22:56 PM
I built yoloAI, which is a sandboxer so it uses tmux to keep the agent alive inside. Since I can just reattach to them or use VS code tunnels, I don't really have a need for a multiplexer, though.by kstenerud
7/30/2026 at 1:18:53 PM
My main reason for herdr over tmux is the priority queue of agents requiring intervention.by skinfaxi
7/30/2026 at 5:02:01 PM
Most of the AI tools people are building have little to zero value.If you're making valuable tools, anthropic, openai, or one of the other big players in the space will hire you/buy you out and then they will release the tool themselves.
I'm getting really tired of everyone doing their own special rain dances and then acting like they made it rain.
by kaydub
7/30/2026 at 3:09:58 PM
[dead]by yoanwaidev