From 9bc53096e79a304824a6fd1c8dc0dbeb3920698f Mon Sep 17 00:00:00 2001 From: ZGaetano Date: Tue, 2 Jun 2026 22:45:28 -0400 Subject: [PATCH] feat: migrate all skills from Claude session: SKILL.md --- skills/dispatching-parallel-agents/SKILL.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 skills/dispatching-parallel-agents/SKILL.md diff --git a/skills/dispatching-parallel-agents/SKILL.md b/skills/dispatching-parallel-agents/SKILL.md new file mode 100644 index 0000000..da30cce --- /dev/null +++ b/skills/dispatching-parallel-agents/SKILL.md @@ -0,0 +1,14 @@ +--- +name: dispatching-parallel-agents +description: Use when facing 2+ independent tasks that can be worked on without shared state or sequential dependencies +--- + +# Dispatching Parallel Agents + +## Overview + +You delegate tasks to specialized agents with isolated context. By precisely crafting their instructions and context, you ensure they stay focused and succeed at their task. They should never inherit your session's context or history — you construct exactly what they need. This also preserves your own context for coordination work. + +When you have multiple unrelated failures (different test files, different subsystems, different bugs), investigating them sequentially wastes time. Each investigation is independent and can happen in parallel. + +**Core principle:** Dispatch one agent per independent problem domain. Let them work concurrently.