mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-03-02 15:23:19 +08:00
refactor(workflow): rename workflow-lite-plan to workflow-lite-planex and remove standalone lite-execute
- Rename skill directory from workflow-lite-plan to workflow-lite-planex (planex = plan + execute) - Remove standalone lite-execute command entry from command.json and analyze_commands.py - Update all 60+ files referencing workflow-lite-plan to use workflow-lite-planex - Update descriptions to clarify Phase 1: plan → Phase 2: execute architecture - Remove lite-execute as standalone command from orchestrator routing tables - Update docs (EN/ZH) to reflect unified planex naming and phase descriptions
This commit is contained in:
@@ -11,8 +11,7 @@
|
||||
| Command | Function | Syntax |
|
||||
|---------|----------|--------|
|
||||
| [`lite-lite-lite`](#lite-lite-lite) | Ultra-lightweight multi-tool analysis and direct execution | `/workflow:lite-lite-lite [-y] <task>` |
|
||||
| [`lite-plan`](#lite-plan) | Lightweight interactive planning workflow | `/workflow-lite-plan [-y] [-e] "task"` |
|
||||
| [`lite-execute`](#lite-execute) | Execute tasks based on in-memory plan | `/workflow:lite-execute [-y] [--in-memory] [task]` |
|
||||
| [`lite-plan`](#lite-plan) | Lightweight interactive planning workflow | `/workflow-lite-planex [-y] [-e] "task"` |
|
||||
| [`lite-fix`](#lite-fix) | Lightweight bug diagnosis and fix | `/workflow:lite-fix [-y] [--hotfix] "bug description"` |
|
||||
|
||||
### Standard Workflows
|
||||
@@ -92,11 +91,11 @@
|
||||
|
||||
### lite-plan
|
||||
|
||||
**Function**: Lightweight interactive planning workflow, supporting in-memory planning, code exploration, and execution to lite-execute.
|
||||
**Function**: Lightweight interactive planning and execution workflow (Phase 1: plan, Phase 2: execute), supporting in-memory planning, code exploration, and automatic execution after confirmation.
|
||||
|
||||
**Syntax**:
|
||||
```bash
|
||||
/workflow-lite-plan [-y|--yes] [-e|--explore] "task description" | file.md
|
||||
/workflow-lite-planex [-y|--yes] [-e|--explore] "task description" | file.md
|
||||
```
|
||||
|
||||
**Options**:
|
||||
@@ -105,31 +104,10 @@
|
||||
**Examples**:
|
||||
```bash
|
||||
# Basic planning
|
||||
/workflow-lite-plan "add user avatar feature"
|
||||
/workflow-lite-planex "add user avatar feature"
|
||||
|
||||
# With exploration
|
||||
/workflow-lite-plan -e "refactor authentication module"
|
||||
```
|
||||
|
||||
### lite-execute
|
||||
|
||||
**Function**: Execute tasks based on in-memory plan, prompt description, or file content.
|
||||
|
||||
**Syntax**:
|
||||
```bash
|
||||
/workflow:lite-execute [-y|--yes] [--in-memory] ["task description" | file-path]
|
||||
```
|
||||
|
||||
**Options**:
|
||||
- `--in-memory`: Use in-memory plan
|
||||
|
||||
**Examples**:
|
||||
```bash
|
||||
# Execute task
|
||||
/workflow:lite-execute "implement avatar upload API"
|
||||
|
||||
# Use in-memory plan
|
||||
/workflow:lite-execute --in-memory
|
||||
/workflow-lite-planex -e "refactor authentication module"
|
||||
```
|
||||
|
||||
### lite-fix
|
||||
|
||||
Reference in New Issue
Block a user