From a-team
Dispatches one agent per independent problem domain to solve multiple unrelated issues concurrently, then reviews and integrates changes.
How this skill is triggered — by the user, by Claude, or both
Slash command
/a-team:dispatching-parallel-agentsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Dispatch one agent per independent problem domain. Let them work concurrently.
Dispatch one agent per independent problem domain. Let them work concurrently. 3 problems solved in parallel = time of 1.
Use when:
Do NOT use when:
Group problems by what's broken. Each domain must be fixable independently.
Each agent gets:
Task("Fix auth-flow.test.ts failures — timing issues in login flow")
Task("Fix payment-webhook.test.ts failures — missing mock for Stripe")
Task("Fix user-profile.test.ts failures — stale closure in useEffect")
Good prompts are:
Fix the 3 failing tests in src/auth/auth-flow.test.ts:
1. "should redirect after login" - expects /dashboard but gets /
2. "should persist session" - session expires immediately
3. "should handle expired tokens" - throws instead of redirecting
Root context: auth was refactored in commit a1b2c3 to use JWT.
Do NOT change production code — test-only fix unless you find a real auth bug.
Return: what you found and what you changed.
npx claudepluginhub rbraga01/a-team --plugin a-teamDispatches multiple specialized agents to work independently on separate tasks without shared state. Use when facing 2+ independent problems or subsystems.
Dispatch multiple independent tasks to separate agents for parallel execution, accelerating investigation of unrelated failures or subsystems.
Dispatches multiple subagents concurrently for independent tasks without shared state. Use when facing 2+ unrelated failures or subsystems that can be investigated in parallel.