diff --git a/.claude/commands/workflow/review-module-cycle.md b/.claude/commands/workflow/review-module-cycle.md index 77b105b0..f52944d5 100644 --- a/.claude/commands/workflow/review-module-cycle.md +++ b/.claude/commands/workflow/review-module-cycle.md @@ -815,51 +815,3 @@ TodoWrite({ 7. **Resume Support**: Interrupted reviews can resume from last checkpoint 8. **Export Results**: Use dashboard export for external tracking tools -## Examples - -### Review Authentication Module -```bash -/workflow:review-module-cycle src/auth/** -``` - -### Review Payment Processing with Security Focus -```bash -/workflow:review-module-cycle src/payment/** --dimensions=security,architecture -``` - -### Review Multiple Modules -```bash -/workflow:review-module-cycle src/auth/**,src/payment/**,src/user/** -``` - -### Review Specific Critical Files -```bash -/workflow:review-module-cycle src/payment/processor.ts,src/auth/validator.ts --max-iterations=5 -``` - -## Related Commands - -### Automated Fix Workflow -After completing a module review, use the dashboard to select findings and export them for automated fixing: - -```bash -# Step 1: Complete review (this command) -/workflow:review-module-cycle src/auth/** - -# Step 2: Open dashboard, select findings, and export -# Dashboard generates: fix-export-{timestamp}.json - -# Step 3: Run automated fixes -/workflow:review-fix .workflow/active/WFS-{session-id}/.review/fix-export-{timestamp}.json -``` - -See `/workflow:review-fix` for automated fixing with smart grouping, parallel execution, and test verification. - -### Session-Based Review -For reviewing all changes in a workflow session: - -```bash -/workflow:review-session-cycle -``` - -This command analyzes all git-tracked changes in the active workflow session across all 7 dimensions.