mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-11 02:33:51 +08:00
- Implemented `/workflow:plan` for creating detailed implementation plans with task decomposition and context gathering. - Added `/workflow:resume` for intelligent session resumption with automatic progress analysis. - Introduced `/workflow:review` for executing the final phase of quality validation and generating review reports. - Developed `/workflow:status` to provide on-demand views of workflow status and task progress. - Created `/workflow:test-gen` to generate comprehensive test workflows based on completed implementation tasks, ensuring full test coverage.
1.7 KiB
1.7 KiB
name, description, usage, argument-hint, examples
| name | description | usage | argument-hint | examples | |
|---|---|---|---|---|---|
| review | Execute review phase for quality validation | /workflow:review | none |
|
Workflow Review Command (/workflow:review)
Overview
Final phase for quality validation, testing, and completion.
Core Principles
Session Management: @~/.claude/workflows/workflow-architecture.md
Review Process
-
Validation Checks
- All tasks completed
- Tests passing
- Code quality metrics
- Documentation complete
-
Generate Review Report
# Review Report ## Task Completion - Total: 10 - Completed: 10 - Success Rate: 100% ## Quality Metrics - Test Coverage: 85% - Code Quality: A - Documentation: Complete ## Issues Found - Minor: 2 - Major: 0 - Critical: 0 -
Update Session
{ "current_phase": "REVIEW", "phases": { "REVIEW": { "status": "completed", "output": "REVIEW.md", "test_results": { "passed": 45, "failed": 0, "coverage": 85 } } } }
Auto-fix (Default)
Auto-fix is enabled by default:
- Automatically fixes minor issues
- Runs formatters and linters
- Updates documentation
- Re-runs tests
Completion Criteria
- All tasks marked complete
- Tests passing (configurable threshold)
- No critical issues
- Documentation updated
Output Files
REVIEW.md- Review reportworkflow-session.json- Updated with resultstest-results.json- Detailed test output
Related Commands
/workflow:execute- Must complete first/task:status- Check task completion/workflow:status- View overall status