Live data from Hacker News

Show HN: Seshions – Orchestrate multi-agent coding agents from one terminal

news.ycombinator.com

1–8 of 8 posts

Show HN: Seshions – Orchestrate multi-agent coding agents from one terminal

#1
I run 3-5 AI coding agents in parallel (Claude Code, Codex, Gemini) and the bottleneck was never the agents, it was managing them. Switching panes, losing track of which agent had which role, re-typing the same setup every time.

Seshions is a terminal UI that gives you one dashboard to launch, route prompts to, and monitor parallel coding agents via tmux. What makes it different from other tmux session managers:

- Blueprints: define a multi-agent team once (planner, builder, reviewer, etc.) and launch the whole group in one action

- Orchestration: dispatch a prompt to a single role, or broadcast to every agent in a group — from one composer

- Works across tools: Claude Code, Codex, Gemini CLI, OpenCode, or any custom shell command

- One command: npx seshions@latest

Demo + repo: https://github.com/danhergir/seshions

Built with Bun + TypeScript. I would love to get feedback on the UX and what workflows you'd want supported.

Re: Show HN: Seshions – Orchestrate multi-agent coding agents from one terminal

#4
post #3

[flagged]

currently what i do is setting up a group for a set of sessions/agents, once this is done, i'll name the group based on the task/activity which is being completed.

by doing this i can move between several tasks, see the current status of each session, and even use Blueprints to send a message to a certain group of sessions/agents

Re: Show HN: Seshions – Orchestrate multi-agent coding agents from one terminal

#5
post #3

[flagged]

currently what i do is setting up a group for a set of sessions/agents, once this is done, i'll name the group based on the task/activity which is being completed. by doing this i can move between several tasks, see the current status of each session, and even use Blueprints to send a message to a certain group of sessions/agents

[flagged]

Re: Show HN: Seshions – Orchestrate multi-agent coding agents from one terminal

#6
post #5

Earlier quoted context omitted.

currently what i do is setting up a group for a set of sessions/agents, once this is done, i'll name the group based on the task/activity which is being completed. by doing this i can move between several tasks, see the current status of each session, and even use Blueprints to send a message to a certain group of sessions/agents

[flagged]

grouping groups is not an actual feature since it can get you to have nested tasks eventually overcomplicating your workflow. personally, i am not attracted to having more than 6-7 sessions since i like to take good care of the context.

what's your workflow?

Re: Show HN: Seshions – Orchestrate multi-agent coding agents from one terminal

#7
post #5

Earlier quoted context omitted.

[flagged]

grouping groups is not an actual feature since it can get you to have nested tasks eventually overcomplicating your workflow. personally, i am not attracted to having more than 6-7 sessions since i like to take good care of the context. what's your workflow?

[flagged]

Re: Show HN: Seshions – Orchestrate multi-agent coding agents from one terminal

#8
Cool concept with the Blueprints system - defining agent teams declaratively is a nice touch.

I'm building something adjacent called Pane (https://runpane.com) that comes at it from the terminal management side rather than orchestration. Each pane is one feature with its own git worktree + N terminals, and worktree creation/cleanup is fully automated. The idea is you shouldn't have to think about the git or tmux layer at all.

Main difference from Seshions is Pane is a standalone desktop app rather than sitting on top of tmux, so it owns the terminal emulator directly. Tradeoff is less composability with existing tmux workflows, but the PTY handling and cross-platform support (Windows included) got way simpler.

Open source (AGPL-3.0): https://github.com/Dcouple-Inc/Pane