Loading...
Loading...
[Review & Quality] ⚡⚡⚡ Two-pass code review for task completion
npx skill4agent add duc01226/easyplatform review-post-task| Step | Action | Key Notes |
|---|---|---|
| 1 | Pass 1: Review | Gather |
| 2 | Pass 1: Corrections | Fix issues found; set |
| 3 | Pass 2: Re-review | Only if Pass 1 made changes; verify corrections didn't introduce issues |
| 4 | Final report | Summary with issues found/fixed, remaining concerns, ready-for-commit status |
/cook/fix/codeuntilDestroyed()# Get unstaged changes summary
git diff --stat
# Get detailed changes
git diffPASS_1_MADE_CHANGES = truePASS_1_MADE_CHANGES = false# Check updated changes
git diff --stat
git diff## Post-Task Review Complete
**Task:** [Brief description]
**Pass 1 Result:** [Clean / N issues fixed]
**Pass 2 Required:** [Yes/No]
**Pass 2 Result:** [N/A / Clean / N issues fixed]
### Changes Summary
- [List of files modified]
- [Key changes made]
### Issues Found & Fixed
1. [Issue]: [Fix applied]
2. ...
### Remaining Concerns (if any)
- [Concern]: [Reason not addressed / Recommended follow-up]
### Verification
- [ ] Task objective achieved
- [ ] Code follows project conventions
- [ ] No security vulnerabilities
- [ ] Ready for commit# View changes for review
git diff --stat && git diff
# Check specific file
git diff path/to/file.ts
# Fix a problematic change
# Use `/fix` workflow to apply fixes instead of manual git checkout
# Stage reviewed changes
git add -p # Interactive staging/cook/fix/code/review-post-task/review-codebasecode-reviewer