How to activate multiple agents at once in Claude Code for a coordinated workflow? #397
-
|
I've got the agency-agents installed in ~/.claude/agents/ and individual agents work great, but I'm trying to figure out how to activate multiple agents for a single task. For example, I want the Frontend Developer, Security Engineer, and QA Tester to all collaborate on reviewing a React component. Right now I'm doing: Then separately: Is there a way to activate multiple agents simultaneously so they coordinate their feedback instead of me manually chaining them? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
|
hey @BittuChan, Claude Code doesn't support multi-agent orchestration natively, each session runs one agent at a time. Your sequential approach is currently the right pattern. Create a meta-prompt that references multiple agent perspectives: This simulates multi-agent collaboration within a single Claude session. |
Beta Was this translation helpful? Give feedback.
hey @BittuChan, Claude Code doesn't support multi-agent orchestration natively, each session runs one agent at a time. Your sequential approach is currently the right pattern.
I can suggest a workaround for coordinated reviews:
Create a meta-prompt that references multiple agent perspectives:
This simulates multi-agent collaboration within a single Claude session.