Use AFTER any code changes (feature implementation, bug fix, refactor) to enforce mandatory dual-pass review. First pass reviews unstaged changes for correctness and convention compliance...
Mandatory review checkpoint that runs after any code changes to ensure quality and convention compliance.
Every code change requires verification before task completion.
Two review passes:
Trigger AUTOMATICALLY after:
/cook, /code)/fix, /debug)/refactor)set { }# Check for unstaged changes
git status --short
# Get full diff of unstaged changes
git diff
# Get diff of staged changes (if any)
git diff --staged
For EACH changed file, verify:
## First Pass Review Checklist
### File: [filename]
**Task Correctness:**
- [ ] Addresses original requirement
- [ ] Logic is complete and correct
- [ ] No missing edge cases
**Convention Compliance:**
- [ ] Follows platform patterns from AGENTS.md
- [ ] Uses correct base classes
- [ ] Naming conventions followed
- [ ] BEM classes on all template elements (frontend)
**Development Rules:**
- [ ] YAGNI/KISS/DRY compliance
- [ ] Logic in correct layer
- [ ] No anti-patterns (side effects in handlers, generic repos, etc.)
**Quality:**
- [ ] Compiles without errors
- [ ] No security issues
- [ ] Proper error handling
If issues found:
## First Pass Corrections Made
1. [File:Line] - [Issue] → [Fix Applied]
2. [File:Line] - [Issue] → [Fix Applied]
...
CRITICAL DECISION POINT:
IF first_pass_made_changes == true:
EXECUTE full second pass review
ELSE:
SKIP second pass, proceed to summary
Re-run complete review on current unstaged changes:
# Get fresh diff after corrections
git diff
Verify ALL checklist items again:
## Dual-Pass Review Summary
**First Pass:**
- Files reviewed: [count]
- Issues found: [count]
- Corrections made: [yes/no]
**Second Pass:**
- Executed: [yes/no]
- Reason: [first pass made changes / first pass clean]
- Additional issues: [count if executed]
**Final Status:** [APPROVED / NEEDS ATTENTION]
**Remaining Concerns:**
- [List any minor items for future consideration]
// Side effect in handler (WRONG)
await notificationService.SendAsync(...);
// → Move to UseCaseEvents/ event handler
// Generic repository (WRONG)
IPlatformRootRepository<Entity>
// → Use service-specific: IMyServiceRootRepository<Entity>
// Mapping in handler (WRONG)
var entity = new Entity { Name = req.Name };
// → Use DTO.MapToEntity() or Command.MapToNewEntity()
// Missing eager loading (WRONG)
await repo.GetAllAsync(...)
// → Add: ct, e => e.Related
// Missing BEM class (WRONG)
<div><span>{{ name }}</span></div>
// → <div class="user-card__content"><span class="user-card__name">{{ name }}</span></div>
// Missing untilDestroyed (WRONG)
this.data$.subscribe(...)
// → this.data$.pipe(this.untilDestroyed()).subscribe(...)
// Logic in component (WRONG)
readonly types = [{ value: 1, label: 'Type A' }];
// → Move to Entity: static readonly dropdownOptions = [...]
// Direct HttpClient (WRONG)
constructor(private http: HttpClient) {}
// → Extend PlatformApiService
This skill is the FINAL step before task completion in:
| Workflow | Sequence (Updated) |
|---|---|
| Feature | plan → cook → test → dual-pass-review → docs-update → watzup |
| Bug Fix | debug → plan → fix → test → dual-pass-review |
| Refactor | plan → code → test → dual-pass-review |
# Quick convention check
grep -r "IPlatformRootRepository" --include="*.cs" # Should be service-specific
grep -r "new Entity {" --include="*Handler.cs" # Should be in DTO
grep -r "SendAsync\|NotifyAsync" --include="*CommandHandler.cs" # Should be in event handler
# Frontend checks
grep -r "class=\"\"" --include="*.html" # Empty class (suspicious)
grep -r "subscribe()" --include="*.ts" | grep -v "untilDestroyed" # Missing cleanup
Always end with clear status:
---
**Review Status:** [APPROVED / CORRECTIONS NEEDED]
**Passes Executed:** [1 / 2]
**Ready for Commit:** [Yes / No]
---