review

review is a skill for Claude Code, Codex from AlanHuang168/AI-Project-Workflow. It costs 0 tokens per session (602 once invoked), scanned A, original, MIT.

A review process for checking whether software matches its product requirements, design documents, test plan, and code. It also looks for security, performance, maintainability, scope, and testing problems.

In plain words
What is it for?
Use it after implementation to produce an actionable review report from the project documents and relevant source and test files.
Why use it?
It helps find gaps between what was requested, designed, tested, and built before release.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions AGENTS.md.

Good fit Use it after implementation to produce an actionable review report from the project documents and relevant source and test files.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/alanhuang168/ai-project-workflow/review
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add AlanHuang168/AI-Project-Workflow --skill review
Clone the repo
git clone --depth 1 https://github.com/AlanHuang168/AI-Project-Workflow

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for review

README.md
[![agentmods](https://agentmods.dev/badge/skills/alanhuang168/ai-project-workflow/review/github.svg)](https://agentmods.dev/skills/alanhuang168/ai-project-workflow/review)
Your own site
<a href="https://agentmods.dev/skills/alanhuang168/ai-project-workflow/review"><img src="https://agentmods.dev/badge/skills/alanhuang168/ai-project-workflow/review/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for review

Your own site · 80×15
<a href="https://agentmods.dev/skills/alanhuang168/ai-project-workflow/review"><img src="https://agentmods.dev/badge/skills/alanhuang168/ai-project-workflow/review.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 602 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00000 $0.00602
Opus 5 $0.00000 $0.00301
Sonnet 5 $0.00000 $0.00120
Haiku 4.5 $0.00000 $0.00060

Measured 10d ago against content hash 2f4346e4e925, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

review scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

adapters/catpaw/.catpaw/skills/review/SKILL.md · 83 lines

How it starts

The opening of the file, as written. The whole thing — 83 lines — stays where its author put it; the contents beside it link to each section on GitHub.


name: review description: Review consistency between PRD, Architecture, SDD, Test Plan, and code. Identify scope creep, missed requirements, security, performance, maintainability, and test issues. Use when entering review or invoking /review. version: 1.0.0 stage: review

Goal

Review the implementation against the approved documents and produce an actionable review report.

Use Cases

  • The user invokes /review.
  • The user asks to check whether code matches design.
  • Implementation is complete and the project is entering release readiness checks.

Preconditions

  • impl is complete.
  • PRD, Architecture, SDD, Test Plan, and relevant code are readable.

Required Context

  • AGENTS.md
  • .ai-workflow/state.json
  • core/templates/REVIEW.template.md
  • docs/PRD.md
  • docs/ARCH.md
  • docs/SDD.md
  • docs/TEST.md
  • Relevant source and test files

Inputs

  • Current implementation.
  • Upstream documents.
  • Existing docs/REVIEW.md, if present.

Allowed Changes

  • docs/REVIEW.md
  • .ai-workflow/state.json
  • By default, do not modify code.

Steps

  1. Read upstream documents and code.
  2. Check consistency across PRD, Architecture, SDD, Test Plan, and code.
  3. Identify scope creep and missed requirements.
  4. Check security, performance, maintainability, error handling, and test completeness.
  5. Classify issues as blocking or non-blocking and provide remediation advice.
  6. Write docs/REVIEW.md.
  7. If blocking issues exist, keep currentStage = "review" and record blocked = true with the reason.
  8. If no blocking issues exist, add review to completedStages, set currentStage = "deploy", and update the timestamp.

Outputs

  • docs/REVIEW.md

Acceptance Criteria

  • The report includes review summary, blocking issues, non-blocking issues, document consistency, code quality, test coverage, security risks, and release recommendation.
  • Every blocking issue includes file location, impact, and remediation advice.
  • No unverified claim is reported as passed.

Read the full file on GitHub · 83 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 83 lines · 0 tokens per session scan A 2f4346e4e925

Subscribe to this mod's changes

review is a skill published in the GitHub repository AlanHuang168/AI-Project-Workflow (28 stars, last pushed 1mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 602 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

testing-anti-patterns

Reviews test code to identify and fix common testing anti-patterns including flaky tests, over-mocking, brittle assertions, test interdependency, and hidden test logic. Flags bad patterns, explains the specific defect, and provides corrected implementations. Use when reviewing test code, debugging intermittent or…

rohitg00/skillkit · 95 tokens

quality-gates

Expert knowledge in quality assurance gates, code quality standards, and automated checks. Use when enforcing quality standards.

sampleXbro/agentsmesh · 25 tokens

skillshare-codebase-audit

Cross-validate CLI flags, docs, tests, and targets for consistency across the codebase. Use this skill whenever the user asks to: audit the codebase, check for consistency issues, find undocumented flags, verify test coverage, validate targets.yaml, check handler split conventions, or verify oplog instrumentation.…

runkids/skillshare · 106 tokens

skillshare-implement-feature

Implement a feature from a spec file or description using TDD workflow. Use this skill whenever the user asks to: add a new CLI command, implement a feature from a spec, build new functionality, add a flag, create a new internal package, or write Go code for skillshare. This skill enforces test-first development…

runkids/skillshare · 114 tokens

go-testing

Trigger: Go tests, go test coverage, Bubbletea teatest, golden files. Apply focused Go testing patterns.

Gentleman-Programming/gentle-ai · 26 tokens

review-work

Post-implementation review orchestrator. Launches 5 parallel background sub-agents: Oracle (goal/constraint verification), Oracle (code quality), Oracle (security), unspecified-high (hands-on QA execution), unspecified-high (context mining from GitHub/git/Slack/Notion). All must pass for review to pass. MUST USE…

code-yeongyu/lazycodex · 125 tokens