Help us improve
Share bugs, ideas, or general feedback.
From a-team
Dispatches one agent per independent problem domain to solve multiple unrelated issues concurrently, then reviews and integrates changes.
npx claudepluginhub rbraga01/a-team --plugin a-teamHow 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.
Guides technical evaluation of code review feedback: read fully, restate for understanding, verify against codebase, respond with reasoning or pushback before implementing.
Share bugs, ideas, or general feedback.
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.