| ▲ | A desktop app for isolated, parallel agentic development(github.com) | |||||||||||||||||||||||||||||||||||||||||||
| 31 points by mercat 4 hours ago | 10 comments | ||||||||||||||||||||||||||||||||||||||||||||
| ▲ | ttoinou 3 hours ago | parent | next [-] | |||||||||||||||||||||||||||||||||||||||||||
Something I never see mention is that all agents / CLI tools seem to modify local files. Which makes editing current files, working with the git, asking to only modify some parts of the files etc. cumbersome, as the agent is constantly reading and writing to files that we are also accessing. This is usually solved by using git worktree but this solution requires 1 new folder name and branch for each new agent, and each folder will have its own unique name and others issues. While it can be super powerful, I wish there was a quicker "in memory" agent solution where each agent keeps in its own RAM the list of files modifications ("patch") it recommends to apply to solve current issue. Then we could apply that patch depending on what we're doing, if we have others patches to apply before etc. Also even if agents can work in parallel, sometimes we only have 1 of them in front of us and if we already know what's the next thing we're gonna ask, we'll still wait for the previous task to be completed before sending the new prompt. I'm not sure how to improve this async problem, I guess I could launch multiple agents in parallel but I wouldn't get sharing of the chat history between the different agents, and when I work I usually work on related issues that depend on each others, thus I do need some kind of global or shared context between agents analyzing codebases and creating patches. Anyone has ideas over how to improve those AI coding agents workflows ? Maybe latest versions of GitButler https://gitbutler.com/ but I'm not sure, and it does use git worktree behind the hood | ||||||||||||||||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||||||||||||||
| ▲ | asdev 27 minutes ago | parent | prev | next [-] | |||||||||||||||||||||||||||||||||||||||||||
Made the same except you get terminal sessions instead of overriding it with a custom UI: https://github.com/built-by-as/FleetCode | ||||||||||||||||||||||||||||||||||||||||||||
| ▲ | nojs an hour ago | parent | prev [-] | |||||||||||||||||||||||||||||||||||||||||||
This looks very useful. I would love something similar that lets me plug in actual Claude Code/Codex with their original agent loop, prompting etc, and just handles the multiplexing, worktrees, isolation, etc automatically (it looks like this tool doesn’t support that). Because I think a lot of the power of eg CC comes from the engineering they’ve done to the tool rather than the underlying model. How are people doing this at the moment? | ||||||||||||||||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||||||||||||||