review-implementation

Validate implementation work against plan specifications with Codex CLI reviews.

1|Updated Dec 21, 2025
One-click install
npx skills add https://github.com/dopsonbr/agent-kit --skill review-implementation-dopsonbr
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: review-implementation
Source: https://github.com/dopsonbr/agent-kit/tree/main/content/skills/review-implementation
Command: npx skills add https://github.com/dopsonbr/agent-kit --skill review-implementation-dopsonbr

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires codex, and includes references (resource) components.

What problem does it solve?

This Skill provides quality gates during implementation by delegating to Codex CLI for independent code review at each phase completion.

Quick Start

After completing Phase 1 of plan execution, invoke /review-implementation --scope phase --phase 1.

Frequently Asked Questions about review-implementation

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I validate code implementation against my plan specifications?

Code review validation checks implementation work against plan specs at each phase completion. This Skill applies quality gates during plan execution by delegating to Codex CLI for independent review, verifying task completion, code quality, and test adequacy to prevent issues from compounding.

When should I run code reviews during plan execution?

Run reviews at phase completion checkpoints, after each phase finishes, at plan completion, and for diffs. Invoke with `/review-implementation --scope phase --phase [number]` after completing each phase to catch quality issues early.

What verification steps does the review process include?

The review delegates to Codex CLI and runs mandatory verification: `bun test`, `bun run typecheck`, and `bun run lint`. It outputs a structured review report covering task completion, code quality, test adequacy, and issue discovery.

Can I use this Skill with uncommitted code or custom review prompts?

Yes. The Skill supports Codex review commands for uncommitted changes, base branches, specific commits, or custom prompts, giving you flexible review scope tailored to your workflow stage.

What's the difference between reviewing a phase versus a full plan?

Phase reviews validate work at each checkpoint to catch issues early; plan completion reviews verify the entire implementation. Use phase scope during development and plan scope before finalizing to ensure cumulative quality.