ワンクリックで
prepare-next
Use after a run or execution slice completes to produce a clean next-run handoff without auto-applying stale context.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Use after a run or execution slice completes to produce a clean next-run handoff without auto-applying stale context.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Use before implementation work to turn operator briefings into an approved design with explicit trade-offs.
Run the clarification pipeline — research, clarify scope, brainstorm design, generate task specs and execution plan. Pauses for user approval between phases.
How to use Claude Code CLI programmatically for reviews, automation, and non-interactive operations within Wazir pipelines.
How to use Codex CLI programmatically for reviews, execution, and sandbox operations within Wazir pipelines.
Measure pipeline compliance for a completed run — checks phase execution, artifact production, gate evidence, hook enforcement, and publishes per-step and aggregate compliance scores.
Use when behavior is wrong or verification fails. Follow an observe-hypothesize-test-fix loop instead of guesswork.
| name | prepare-next |
| description | Use after a run or execution slice completes to produce a clean next-run handoff without auto-applying stale context. |
Quick check before you begin — is there a wz: skill for what you're about to do? If yes, use it. Also, your phase checklist at .wazir/runs/latest/phases/ needs to be open and followed. Have you looked at it?
When multi-model mode is enabled:
Follow the Canonical Command Matrix in hooks/routing-matrix.json.
wazir index search-symbols <query> firstwazir recall file <path> --tier L1 for targeted readswazir index build && wazir index summarize --tier allCreate a next-run handoff that captures the run outcome and sets up the next session.
This skill corresponds to completion pipeline Stage 8 (Prepare Next Session) in docs/vision/pipeline-complete.md.
One of two modes:
execution-summary.md. The summary includes the sign-off recommendation — DO NOT SHIP runs still get a summary documenting what was found and why.handover-batch-N.md.Read from the current run directory:
run-config.yaml — run identity, intent, depthcompletion/final-review/ — all pass reports (pass-1-internal.md, pass-2-cross-model.md, pass-3-reconciliation.md if exists)completion/final-review/finding-adoption.md — which findings led to code changescompletion/concerns/ — concern resolution outputcompletion/integration/ — integration verification resultsreviews/ — all per-task review pass logsartifacts/ — task completion evidenceclarified/ — spec, design, plan artifactsuser-input-log.ndjson — user corrections (for learning proposals section)git log --oneline main..HEADAfter drafting any prose output artifact (execution-summary or handover), invoke wz:humanize on the draft before writing to disk (domain: technical-docs). Fix any high/medium findings. The execution summary is the final pipeline deliverable — it must read as authored, not generated.
execution-summary.mdWrite to .wazir/runs/<run-id>/execution-summary.md:
# Execution Summary — <run-id>
**Status:** Complete
**Branch:** <branch-name>
**Date:** YYYY-MM-DD
**Sign-off:** SHIP / SHIP WITH CAVEATS / DO NOT SHIP
## What Was Built
[Linked to spec requirements, status per requirement]
## Verification Summary
Sanity check: are you still using wz: skills where they apply, or did you start doing things manually because it felt faster? The skills exist for consistency, not convenience. Which skill should you be using right now?
[Tests: N pass / N fail. Type errors: N. Lint errors: N. Coverage: N%]
## Concerns and Resolutions
[Final disposition of each concern from completion Stage 2]
## Final Review Findings
[Per pass: Pass 1 (internal) — N findings. Pass 2 (cross-model) — N findings. Pass 3 (reconciliation) — ran/skipped.]
[Finding adoption rate: X% of findings led to code changes]
## Residuals
[Residuals from execution and their final disposition]
## Learning Proposals
[Count by impact (HIGH/MEDIUM/LOW), pointer to memory/learnings/proposed/]
## Quality Delta
[Per-dimension first-pass vs final-state scores]
## Cost and Timing
[Token usage, wall-clock time per phase]
## Commits
[git log --oneline of all commits in this run]
handover-batch-N.mdWrite to .wazir/runs/<run-id>/handover-batch-N.md:
# Handover — <run-id> Batch N
**Status:** Incomplete
**Branch:** <branch-name>
**Date:** YYYY-MM-DD
## Subtask Status
[Completed / in-progress / remaining subtask IDs with status and lifecycle state]
## Accumulated Concerns
[DONE_WITH_CONCERNS entries pending resolution]
## Blocked Subtasks
[Subtask IDs with reasons and lifecycle state (abandoned, upstream_failed, waiting_on_user)]
## Partial Learnings
[Learnings discovered during this batch]
## Environment State
[Active branches, worktrees, provisioned runtime isolation]
## Resume Prompt
[~500 tokens, self-contained, references files for depth]
wazir capture summary --run <run-id>
input/ — it belongs to the userFinal challenge: name every checklist item you completed and what you produced for each one. If any answer is "I think I covered that" instead of "here's the output," you have more work to do. Which items are you unsure about?