review-plan
Installation
SKILL.md
Post-Planning Quality Validation
Overview
This skill validates plan and task quality after /speckit.plan and /speckit.tasks have run. It checks coverage, scans for red flags, enforces task quality standards, and generates REVIEWERS.md.
Prerequisites
{Skill: spec-kit}
Both plan.md and tasks.md MUST exist before running this skill. If either is missing, stop with an error:
SPEC_DIR="specs/[feature-name]"
[ -f "$SPEC_DIR/plan.md" ] && echo "plan.md found" || echo "ERROR: plan.md missing - run /speckit.plan first"
[ -f "$SPEC_DIR/tasks.md" ] && echo "tasks.md found" || echo "ERROR: tasks.md missing - run /speckit.tasks first"
If either file is missing, stop and instruct the user to generate the missing artifact.