skills/planning/parallel-agent-dispatch/SKILL.md
Delegate 2+ independent tasks to specialized agents running concurrently. Use when facing multiple unrelated failures or independent tasks that can be worked on without shared state or sequential dependencies.
npx skillsauth add bereniketech/claude_kit parallel-agent-dispatchInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Delegate tasks to specialized agents with isolated context. By precisely crafting their instructions, you ensure they stay focused and succeed. Agents should never inherit your session's context or history — construct exactly what they need. This also preserves your own context for coordination work.
Rule: Dispatch one agent per independent problem domain. Let them work concurrently.
Multiple failures?
No → Single agent investigates all
Yes → Are they independent?
No (related) → Single agent investigates all
Yes → Can they work in parallel?
No (shared state) → Sequential agents
Yes → Parallel dispatch
Use when:
Don't use when:
Group failures by what's broken:
Each domain is independent — fixing tool approval doesn't affect abort tests.
Each agent gets:
Agent 1 → Fix agent-tool-abort.test.ts
Agent 2 → Fix batch-completion-behavior.test.ts
Agent 3 → Fix tool-approval-race-conditions.test.ts
// All three run concurrently
When agents return:
Good agent prompts are:
Example:
Fix the 3 failing tests in src/agents/agent-tool-abort.test.ts:
1. "should abort tool with partial output capture" - expects 'interrupted at' in message
2. "should handle mixed completed and aborted tools" - fast tool aborted instead of completed
3. "should properly track pendingToolCount" - expects 3 results but gets 0
These are timing/race condition issues. Your task:
1. Read the test file and understand what each test verifies
2. Identify root cause - timing issues or actual bugs?
3. Fix by replacing arbitrary timeouts with event-based waiting, fixing bugs if found
Do NOT just increase timeouts - find the real issue.
Return: Summary of what you found and what you fixed.
After agents return:
testing
AUTHORIZED USE ONLY: This skill contains dual-use security techniques. Before proceeding with any bypass or analysis: > 1.
testing
Provide comprehensive techniques for attacking Microsoft Active Directory environments. Covers reconnaissance, credential harvesting, Kerberos attacks, lateral movement, privilege escalation, and domain dominance for red team operations and penetration testing.
development
Detects missing zeroization of sensitive data in source code and identifies zeroization removed by compiler optimizations, with assembly-level analysis, and control-flow verification. Use for auditing C/C++/Rust code handling secrets, keys, passwords, or other sensitive data.
development
Comprehensive guide to auditing web content against WCAG 2.2 guidelines with actionable remediation strategies.