ワンクリックで
verifying
Post-implementation plan verification. Cross-references plans against actual changes for completeness and accuracy.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Post-implementation plan verification. Cross-references plans against actual changes for completeness and accuracy.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
File review tool — launch GUI, process comments, or install. Use when user mentions file-review, reviewing files, leaving comments, or processing review comments.
Execute a single DAG step as an autonomous background sub-agent. Sibling of phase-running for DAG plans produced by v-planning. Reads a step-<n>.md file directly, atomically claims it via frontmatter status, runs the three-bucket Success Criteria, and reports back. Spawned by v-implementing or by /run-step.
Parallel DAG-plan implementation skill. Reads a v-planning plan directory (root.md + step-<n>.md files), topologically schedules ready steps, and fans them out as parallel sub-agents. Use whenever the user invokes /v-implement, points at a plan directory produced by /v-plan, or asks to "run the parallel plan", "implement the DAG", or "fan out the steps" — even without those exact words. For linear plans (single .md file), use `implementing` instead.
Vertical / parallel implementation planning skill. Creates DAG-structured plan directories where each step is an independent, QA-able vertical slice that sub-agents can pick up and implement in parallel. Use whenever the user wants a plan that fans out (multiple independent features), invokes /v-plan, or asks for a "parallel plan", "DAG plan", "vertical plan", or "plan that can be parallelized" — even if they don't say those exact words. Prefer the linear `planning` skill for strictly sequential work.
Interactive exploration of ideas through Socratic Q&A. Produces progressive documents that serve as lightweight pre-PRDs feeding into research.
Plan implementation skill. Executes approved technical plans phase by phase with verification checkpoints.
| name | verifying |
| description | Post-implementation plan verification. Cross-references plans against actual changes for completeness and accuracy. |
You are performing a post-implementation audit of a plan, cross-referencing it against actual changes to ensure nothing was missed, nothing is stale, and the implementation matches what was planned.
All user-facing questions go through AskUserQuestion — see desplega:ask-user for conventions.
All read/research/validation work goes through sub-agents — default to run_in_background: true.
File-review is on by default (unless Autopilot) — invoke it on the verification report when ready.
This skill activates when:
/verify-plan commandAt the start of verification, adapt your interaction level based on the autonomy mode:
| Mode | Behavior |
|---|---|
| Autopilot | Run all checks, update plan, report summary at end |
| Critical (Default) | Ask about discrepancies and blocking items |
| Verbose | Walk through each check, confirm interpretation |
The autonomy mode is passed by the invoking command. If not specified, default to Critical.
Read the plan fully. If no path provided:
status: in-progress or status: completed in thoughts/*/plans/Parse all - [ ] and - [x] items in the plan. Report:
| Metric | Description |
|---|---|
| Total items | Count of all checkbox items |
| Checked items | Count of - [x] items |
| Unchecked Automated Verification | Items under #### Automated Verification: still unchecked |
| Unchecked Automated QA | Items under #### Automated QA: still unchecked |
| Unchecked Manual Verification | Items under #### Manual Verification: still unchecked |
Flag any Automated Verification or Automated QA items that are still unchecked — these are expected to be checked by the implementing/phase-running skills.
Check the plan's frontmatter for a git_commit field.
If git_commit exists:
git diff <git_commit>..HEAD --name-only to get changed filesIf git_commit does not exist:
If on a different branch than the plan:
Read the "What We're NOT Doing" section of the plan. Search the git diff for evidence of scope creep:
Be conservative here — flag only clear scope violations, not borderline cases.
For each phase's Success Criteria, re-run both runnable buckets:
Automated Verification (commands):
Automated QA (agent-driven scenarios):
Edge cases (apply to both):
OPTIONAL SUB-SKILL: When a verification command is missing, flaky, or so verbose that re-running it pollutes the report, invoke desplega:script-builder to wrap it into a re-runnable script. The generated script enforces PASS/FAIL + /tmp log output, so future verifications get a clean single-line result instead of a wall of stdout. The wrapped command stays in the plan; subsequent verifications discover the new script via the <important if> block script-builder adds to CLAUDE.md.
Compare phase descriptions against actual implementation:
Flag phases where the description no longer matches reality as stale.
Present findings categorized as:
| Category | Meaning | Examples |
|---|---|---|
| Blocking | Must be resolved before plan can be marked complete | Unchecked automated items, failing success criteria |
| Warning | Should be reviewed but don't block completion | Unexpected files changed, potential scope creep |
| Info | Informational, no action needed | Stale descriptions, minor mismatches, branch differences |
If all blocking items are resolved:
status: completed in frontmatterlast_updated and last_updated_by fieldsIf blocking items remain:
OPTIONAL SUB-SKILL: If significant insights, patterns, gotchas, or decisions emerged during this workflow, consider using desplega:learning to capture them via /learning capture. Focus on learnings that would help someone else in a future session.
After verification completes, use AskUserQuestion with:
| Question | Options |
|---|---|
| "Verification complete. What's next?" | 1. Run QA (→ /qa), 2. Run review (→ /review), 3. Done |
File-review is on by default (unless Autopilot):
/file-review:file-review <plan-path> for inline human commentsfile-review:process-review skill