Agent Skill
2/7/2026two-stage-review
This skill should be used after completing development tasks. Performs two-stage code review: Stage 1 verifies specification compliance (prevents scope creep), Stage 2 reviews code quality (ensures maintainability).
P
pyinx
2GitHub Stars
1Views
npx skills add pyinx/ceo-skills-plugin
SKILL.md
| Name | two-stage-review |
| Description | This skill should be used after completing development tasks. Performs two-stage code review: Stage 1 verifies specification compliance (prevents scope creep), Stage 2 reviews code quality (ensures maintainability). |
name: two-stage-review description: This skill should be used after completing development tasks. Performs two-stage code review: Stage 1 verifies specification compliance (prevents scope creep), Stage 2 reviews code quality (ensures maintainability). version: 1.0.0
Two-Stage Code Review
Purpose
Ensure code quality through a rigorous two-stage review process that catches both specification violations and maintainability issues.
Process
Stage 1: Specification Compliance Review
Goal: Prevent over-building and under-building
Checklist:
- โ All required features implemented (no missing functionality)
- โ No unauthorized features added (no scope creep)
- ๐ API design matches architecture document
- ๐ Data model matches specifications
- ๐ User stories fully satisfied
Outcome: โ Compliant or โ Non-compliant with specific issues
Stage 2: Code Quality Review
Goal: Ensure maintainability and clarity
Checklist:
- ๐ Clear variable naming
- ๐ Single responsibility functions
- ๐ง No code duplication
- ๐ง Modular design
- ๐งช Adequate test coverage
- โก No obvious performance issues
- ๐ก๏ธ Input validation
- ๐ก๏ธ Error handling
Outcome: โ Approved or โ Needs improvement with specific issues
Review Loop
Implementation โ Stage 1 Review โ โ Fix spec issues โ Repeat Stage 1
โ โ
Pass โ Stage 2 Review โ โ Fix quality issues โ Repeat Stage 2
โ โ
Pass โ Complete
Usage
This skill is automatically invoked by the CEO workflow during Phase 4 (Development) after each subtask completion.
Skills Info
Original Name:two-stage-reviewAuthor:pyinx
Download