.claude/skills/dual-pass-review/SKILL.md
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. Second pass ONLY executes if first pass made any corrections. Ensures work follows project conventions, development rules, and best practices before task completion.
npx skillsauth add CongDon1207/AGENTS.md dual-pass-reviewInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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]
---
development
Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications, OR when they provide screenshots/images/designs to replicate or draw inspiration from. For screenshot inputs, extracts design guidelines first using ai-multimodal analysis, then implements code following those guidelines. Generates creative, polished code that avoids generic AI aesthetics.
development
Use when the user asks to investigate, understand, explore, or explain how a feature works, asks about existing logic, or wants to understand code flow. Triggers on keywords like "how does", "explain", "investigate", "understand", "what does", "where is", "how works", "logic flow", "trace", "explore feature".
development
Use when the user asks to implement a new feature, enhancement, add functionality, build something new, or create new capabilities. Triggers on keywords like "implement", "add feature", "build", "create new", "develop", "enhancement".
development
Use when the user asks to generate comprehensive feature documentation with verified test cases, create feature README with code evidence, or document a complete feature with test verification. Triggers on keywords like "feature documentation", "document feature", "comprehensive docs", "feature README", "test verification", "verified documentation".