From toolu
Use to review an implementation plan BEFORE writing code — check it's executable, complete, and won't collapse on contact with the codebase. Tells: "review the plan", "is this plan ready", "poke holes in the plan", "did we miss a step". Pairs with the `plan` skill; runs between plan and execution in the toolu workflow.
How this skill is triggered — by the user, by Claude, or both
Slash command
/toolu:plan-reviewThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
A plan that looks fine on paper but skips a dependency, reuses nothing, or has unverifiable steps turns into thrash during execution. This phase pressure-tests the plan before anyone writes code. It is adversarial on purpose — find the gap now (a sentence to fix) rather than mid-implementation (a half-built branch to unwind).
A plan that looks fine on paper but skips a dependency, reuses nothing, or has unverifiable steps turns into thrash during execution. This phase pressure-tests the plan before anyone writes code. It is adversarial on purpose — find the gap now (a sentence to fix) rather than mid-implementation (a half-built branch to unwind).
Read the plan and run it against the checklist. For each item ask would an implementer be blocked, misled, or forced to guess? — that's the bar.
check command in the ## Steps (machine-readable) block (else blocker), and reject empty steps (steps:[] or a step missing id/title/check). The checker can only stamp green what it can run.__tests__/ / tests/)?docs/ guides, SKILL.md triggers, release notes), that's a finding.One line per finding, severity-tagged, location + problem + fix — no praise, no restating what's fine:
<step/section>: 🔴 blocker: <what's missing/wrong>. <the fix>.
<step/section>: 🟡 should-fix: <gap>. <the fix>.
<step/section>: 🔵 consider: <minor>. <the fix>.
End with a verdict:
execution.plan.Flag only what blocks confident execution. A plan that reads clean but can't be verified step-by-step is not clean — say so.
npx claudepluginhub falconiere/toolu --plugin tooluCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.