Execute plans task-by-task with two-stage review.
npx skills add https://github.com/HezaoHezao/poirot --skill subagent-driven-development
Execute implementation plans task-by-task with systematic two-stage review
between tasks.
Core principle: Fresh focus per task + two-stage review (spec then quality)
= high quality, fast iteration.
> Poirot note: The original skill dispatches a fresh subagent per task via
> delegate_task. Poirot has no subagents, so this version executes tasks
> sequentially in the same context with a deliberate context-reset between
> tasks. The two-stage review methodology is preserved.
plan skill or user requirements)Read the plan file. Extract ALL tasks with full text and context upfront:
read_file(".poirot/plans/feature-plan.md")
Create a todo list with all tasks. Read the plan ONCE — don't re-read per task.
For EACH task in the plan:
Before starting each task, deliberately reset your focus:
Follow the task's steps exactly:
test-driven-development skill)bash("pytest tests/test_feature.py::test_name -v")
# ... implement ...
bash("pytest tests/ -q")
bash("git add -A && git commit -m 'feat: task N description'")
After implementation, review against the plan:
If spec compliance fails: Fix before proceeding to Stage 2.
Review the committed diff for quality:
Use the requesting-code-review skill's checklist for thoroughness.
If quality review fails: Fix, re-commit, re-review.
Only after both reviews pass:
Implementation fails (tests don't pass):
systematic-debugging skill to find root causeReview fails (spec or quality):
Task is blocked (depends on unfinished work):
Re-read the task from the plan. Compare against what you actually built:
Task says: "Create User model with email and password_hash fields"
Check:
- [ ] User model exists
- [ ] Has email field
- [ ] Has password_hash field
- [ ] No extra fields not in the task
- [ ] Test exists for the model
Common spec violations:
Review the git diff for the current task:
bash("git diff HEAD~1 HEAD")
Check for security, correctness, and conventions. Use the requesting-code-review
skill's security scan + self-review checklist.
you feel confused about which task you're on, re-read the plan + current task.
Each task is atomic.
it, you're just implementing sequentially.
not the entire task.
changes across tasks — if a later task breaks, you can't cleanly revert.
Create new skills, modify and improve existing skills, and measure skill performance. Use when users want to create a skill from scratch, edit, or optimize an existing skill, run evals to test a skill, benchmark skill performance with variance analysis, or optimize a skill's description for better triggering accuracy.
Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.
Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.
Replace with description of the skill and when Claude should use it.
Use when facing 2+ independent tasks that can be worked on without shared state or sequential dependencies
This skill should be used when the user wants to "create a skill", "add a skill to plugin", "write a new skill", "improve skill description", "organize skill content", or needs guidance on skill structure, progressive disclosure, or skill development best practices for Claude Code plugins.
Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill.
Use when creating new skills, editing existing skills, or verifying skills work before deployment
Take hezaohezao/subagent-driven-development from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.