mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-05 01:50:27 +08:00
docs: Release v5.8.1 - Lite-Plan Workflow & CLI Tools Enhancement
Major Features: - Add /workflow:lite-plan - Lightweight interactive planning workflow - Three-dimensional multi-select confirmation - Smart code exploration with auto-detection - Parallel task execution support - Flexible execution (Agent/CLI) with optional code review - Optimize CLI tools - Remove -m parameter requirement - Auto-model-selection for Gemini, Qwen, Codex - Updated models: gpt-5.1, gpt-5.1-codex, gpt-5.1-codex-mini Documentation Updates: - Update README.md with Lite-Plan usage examples - Update README_CN.md (Chinese translation) - Add /workflow:lite-plan to COMMAND_SPEC.md - Add /workflow:lite-plan to COMMAND_REFERENCE.md - Update CHANGELOG.md with v5.8.1 release notes - Update intelligent-tools-strategy.md with model selection guidelines See CHANGELOG.md for full details.
This commit is contained in:
48
README.md
48
README.md
@@ -2,7 +2,7 @@
|
||||
|
||||
<div align="center">
|
||||
|
||||
[](https://github.com/catlog22/Claude-Code-Workflow/releases)
|
||||
[](https://github.com/catlog22/Claude-Code-Workflow/releases)
|
||||
[](LICENSE)
|
||||
[]()
|
||||
|
||||
@@ -14,13 +14,20 @@
|
||||
|
||||
**Claude Code Workflow (CCW)** transforms AI development from simple prompt chaining into a robust, context-first orchestration system. It solves execution uncertainty and error accumulation through structured planning, deterministic execution, and intelligent multi-model orchestration.
|
||||
|
||||
> **🎉 Version 5.5: Interactive Command Guide & Enhanced Documentation**
|
||||
> **🎉 Version 5.8.1: Lite-Plan Workflow & CLI Tools Enhancement**
|
||||
>
|
||||
> **Core Improvements**:
|
||||
> - ✨ **Command-Guide Skill** - Interactive help system with CCW-help and CCW-issue triggers
|
||||
> - ✨ **Enhanced Command Descriptions** - All 69 commands updated with detailed functionality descriptions
|
||||
> - ✨ **5-Index Command System** - Organized by category, use-case, relationships, and essentials
|
||||
> - ✨ **Smart Recommendations** - Context-aware next-step suggestions for workflow guidance
|
||||
> - ✨ **Lite-Plan Workflow** (`/workflow:lite-plan`) - Lightweight interactive planning with intelligent automation
|
||||
> - **Three-Dimensional Multi-Select Confirmation**: Task approval + Execution method + Code review tool
|
||||
> - **Smart Code Exploration**: Auto-detects when codebase context is needed (use `-e` flag to force)
|
||||
> - **Parallel Task Execution**: Identifies independent tasks for concurrent execution
|
||||
> - **Flexible Execution**: Choose between Agent (@code-developer) or CLI (Gemini/Qwen/Codex)
|
||||
> - **Optional Post-Review**: Built-in code quality analysis with your choice of AI tool
|
||||
> - ✨ **CLI Tools Optimization** - Simplified command syntax with auto-model-selection
|
||||
> - Removed `-m` parameter requirement for Gemini, Qwen, and Codex (auto-selects best model)
|
||||
> - Clearer command structure and improved documentation
|
||||
> - 🔄 **Execution Workflow Enhancement** - Streamlined phases with lazy loading strategy
|
||||
> - 🎨 **CLI Explore Agent** - Improved visibility with yellow color scheme
|
||||
>
|
||||
> See [CHANGELOG.md](CHANGELOG.md) for full details.
|
||||
|
||||
@@ -108,6 +115,35 @@ The best way to get started is to follow the 5-minute tutorial in the [**Getting
|
||||
|
||||
Here is a quick example of a common development workflow:
|
||||
|
||||
### **Option 1: Lite-Plan Workflow** (⚡ Recommended for Quick Tasks)
|
||||
|
||||
Lightweight interactive workflow with in-memory planning and immediate execution:
|
||||
|
||||
```bash
|
||||
# Basic usage with auto-detection
|
||||
/workflow:lite-plan "Add JWT authentication to user login"
|
||||
|
||||
# Force code exploration
|
||||
/workflow:lite-plan -e "Refactor logging module for better performance"
|
||||
|
||||
# Preset CLI tool
|
||||
/workflow:lite-plan --tool codex "Add unit tests for auth service"
|
||||
```
|
||||
|
||||
**Interactive Flow**:
|
||||
1. **Phase 1**: Automatic task analysis and smart code exploration (if needed)
|
||||
2. **Phase 2**: Answer clarification questions (if any)
|
||||
3. **Phase 3**: Review generated plan with task breakdown
|
||||
4. **Phase 4**: Three-dimensional confirmation:
|
||||
- ✅ Confirm/Modify/Cancel task
|
||||
- 🔧 Choose execution: Agent / Provide Plan / CLI (Gemini/Qwen/Codex)
|
||||
- 🔍 Optional code review: No / Claude / Gemini / Qwen / Codex
|
||||
5. **Phase 5**: Watch real-time execution with live task tracking
|
||||
|
||||
### **Option 2: Full Workflow** (Comprehensive Planning)
|
||||
|
||||
Traditional multi-phase workflow for complex projects:
|
||||
|
||||
1. **Create a Plan** (automatically starts a session):
|
||||
```bash
|
||||
/workflow:plan "Implement JWT-based user login and registration"
|
||||
|
||||
Reference in New Issue
Block a user