Problem: I want to run multiple agents at once
Problem: I want to run multiple agents at once.
4 solutions:
1. Clone the repo twice. Use 2 editor instances.
2. Use Git worktree to checkout multiple branches at once.
3.Assign a GitHub issue to your agent. It runs in the cloud while you're working with a separate agent in your local IDE.
4. Use subagents. Put something like this in your instructions file: “When asked to implement a feature or a fix, always dispatch the task to the senior-developer subagent unless instructed not to do so. In the subagent context, tell the subagent to go directly into implementation. Do not nest delegation.”
I tend to prefer 1 and 3 since they're simple.
Other ideas? How do you handle this?