From greymatter
Runs an independent end-of-plan review comparing built work against the spec. Dispatches a reviewer subagent and surfaces spec-coverage gaps, drift issues, and thin test coverage before shipping.
How this skill is triggered — by the user, by Claude, or both
Slash command
/greymatter:reviewing-executionThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
After every chunk in a plan completes, before the work is considered shipped, run an independent review of what was actually built versus what the spec required.
After every chunk in a plan completes, before the work is considered shipped, run an independent review of what was actually built versus what the spec required.
Both review channels have run: dev-pipeline.js review-execution (mechanical findings) and the reviewer subagent (judgment findings). The user has triaged each finding (accept / defer / reject). If there are accepted findings requiring code work, you've offered to write a follow-up plan (back to writing-plans). If clean, you've congratulated the user and stopped.
Confirm preconditions. All chunks in plan.tracker.json are completed. If not, point at the pending chunk(s) and stop.
Run mechanical findings:
node greymatter/scripts/dev-pipeline.js review-execution <plan-path>
Returns JSON: spec-coverage gaps, drift summary across chunks, cross-chunk consistency checks.
Dispatch the reviewer subagent. Use prompts/reviewing-execution/prompt.md. Subagent has no session history — it reviews the artifact (plan, spec, observations, drift summary), not your reasoning, and produces judgment findings (test-coverage thinness, surface-area creep, observation patterns) the verb can't compute.
Triage with the user. Two channels: mechanical (verb) + judgment (subagent).
Hand off.
writing-plans for a follow-up plan (it'll roll up to the same roadmap row if applicable).status: shipped at the top of plan.md frontmatter), tell the user, stop.npx claudepluginhub advenire-consulting/greymatter --plugin greymatterIndependently verifies implementation against a plan document by reading the plan from disk and inspecting the codebase from scratch. Produces a structured PASS/FAIL review document.
Verifies plan completion, test-matrix coverage, and code-to-spec traceability after implementation. Produces a SpecReview artifact with PASS/CONDITIONAL/FAIL verdict.
Self-review skill that critiques completed work against the spec and plan, surfaces issues by severity, and requires user sign-off before outward-facing actions.