원클릭으로
workflow-review
Review completed implementation — runs final verification across all changes and presents results for user sign-off.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Review completed implementation — runs final verification across all changes and presents results for user sign-off.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Abort a workflow — cleans up worktrees and branches, marks the workspace as aborted.
Finalize the workflow — squash commits into one clean commit, remove worktrees, and close the workspace.
Execute all planned tasks — creates per-task git worktrees, spawns implementer and reviewer agents in dependency order, aggregates results.
Break an approved design into atomic implementation tasks — creates dependency-ordered task specs ready for parallel agent execution.
Convert discussion output into a validated design — reads captured requirements and presents architecture for iterative approval.
Kick off a new workflow by discussing requirements — asks clarifying questions, explores trade-offs, and captures decisions in a structured format.
| name | workflow-review |
| description | Review completed implementation — runs final verification across all changes and presents results for user sign-off. |
Present the implementation results for user sign-off before committing.
The user invokes this as /workflow-review {slug}.
$ARGUMENTS is empty, scan .workflow/*/ directories and list available workspaces — ask which one.workflow/*/ for a folder matching the slug $ARGUMENTSSTATUS.yaml — phase must be implementation-complete. If not, tell the user which phase to complete first..workflow/{type}/{slug}/impl/IMPLEMENTATION.md existsphase: review, updated: {ISO timestamp}requesting-code-review — Invoke this skill to frame the review correctly. Present the full diff context, not just summaries.verification-before-completion — Run full verification (bun check, bun lint --fix) before declaring the review passed.code-simplifier (agent) — After verification passes, spawn this agent on the changed files to simplify and refine code for clarity and consistency. It preserves all functionality while improving maintainability.playwright (MCP tools) — If the work involves visible UI changes, use Playwright to take screenshots of affected pages for visual verification. Navigate to localhost:3000 (start dev server if needed) and screenshot the relevant routes.feature-dev:code-reviewer (agent) — Spawn for a final confidence-scored review of the full diff. It reports only high-priority issues (confidence >= 80) and references CLAUDE.md guidelines.Read impl/IMPLEMENTATION.md — the YAML frontmatter contains structured results:
total_tasks, completed, failed, all_approved — summary statsverification — aggregate TypeScript and lint statustasks — array of {id, title, status, commit, review} for each taskAlso read individual task reports from impl/task/TASK_*.md for detailed notes and review findings.
Read STATUS.yaml for base_worktree — this is the worktree with all merged changes.
In the base worktree (which has all task branches merged in), run:
bun --cwd {BASE_WORKTREE} check
bun --cwd {BASE_WORKTREE} lint --fix
Both must pass across the entire codebase, not just changed files.
Show the complete diff from the branch point:
git -C {BASE_WORKTREE} diff main...HEAD --stat
Present a structured summary:
## Implementation Review: {slug}
### Changes Overview
{git diff --stat output}
### Tasks Completed
{Table from IMPLEMENTATION.md}
### Verification
- TypeScript: PASS/FAIL
- Lint: PASS/FAIL
### All Task Reviews: APPROVED
### Ready to finalize?
If the user requests changes:
If the user approves:
phase: review-complete/workflow-complete {slug} to squash and finalize."