Loading...
Loading...
Use when completing tasks, implementing major features, or before merging to verify work meets requirements
npx skill4agent add zixun-github/aisdlc spec-requesting-code-reviewBASE_SHA=$(git rev-parse HEAD~1) # or origin/main
HEAD_SHA=$(git rev-parse HEAD)code-reviewer.md{WHAT_WAS_IMPLEMENTED}{PLAN_OR_REQUIREMENTS}{BASE_SHA}{HEAD_SHA}{DESCRIPTION}[Just completed Task 2: Add validation functions]
You: Request a code review before proceeding.
BASE_SHA=$(git log --oneline | grep "Task 1" | head -1 | awk '{print $1}')
HEAD_SHA=$(git rev-parse HEAD)
[Dispatch code-reviewer subagent]
WHAT_WAS_IMPLEMENTED: Session index verification and repair functions
PLAN_OR_REQUIREMENTS: Task 2 from docs/plans/deployment-plan.md
BASE_SHA: a7981ec
HEAD_SHA: 3df7661
DESCRIPTION: Added verifyIndex() and repairIndex(), covering 4 issue types
[Subagent returns]:
Pros: Clear architecture, has real tests
Issues:
Important: Missing progress indication
Minor: Magic number (100) in report interval
Assessment: Can proceed
You: [Fix progress indication]
[Proceed to Task 3]