| ▲ | skrebbel 3 days ago | ||||||||||||||||
Vaguely related question, for people who run multiple agents in parallel: how do you do that? do they all work on the same files at the same time? won't that create a terrible mess? or do you like check out the codebase 8 times into separate directories and do a complicated PR flow type thing? | |||||||||||||||||
| ▲ | rahimnathwani 3 days ago | parent | next [-] | ||||||||||||||||
Some people use git worktrees so each agent is working in a separate directory. Some people have multiple agents working in the same directory, and allow the agents to tell each other what they're doing and which files they're editing: https://github.com/Dicklesworthstone/mcp_agent_mail | |||||||||||||||||
| ▲ | trivialities777 3 days ago | parent | prev | next [-] | ||||||||||||||||
you can use https://git-scm.com/docs/git-worktree to have many "views" of a single git repo. For more complex environments, use multiple VMs (common to have large VMs running in AWS/GCP for development and only use your laptop or phone as a thin client) | |||||||||||||||||
| |||||||||||||||||
| ▲ | throwaw12 3 days ago | parent | prev | next [-] | ||||||||||||||||
I am also curious about this, how people wrap their head around multiple changes in multiple features at the same time? I personally, can handle only one feature at a time, prompt the AI, refine the changes, re-plan, review changes, rewrite parts when necessary, but my mind is still with one feature. How do you folks manage multiple parallel feature development at the same time? | |||||||||||||||||
| |||||||||||||||||
| ▲ | afro88 3 days ago | parent | prev [-] | ||||||||||||||||
Git worktrees for parallel repo clones on different branches, a worktree setup script that runs when a worktree is created (npm install etc) and vibe-kanban [0] to visually create, monitor and approve parallel work | |||||||||||||||||