Trigger comprehensive code review with quality checks
Performs comprehensive code review with quality checks on specified files or changes.
/plugin marketplace add xbklairith/kisune/plugin install dev-workflow@kisuneActivate the code-quality skill to perform systematic code review using comprehensive checklist covering code structure, error handling, security, performance, and testing.
Ask What to Review Present options:
git diff --cached)git diff)Run Appropriate Command
# For staged changes
git diff --cached
# For unstaged changes
git diff
# For specific file
# Read the file directly
# For entire feature
git diff main...HEAD
Perform Comprehensive Review
Use checklist from code-quality skill:
Generate Review Report Format:
## Code Review: [File/Feature Name]
### ✅ Strengths
[What's done well]
### ⚠️ Issues Found
#### Priority: High - Must Fix Before Merge
[Critical issues with location, problem, risk, and fix]
#### Priority: Medium - Should Address
[Important improvements]
#### Priority: Low - Consider Improving
[Optional enhancements]
### 💡 Refactoring Suggestions
[Specific improvements with before/after code examples]
### 📊 Code Metrics
- Complexity: [Low/Medium/High]
- Test Coverage: [X%]
- Maintainability: [A/B/C/D/F]
### 🎯 Action Items
- [ ] Fix high-priority issues
- [ ] Address medium-priority items
- [ ] Consider refactoring suggestions
**Overall Assessment:** [Summary]
**Recommendation:** [Approve/Request Changes/Reject]
[Confidence: X.X]
Suggest Next Steps
If user provides file path as argument:
/dev-workflow:review src/auth/login.js
→ Review that specific file directly
If user provides directory as argument:
/dev-workflow:review src/auth/
→ Review all files in that directory
If user provides "." as argument:
/dev-workflow:review .
→ Review all changes in current directory (recursive)
If no argument provided:
/dev-workflow:review
→ Ask user what to review (staged, unstaged, specific file, etc.)
Example 1: Review staged changes
User: /dev-workflow:review