ワンクリックで
workflows-review
Verify implementation claims by dispatching review agents. Stage 5 of the development workflow.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Verify implementation claims by dispatching review agents. Stage 5 of the development workflow.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
A-Mem thought evolution — check which prior thoughts should be updated when a significant new insight arrives. Spawns a lightweight subagent to classify prior thoughts as UPDATE or NO_UPDATE, then applies revisions. Use during long reasoning sessions when you reach a synthesis, make a decision, or discover something that changes earlier assumptions. Triggers on "this changes what I thought earlier", "update prior reasoning", "evolve thoughts", or automatically on conclusion/synthesis thoughts in sessions >10 thoughts.
Cross-session knowledge retrieval from the Thoughtbox knowledge graph. Searches entities, traverses relations, retrieves observations, and synthesizes findings from past sessions. Use when you need to recall prior decisions, check what's already known about a topic, find related insights, or build on past work. Triggers on "what do we know about", "have we seen this before", "recall", "prior decisions about", "knowledge graph", or when starting work that might have prior context.
Capture significant learnings from the current work session. Structures insights for future sessions and updates agent memory.
Write or improve prompts for Codex using Anthropic's official best practices. Creates system prompts, agent prompts, tool descriptions, and MCP resource templates. Pass an existing prompt to improve it, or describe what you need to create one from scratch.
Generate architecture diagrams for a codebase subsystem or module. Explores source files and produces Mermaid diagrams in docs/.
Extract reusable principles and decision frameworks from accumulated experience. Use after significant work sessions, project milestones, or when you notice recurring patterns worth codifying.
| name | workflows-review |
| description | Verify implementation claims by dispatching review agents. Stage 5 of the development workflow. |
| argument-hint | [summary paths or review scope] |
| user-invocable | true |
Review the implementation: $ARGUMENTS
You are executing Stage 5 (Review) of the development workflow. Implementation is complete and sub-agent summaries exist on disk. Your job is to dispatch review agents that verify claims, check for regressions, and assess quality. You do NOT fix issues — that's Stage 6's job.
Before starting, verify:
.workflow/state.json exists and currentStage is "review"stages.implementation.artifacts.summaries in state)If pre-conditions are not met, report what's missing and halt.
Read all sub-agent summaries from .workflow/summaries/*.md. Extract:
### Claims section### Tests section### Spec/Evidence Alignment### Risks sectionDispatch specialized review agents in parallel. Each gets the full claims list and the relevant source files.
Required reviews (always run these):
Claim Verification — Use a general-purpose agent to:
Type Safety — Use the compound-engineering:review:kieran-typescript-reviewer agent (or dispatch via Agent tool with instructions to check types):
npm run build or tsc --noEmitPattern Consistency — Use compound-engineering:review:pattern-recognition-specialist agent:
Conditional reviews (run when relevant):
Security — If changes touch auth, input handling, or external APIs:
compound-engineering:review:security-sentinel agentPerformance — If changes touch hot paths, data structures, or queries:
compound-engineering:review:performance-oracle agentSimplicity — If changes add new abstractions or utilities:
compound-engineering:review:code-simplicity-reviewer agentEach review agent returns findings. Classify each finding:
| Severity | Meaning | Blocks? |
|---|---|---|
| blocking | Claim is false, test fails, or security issue | Yes |
| warning | Quality concern, pattern deviation, missing edge case | No (but should fix) |
| info | Style suggestion, minor improvement | No |
Cross-reference the implementation's spec claim alignment statements against the review results:
Write the review report to .workflow/review-report.md:
# Review Report: <title>
**Workflow**: <id>
**Reviewed**: <ISO timestamp>
**Summaries reviewed**: N
## Verdict: PASS / FAIL
## Findings
### Blocking (must fix before merge)
1. [finding with file:line reference]
### Warnings (should fix)
1. [finding with file:line reference]
### Info
1. [observation]
## Claim Verification
| # | Claim | Status | Evidence |
|---|-------|--------|----------|
| 1 | "..." | VERIFIED / FAILED / UNVERIFIABLE | [detail] |
## Hypothesis Check
| Hypothesis | Implementation Says | Review Says | Aligned? |
|-----------|-------------------|-------------|----------|
| H1 "..." | SUPPORTS | SUPPORTS | Yes |
## Test Results
- Tests run: N
- Tests passed: N
- Tests failed: N
- Commands: [list]
Update workflow state (.workflow/state.json):
stages.review.status to "completed"stages.review.completedAt to current ISO timestampstages.review.artifacts.findings to the findings listcurrentStage to "compound" (skip revision)currentStage to "revision"updatedAtPresent the handoff:
REVIEW COMPLETE
================
Verdict: PASS / FAIL
Blocking findings: N
Warnings: N
Claims verified: N/N
Next: Stage 6 - Revision (/workflow-revision) [if FAIL]
Next: Stage 7 - Compound (/workflows-compound) [if PASS]