Batch Plan Execute
Turns a requirement doc into dependency-ordered module plans, a checklist.md, then executes them with subagents.
Test report
- Verdict
- Tested · Works
- Score
- Tested
- Jul 16, 2026
- Environment
- Claude Code 2.x (agent harness)
- Upstream re-checked
- Aug 10, 2026 · 4f88f71
Ran a real 3-item requirements.md (digest job / email sender / settings UI) through both modes for real: the skill correctly identified that the email-sender module owns the shared digest_opt_out flag and made the UI module depend on it rather than re-defining it, produced per-module Decision-Required options with tradeoffs, and a checklist.md organized by user-visible outcome — none of which the flat baseline task list resolved.
Scored on four weighted criteria — install, triggering, output vs. baseline, docs. How scoring works
- Installs cleanly 5/5
- Triggers reliably 5/5
- Output vs. baseline 9/10
- Docs & honesty 5/5
What Batch Plan Execute does
Splits a requirement source into per-module implementation plans with explicit dependency layers and shared-change ownership, keeps a hidden .state.json lineage so it can revise plans instead of re-deriving them, and only implements via parallel/sequential subagents after an explicit execution command ("implement now", not mere approval). Triggers on requests to plan-then-build a multi-module feature from a requirements doc or existing plans/ directory.
How to install Batch Plan Execute
git clone https://github.com/micooz/skills
mkdir -p ~/.claude/skills
cp -r skills/skills/batch-plan-execute ~/.claude/skills/batch-plan-execute
Skills live in ~/.claude/skills/ (global) or .claude/skills/
(per-project). Restart Claude Code after installing.
Commands — how to trigger Batch Plan Execute
-
/batch-plan-executeTurns a requirement doc into dependency-ordered module plans, a checklist.md, then executes them with subagents.
It also activates on plain-language prompts like these:
-
Here's my requirements doc, turn it into dependency-ordered module plans -
I reviewed the plan for the payments module, implement it now with agents -
Break this feature requirement into a checklist before we start building
Frequently asked questions
- Is the Batch Plan Execute skill free?
- Yes. The skill itself is free from micooz/skills. SkillProof publishes the install command and an independent test verdict at no cost.
- Does Batch Plan Execute work with Claude Code?
- We tested it with Claude Code 2.x (agent harness) on Jul 16, 2026. Verdict: Tested · Works. Ran a real 3-item requirements.md (digest job / email sender / settings UI) through both modes for real: the skill correctly identified that the email-sender module owns the shared digest_opt_out flag and made the UI module depend on it rather than re-defining it, produced per-module Decision-Required options with tradeoffs, and a checklist.md organized by user-visible outcome — none of which the flat baseline task list resolved.
- What is the Batch Plan Execute SkillProof Score?
- 9.6/10 — installs cleanly 5/5, triggers reliably 5/5, output vs. baseline 9/10, docs & honesty 5/5.
- How do I install Batch Plan Execute?
- Copy the install command from this page, run it in your terminal, and restart Claude Code. Skills live in ~/.claude/skills/ (global) or .claude/skills/ inside a project.
- Can I use Batch Plan Execute with Cursor, Copilot, Gemini CLI, Codex or other AI tools?
- The SKILL.md format is native to Claude (Claude Code, Desktop, claude.ai). The instructions inside adapt to other assistants: Cursor rules, GitHub Copilot instructions, Windsurf rules, Custom GPTs, AGENTS.md for OpenAI Codex, and GEMINI.md for Google Gemini CLI — our conversion guides cover each, and the free converter on the tools page does the wrapping for you.