implementation-reviewlisted
Install: claude install-skill aiskillstore/marketplace
# Implementation Review Skill
## Purpose
This skill ensures quality gates are enforced during the EPIC workflow by automatically invoking the appropriate review agents after task completion.
## Review Triggers
### 1. Plan Review (Strategic-Planner Completion)
**Trigger Conditions:**
- `strategic-planner` agent has completed its planning tasks
- A strategy or implementation plan has been generated
- Keywords: "plan complete", "strategy ready", "planning done", "roadmap finalized"
**Action:** Delegate to `plan-consultant` agent for plan review
**Review Focus:**
- Plan completeness and feasibility
- Risk identification
- Alternative approaches consideration
- Alignment with project goals
### 2. Code Review (Main Agent Implementation Completion)
**Trigger Conditions:**
- Main agent has completed coding tasks in `/implement` workflow
- Implementation code has been written (after TDD Green phase)
- Keywords: "implementation complete", "coding done", "feature implemented", "code ready"
**Action:** Delegate to `code-reviewer` agent for code review
**Review Focus:**
- Code quality and maintainability
- Security vulnerabilities
- Performance considerations
- Adherence to project standards
## Workflow Integration
```
EPIC Workflow with Reviews:
[Explore] -> [Plan] -> PLAN REVIEW -> [Implement] -> CODE REVIEW -> [Commit]
| |
plan-consultant code-reviewer
```
## Instructions
### When