Rendered at 18:18:42 GMT+0000 (Coordinated Universal Time) with Cloudflare Workers.
parsak 1 days ago [-]
the two-plane idea here is really interesting -- separating long-lived planners from short-lived workers is a clean mental model.
curious what happens when you're on windows though? tmux + ttal means you're locked out of a decent chunk of potential users.
been building in this space too -- pane (github.com/Dcouple-Inc/Pane) takes a different approach, standalone desktop app, no tmux at all. each pane maps to one worktree + n terminals, agents spin up and tear down cleanly. works the same on windows, mac, linux.
the telegram interface for managing from your phone is a nice touch -- does it block if the manager agent gets stuck waiting for human input?
neilbb 15 hours ago [-]
1. Windows users would need WSL. Currently focusing on macOS and Linux.
2. The manager never blocks. She helps me dump tasks into taskwarrior and route them. Since the manager plane is a mesh with p2p communication, no single agent becomes a bottleneck. Each designer connects to 1 or more workers in a star topology, and when workers get blocked, they alert the designer directly rather than waiting.
3. Pane looks interesting. How are you embedding the terminal into the desktop app? Is it a PTY wrapper or something like xterm.js?
curious what happens when you're on windows though? tmux + ttal means you're locked out of a decent chunk of potential users.
been building in this space too -- pane (github.com/Dcouple-Inc/Pane) takes a different approach, standalone desktop app, no tmux at all. each pane maps to one worktree + n terminals, agents spin up and tear down cleanly. works the same on windows, mac, linux.
the telegram interface for managing from your phone is a nice touch -- does it block if the manager agent gets stuck waiting for human input?
2. The manager never blocks. She helps me dump tasks into taskwarrior and route them. Since the manager plane is a mesh with p2p communication, no single agent becomes a bottleneck. Each designer connects to 1 or more workers in a star topology, and when workers get blocked, they alert the designer directly rather than waiting.
3. Pane looks interesting. How are you embedding the terminal into the desktop app? Is it a PTY wrapper or something like xterm.js?