refactor: Remove outdated examples and related commands from review-module-cycle documentation for clarity

This commit is contained in:
catlog22
2025-11-25 23:03:27 +08:00
parent 8f2126677f
commit 6359a364cb

View File

@@ -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.