Skip to content

/wbReview — Command Hub ​

/wbReview performs a targeted review of specific code changes against a plan. It verifies that every task marked complete was actually completed, catching the single failure mode an audit misses: checkbox optimism. Unlike /wbAudit which evaluates an entire codebase holistically, /wbReview zooms in on a specific diff or plan, making it faster and more focused for day-to-day verification.

🎯 Strategic Position ​

The default failure mode of an AI worker is marking tasks ✅ without finishing them. /wbReview is the adversarial second pass that asks: "assume the worker was lazy. Where did they cut corners?" It requires a plan file — without one you're at the wrong command.

  • After an AI worker finishes a plan — verify every checkbox against code.
  • After executing a plan yourself — your own work is what you're least qualified to judge.
  • Post-hoc on a hotfix — quick check against the brief plan written under pressure.
  • After a docs rewrite — verify nothing was hallucinated.

🛠️ Operating Modes ​

ModeTriggerOutput
Standard/wbReview <target> --plan=<plan>PASS / PASS WITH DEBT / FAIL verdict with task-level detail
Act/wbReview <target> --plan=<plan> --actVerdict plus automatic fix-up of failed tasks
Chain to plan/wbReview <target> --plan=<plan> --wbPlanVerdict plus next-step plan generation

✅ What a useful review contains ​

  1. A verdict: 🟢 PASS, 🟡 PASS WITH DEBT, or 🔴 FAIL.
  2. Task-level detail — which checkbox claims passed but the code didn't.
  3. A "what the review found that the plan missed" section — side effects, new deps, regressions.
  4. A score (1–10) with a merge / don't-merge recommendation.
  5. Re-opened checkboxes in the plan file for failed tasks.

🚫 What it cannot do ​

Not thisUse instead
Audit the entire codebase/wbAudit
Run tests/wbTest
Fix issues automaticallyCombine with --act flag
Is this file good?/wbAudit <file>
Pre-release sanity check/wbAudit

It refuses if the plan file is missing, malformed, or if the current code state has no detectable relationship to the plan.

📚 Reading Order ​

  1. ELI5 — the one-paragraph mental model.
  2. Practical — step-by-step on a real project.
  3. Expert — architecture, edge cases, and when NOT to use.
  4. Examples · Part 1 · Part 2 — annotated transcripts.
  5. Exhaustive simulation · Live demo.
  • wbReview.md — the command reference this hub orients you around.
  • /wbAudit — holistic assessment when you don't have a plan.
  • /wbPlan — the plan you review against.
  • /wbTest — runtime verification after review passes.

Quick Reference ​

bash
/wbReview <target> --plan=<plan.md>            # verify plan execution
/wbReview <target> --plan=<plan.md> --act      # verify and autofix
/wbReview <target> --plan=<plan.md> --wbPlan   # verify and generate next steps


← Home · Commands · Install | wb-flow on npm · flow.wbc-ui.com · wi-bg.com