From 3a1fec409db0ee5b1498f90d7a035836abe58081 Mon Sep 17 00:00:00 2001 From: ZGaetano Date: Tue, 2 Jun 2026 22:45:49 -0400 Subject: [PATCH] feat: migrate all skills from Claude session: SKILL.md --- skills/subagent-driven-development/SKILL.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 skills/subagent-driven-development/SKILL.md diff --git a/skills/subagent-driven-development/SKILL.md b/skills/subagent-driven-development/SKILL.md new file mode 100644 index 0000000..5e23d56 --- /dev/null +++ b/skills/subagent-driven-development/SKILL.md @@ -0,0 +1,12 @@ +--- +name: subagent-driven-development +description: Use when executing implementation plans with independent tasks in the current session +--- + +# Subagent-Driven Development + +Execute plan by dispatching fresh subagent per task, with two-stage review after each: spec compliance review first, then code quality review. + +**Why subagents:** 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. + +**Core principle:** Fresh subagent per task + two-stage review (spec then quality) = high quality, fast iteration