16 comments

  • isityettime56 minutes ago
    Once you get it set up, Emacs is a pretty damn good &quot;agent&quot; multiplexer as well. I use agent-shell with Projectile on Doom Emacs as my main workflow these days, and it works very well even if I have 6 projects open or whatever.<p>Claude and Codex are also both quite good at working with Emacs as well. Depending on your isolation&#x2F;sandboxing strategy, they can either run commands against your session via emacsclient (a bit scary) or dump elisp in the REPL for you to evaluate. Both are really efficient in terms of giving you a fast feedback loop.
  • ricardobeat2 hours ago
    The utility is not obvious, but I&#x27;ve been using herdr for a few weeks after a friend recommended it, and it&#x27;s been a great tool.<p>I had about a dozen different terminal windows, each one with multiple tabs, which was becoming a mess to manage; multiple agents and harnesses running that I could only inspect by remote access&#x2F;VNC away from home.<p>With this, I can keep things more organized (project workspaces, tabs), because it&#x27;s backed by a persistent process, I can ssh into the machine, with tailscale, run <i>herdr</i> and see all active sessions, do some debugging and one-off prompts.<p>Even better, I can do that from my phone and iPad using Prompt&#x2F;Termius. It gives me the best part of &#x27;xxclaw&#x27; harnesses with none of the complexity.
  • mintflow2 hours ago
    Will people really need a bunch of different agents? Even using two codex session for different project make me feel a bit overwhelmed, or may be i just old
    • zihotki13 minutes ago
      I found that a good tool helps a lot once I switched to Github Copilot app. It solved the friction and mental tax for me. I easily manage 4 sessions in parallel on same or different projects while 2 was max in the past. The bottleneck now is only in review and decision making.
    • fooster18 minutes ago
      I often have many active. Bug investigations, writing code, reviewing, checking logs after deploys and so on.
    • gb2d_hn1 hour ago
      Same. I haven&#x27;t been able to see how people let agent loops run without significant steering and produce good quality software. VS Code with one or two integrated terminals running is fine for me. Or a couple of VS Code instances if I&#x27;m working one a couple of projects concurrently. The advantage of VS Code is the code &#x2F; diff visibility if you like to be hands on.
    • rw_panic0_02 hours ago
      yeah I also don&#x27;t really see a use case for me, like do ppl really run that many agents in parallel that they cannot comfortably multiplex them using just a terminal emulator
      • Escapade51601 hour ago
        I&#x27;m a power user and it&#x27;s not an issue for me. I just use Kitty with multiple windows and panes. I can jump between using hotkeys with no problem.
  • zachncst54 minutes ago
    Getting a lot of flack in all these comments, I really like this tool. Have been super easy to use and scale to multiple agents. I&#x27;ve had a ton of issues with tmux and copy and paste, this just works. I was using warp terminal, and even working on my own fork of it with it&#x27;s recent open source status, but this has won me over.
  • joch2 hours ago
    I switched from tmux to Zellij a while back, and lately added a stop hook that sends a terminal ping to the correct tab when the agent is done (and I&#x27;m not looking at the tab). It has been pretty convenient so far.<p>Added an example here:<p><a href="https:&#x2F;&#x2F;johnny.chadda.se&#x2F;zellij-stop-hook&#x2F;" rel="nofollow">https:&#x2F;&#x2F;johnny.chadda.se&#x2F;zellij-stop-hook&#x2F;</a>
  • crashabr2 hours ago
    How does it compare with <a href="https:&#x2F;&#x2F;github.com&#x2F;agent-of-empires&#x2F;agent-of-empires" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;agent-of-empires&#x2F;agent-of-empires</a>
  • JSR_FDED4 hours ago
    How do people use terminal multiplexers together with vim?<p>Ctrl+B is so hardwired in my fingers for scrolling back one screen that there&#x27;s no way I&#x27;m remapping that one in vim itself. So then you have to remap that in your terminal multiplexer, while at the same time there&#x27;s a bunch of people saying never change the leader key...<p>Curious what vim users especially do about this?
    • azuanrb1 hour ago
      I&#x27;m using tmux + zoxide+ <a href="https:&#x2F;&#x2F;github.com&#x2F;joshmedeski&#x2F;sesh" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;joshmedeski&#x2F;sesh</a>. Then on Ghostty, I have keybinds for my workflow. Cmd+k to open&#x2F;switch workspace. Each workspace is just a new tmux session.
    • mynegation2 hours ago
      I use tmux with vim and configure it to use Ctrl-a. Not for vim, but because I started with GNU screen that used this key. For the cases when I need actual Ctrl-a, tmux is configured to send it when I do “Ctrl-a a”.
    • coldtea2 hours ago
      &gt;<i>Ctrl+B is so hardwired in my fingers for scrolling back one screen that there&#x27;s no way I&#x27;m remapping that one in vim itself.</i><p>Give it a month and whatever you remapped will be &quot;hardwired&quot; too.<p>In any case, no reason to keep Ctrl-B in tmux either, you can remap that just as well.
    • pyr0hu3 hours ago
      As a vim user, I just remap C+B to C+A. It&#x27;s much easier on the fingers too. Issue arises when I ssh somewhere that doesn&#x27;t have the leader remapped but that&#x27;s usually pretty rare when I have to vim in a tmux session on a remote host so not really an issue
  • nok22kon6 hours ago
    does it support a setup where each agent can be in a different SSH session? or must they all run in the same place.<p>it seems to support running a remote herdr over SSH but unclear if it can add remote agents (each agent has its own sandbox where its installed and you first SSH into it and then start the agent there)
    • ricardobeat2 hours ago
      Each work pane gives you a new terminal session, you can ssh into a remote and it will be kept alive. Should work fine.
    • scirob5 hours ago
      Same question.<p>I usually have one local clause orchestrating multiple remote Claude in different tmux . And then another orchester and remote vm worker sin tmux for another repo etc...<p>It gets a bit hard to keep the overview but I don&#x27;t want to give up my parallelism, your too might help
      • _def5 hours ago
        Interesting, how is this orchestration set up?
        • messh4 hours ago
          One way is to use something like <a href="https:&#x2F;&#x2F;shellbox.dev" rel="nofollow">https:&#x2F;&#x2F;shellbox.dev</a> - you start new boxes and manage it all through ssh, icl agent running inside
    • steinroe5 hours ago
      afaik, you should be able to use named session to achieve this: <a href="https:&#x2F;&#x2F;herdr.dev&#x2F;docs&#x2F;persistence-remote&#x2F;" rel="nofollow">https:&#x2F;&#x2F;herdr.dev&#x2F;docs&#x2F;persistence-remote&#x2F;</a>
  • hagen82 hours ago
    This is way to complex... Why don&#x27;t just use some harness which manages all that and give u a good UI?
    • dagss2 hours ago
      I have been actively searching for such a thing for months without finding it.<p>Some are OS X only.<p>Some will not work well with VMs&#x2F;isolated agents.<p>Currently using emdash, which is going in a great direction but somewhat new and buggy still.
      • justinwarner48 minutes ago
        Nimbalyst does a pretty good job. Some gaps but I can manage multiple agents across multiple projects well enough.
      • dandaka2 hours ago
        What is your top chart? I am using GUI harnesses from model providers and not happy with any of them.
    • ricardobeat2 hours ago
      for example…?<p>I don’t believe any current harness offers this level of organization and running bare shell sessions inside.
  • mst984 hours ago
    nice, not dissimilar to what i built for <a href="https:&#x2F;&#x2F;github.com&#x2F;storozhenko98&#x2F;beehive" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;storozhenko98&#x2F;beehive</a>
    • w4yai4 hours ago
      I&#x27;d suggest adding a few screenshots on the Github README, otherwise I wouldn&#x27;t have enough attention to imagine how it looks. I had to go to the website to appreciate your work, otherwise I&#x27;m like &quot;what is it?&quot;
  • FergusArgyll1 hour ago
    How do you use multiple agents in one project? Isn&#x27;t there race conditions? or is this for 2 separate projects at once?
    • f3408fh1 hour ago
      Git worktrees
      • FergusArgyll51 minutes ago
        Oh. You&#x27;re a genius. It&#x27;s the same as 2 people working on one project. Maybe I&#x27;m dumb.
  • scubbo5 hours ago
    Tried this for a couple days, but conductor.build is way better IME. Running _in_ the terminal is a flex, but doesn&#x27;t actually bring any advantage.
    • zavec2 hours ago
      I was just looking at conductor and was not very jazzed about the fact that it was running the agents directly on the host. Being able to launch from a terminal means this one can (hopefully) run from inside the sandboxing setup I use for coding agents.
    • xyzsparetimexyz5 hours ago
      Running in the terminal means I can access it via ssh on my phone (&amp; tailscale). Do any of the other solutions let you do this?
      • yoavm5 hours ago
        I&#x27;m using `opencode --web`. Running over HTTP means I can use it <i>comfortably</i> on my phone with Tailscale.
        • dizhn17 minutes ago
          Check out paseo and similar tools to that. It has a lot of features but you&#x27;ll find its mobile client is much better than opencode&#x27;s web view.
    • mellosouls2 hours ago
      mac only. closed source.
    • Quarrel3 hours ago
      conductor.build is Mac only ..
  • progx5 hours ago
    I need a shepherd for my terminals.
  • felooboolooomba2 hours ago
    At least one of us needs to up our dosage.
  • andrijaskontra6 hours ago
    Just use tmux no?
    • ZeelRajodiya2 hours ago
      How about running this inside tmux?
    • boxed5 hours ago
      How would you know if a tab that isn&#x27;t frontmost is waiting for input or complete or whatever?
      • frumiousirc1 hour ago
        It&#x27;s not so straight-forward. Either you must add hooks the the agent to notify tmux directly or you must use an external tool that polls tmux to determine one of its panes has gone silent and then based on that, send notification to tmux.<p>The poling requires tmux (not screen nor dtach, as far as I could find). And, silence for N seconds is just that, the poll doesn&#x27;t know if that really means waiting for input or something else. With agents (like claude) that have a throbber&#x2F;spinner going while &quot;thinking&quot;, silence is a good indicator.<p>Kitty terminal can be polled for current text and then see if that has changed in N seconds. This would allow not having to depend on tmux which may be preferable to some kitty users. Generally, using tmux always surfaces some annoying problems for me.
      • rocqua5 hours ago
        Someone else suggested the bell character. But you can also just set tmux pane names or color. Which you can also do from your agent harnass.
        • boxed24 minutes ago
          That&#x27;s only half an answer.
      • enoch20903 hours ago
        You can achieve this with features that Tmux already have. Glued a tool that works:<p><a href="https:&#x2F;&#x2F;gist.github.com&#x2F;Enoch2090&#x2F;5026c417f86ff6ff4fbe30c22b9fee15" rel="nofollow">https:&#x2F;&#x2F;gist.github.com&#x2F;Enoch2090&#x2F;5026c417f86ff6ff4fbe30c22b...</a>
      • baalimago5 hours ago
        You use an agentic harness which terminates with bell character[0]. This lights up tmux, clearly indicating that it&#x27;s done.<p>[0]: <a href="https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Bell_character" rel="nofollow">https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Bell_character</a>
        • timwis4 hours ago
          Does this mean adding instructions to AGENTS.md saying to end everything with the bell character? Or do harnesses have this in their settings somewhere?
          • zavec2 hours ago
            I think generally harnesses have this. In claude code it&#x27;s `&quot;preferredNotifChannel&quot;: &quot;terminal_bell&quot;` in the settings.json, pi and opencode looks like you have to either add a hook yourself somewhere or use an extension.
          • baalimago3 hours ago
            Depends on the harness I imagine. If there&#x27;s some sort of &quot;post run&quot; hook I&#x27;m sure it can be added there. Or, if the harness is open source, a PR to add it would work too.
  • StreamCtx1 hour ago
    [flagged]