ワンクリックで
subagent-driven-development
Use when executing implementation plans with independent tasks in the current session
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Use when executing implementation plans with independent tasks in the current session
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
Use before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation.
Use when facing 2+ independent tasks that can be worked on without shared state or sequential dependencies
Use when you have a written implementation plan to execute with review checkpoints
Use when implementation is complete, all tests pass, and you need to decide how to integrate the work - guides completion of development work by presenting structured options for merge, PR, or cleanup
Use when creating or updating a repository's root AGENTS.md file to provide project-specific guidance for agents
Use when receiving code review feedback, before implementing suggestions, especially if feedback seems unclear or technically questionable - requires technical rigor and verification, not performative agreement or blind implementation
SOC 職業分類に基づく
| name | subagent-driven-development |
| description | Use when executing implementation plans with independent tasks in the current session |
| metadata | {"user-invocable":true,"disable-model-invocation":true} |
Execute plan by creating focused work sessions per task, with review after each.
Why separate sessions: You delegate tasks to specialized contexts. By precisely crafting their instructions and context, you ensure they stay focused and succeed at their task. This also preserves your own context for coordination work.
Core principle: Fresh context per task + review = high quality, fast iteration
Continuous execution: Do not pause to check in with the user between tasks. Execute all tasks from the plan without stopping. The only reasons to stop are: blocked status you cannot resolve, ambiguity that genuinely prevents progress, or all tasks complete.
Use when:
Don't use when:
For each task:
Create focused work session with:
Handle questions - If the work session asks questions, answer clearly before letting them proceed
Review completion - When work session reports done:
Mark complete - Update checklist
Continue to next task - No pause between tasks
/finishing-a-development-branch to completeDONE: Proceed to review.
DONE_WITH_CONCERNS: Read concerns. If about correctness/scope, address before review. If observations, note and proceed.
NEEDS_CONTEXT: Provide missing information and restart work session.
BLOCKED: Assess blocker:
Never ignore an escalation or force retry without changes.
You: I'm using /subagent-driven-development to execute this plan.
[Read plan file once: docs/plans/feature-plan.md]
[Extract all 5 tasks with full text and context]
[Create checklist with all tasks]
Task 1: Hook installation script
[Create work session with full task text + context]
Work session: "Before I begin - should the hook be installed at user or system level?"
You: "User level (~/.config/hooks/)"
Work session: "Got it. Implementing now..."
[Later] Work session:
- Implemented install-hook command
- Added tests, 5/5 passing
- Committed
[Review: verify changes, check quality, run tests]
[Mark Task 1 complete]
Task 2: Recovery modes
[Create work session with full task text + context]
Work session: [No questions, proceeds]
Work session:
- Added verify/repair modes
- 8/8 tests passing
- Committed
[Review: finds missing progress reporting from spec]
[Create fix session to add progress reporting]
[Review again: approved]
[Mark Task 2 complete]
...
[After all tasks]
[Run full test suite]
[Use /finishing-a-development-branch]
Done!
vs. Manual execution:
Efficiency gains:
Quality gates:
Never:
If work session asks questions:
If review finds issues:
Related workflows:
/brainstorming to create design first/writing-plans to create the plan this executes/finishing-a-development-branch to complete after all tasks/test-driven-development principles in each work session