# Review

> agentic-workflows-blueprint.workflow.review

- Skill: `devton/review` (Agent Skill)
- Install (CLI): `npx skillmds@latest add devton/review`
- Raw SKILL.md: https://api.skillmd.com/api/skills/devton/review/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Productivity
- Author: devton (https://skillmd.com/u/devton)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/devton/review

---

## agentic-workflows-blueprint.workflow.review

### Goal

Review documentation quality and correctness with deterministic pass/fail
criteria.

### Scope

- Applies to: docs produced by the `document` workflow.
- Does not cover: implementing code fixes outside documentation scope.

### Triggers

- "Review this documentation output"
- "Check if document is correct"
- Automatic review step after `document`

### Inputs

- `docTarget`
- `sourceEvidence` (diff/files used by document workflow)
- `maxDocumentRetries` (default: 3)
- `currentAttempt` (1..3)

### Invariants

- Review must be evidence-based and actionable.
- Every failure must include concrete fix instructions.
- Keep feedback concise and unambiguous.
- For infra/network/IaC/OS docs, review must validate command evidence, operational safety notes, and rollback completeness.

### Procedure

1. Validate documentation claims against `sourceEvidence`.
2. Check structure clarity and required sections.
3. For infrastructure documentation, verify presence of:
  - pre-change assumptions;
  - post-change validation output;
  - rollback readiness and known residual risks.
4. Return one of:
  - `PASS`: no blocking issues;
  - `FAIL`: list exact issues and required fixes.
5. If `FAIL` and `currentAttempt < maxDocumentRetries`, route back to
  `document` with feedback.
6. If `FAIL` and retry limit reached, stop the chain and mark as unresolved.

### Outputs

- `reviewStatus`: `PASS` or `FAIL`
- `reviewFindings`: concise issue list with fix instructions
- `nextAction`: `run_changelog`, `rerun_document`, or `manual_intervention`

### Review gate

- Every `FAIL` item includes specific correction guidance.
- Final verdict maps directly to a next action.
- Retry rule (`<= 3`) is enforced.

### References

- `../../SKILL.md`
- `../document/SKILL.md`
- [Interactive HTML View](./README.html)


