Rename workflow-lite-planex to workflow-lite-plan across documentation and code references for consistency and clarity. Update related examples, command references, and workflow comparisons to reflect the new naming convention.

This commit is contained in:
catlog22
2026-03-05 21:14:52 +08:00
parent cff1e16441
commit 56c06ecf3d
66 changed files with 795 additions and 877 deletions

View File

@@ -143,7 +143,7 @@ Both commands support the `--yes` flag for auto mode:
| Skill | Function |
|-------|----------|
| `workflow-lite-planex` | Lightweight planning workflow |
| `workflow-lite-plan` | Lightweight planning workflow |
| `workflow-plan` | Full planning workflow |
| `workflow-execute` | Execution workflow |
| `workflow-tdd-plan` | TDD workflow |

View File

@@ -30,7 +30,7 @@
| Command | Function | Difficulty |
|---------|----------|------------|
| [`/workflow-lite-planex`](./workflow.md#lite-plan) | Lightweight interactive planning workflow | Intermediate |
| [`/workflow-lite-plan`](./workflow.md#lite-plan) | Lightweight interactive planning workflow | Intermediate |
| [`/workflow-plan`](./workflow.md#plan) | 5-phase planning workflow | Intermediate |
| [`/workflow-execute`](./workflow.md#execute) | Coordinate agent execution of workflow tasks | Intermediate |
| [`/workflow:replan`](./workflow.md#replan) | Interactive workflow replanning | Intermediate |

View File

@@ -10,7 +10,7 @@
| Command | Function | Syntax |
|---------|----------|--------|
| [`lite-plan`](#lite-plan) | Lightweight interactive planning workflow | `/workflow-lite-planex [-y] [-e] "task"` |
| [`lite-plan`](#lite-plan) | Lightweight interactive planning workflow | `/workflow-lite-plan [-y] [-e] "task"` |
### Standard Workflows
@@ -70,7 +70,7 @@
**Syntax**:
```bash
/workflow-lite-planex [-y|--yes] [-e|--explore] "task description" | file.md
/workflow-lite-plan [-y|--yes] [-e|--explore] "task description" | file.md
```
**Options**:
@@ -79,10 +79,10 @@
**Examples**:
```bash
# Basic planning
/workflow-lite-planex "add user avatar feature"
/workflow-lite-plan "add user avatar feature"
# With exploration
/workflow-lite-planex -e "refactor authentication module"
/workflow-lite-plan -e "refactor authentication module"
```
### plan