mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-03-03 15:43:11 +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:
@@ -23,14 +23,14 @@
|
||||
|
||||
| 单元类型 | Skill | 说明 |
|
||||
|---------|-------|------|
|
||||
| 轻量 Plan+Execute | `workflow-lite-plan` | 内部完成 plan→execute |
|
||||
| 轻量 Plan+Execute | `workflow-lite-planex` | 内部完成 plan→execute |
|
||||
| 标准 Planning | `workflow-plan` → `workflow-execute` | plan 和 execute 是独立 Skill |
|
||||
| TDD Planning | `workflow-tdd-plan` → `workflow-execute` | tdd-plan 和 execute 是独立 Skill |
|
||||
| 规格驱动 | `spec-generator` → `workflow-plan` → `workflow-execute` | 规格文档驱动完整开发 |
|
||||
| 测试流水线 | `workflow-test-fix` | 内部完成 gen→cycle |
|
||||
| 代码审查 | `review-cycle` | 内部完成 review→fix |
|
||||
| 分析→规划 | `workflow:analyze-with-file` → `workflow-lite-plan` | 协作分析产物自动传递给 lite-plan |
|
||||
| 头脑风暴→规划 | `workflow:brainstorm-with-file` → `workflow-lite-plan` | 头脑风暴产物自动传递给 lite-plan |
|
||||
| 分析→规划 | `workflow:analyze-with-file` → `workflow-lite-planex` | 协作分析产物自动传递给 lite-plan |
|
||||
| 头脑风暴→规划 | `workflow:brainstorm-with-file` → `workflow-lite-planex` | 头脑风暴产物自动传递给 lite-plan |
|
||||
| 协作规划 | `workflow:collaborative-plan-with-file` → `workflow:unified-execute-with-file` | 多 agent 协作规划→通用执行 |
|
||||
| 需求路线图 | `workflow:roadmap-with-file` → `team-planex` | 需求拆解→issue 创建→wave pipeline 执行 |
|
||||
| 集成测试循环 | `workflow:integration-test-cycle` | 自迭代集成测试闭环 |
|
||||
@@ -109,12 +109,12 @@ graph TD
|
||||
|
||||
**With-File 自动链式机制**:
|
||||
|
||||
当 `analyze-with-file` 或 `brainstorm-with-file` 完成时,其产物(discussion.md / brainstorm.md)**自动传递**给 `workflow-lite-plan` 作为上下文输入。
|
||||
当 `analyze-with-file` 或 `brainstorm-with-file` 完成时,其产物(discussion.md / brainstorm.md)**自动传递**给 `workflow-lite-planex` 作为上下文输入。
|
||||
|
||||
| 工作流 | 自动链目标 | 产物传递 |
|
||||
|--------|-----------|---------|
|
||||
| analyze-with-file | → workflow-lite-plan | discussion.md |
|
||||
| brainstorm-with-file | → workflow-lite-plan | brainstorm.md |
|
||||
| analyze-with-file | → workflow-lite-planex | discussion.md |
|
||||
| brainstorm-with-file | → workflow-lite-planex | brainstorm.md |
|
||||
|
||||
**Cycle 工作流自迭代模式**:
|
||||
|
||||
@@ -177,9 +177,9 @@ graph TD
|
||||
|
||||
| 单元名称 | 命令链 | 输出 |
|
||||
| --- | --- | --- |
|
||||
| **快速实现** | lite-plan → lite-execute | 工作代码 |
|
||||
| **多 CLI 规划** | multi-cli-plan → lite-execute | 工作代码 |
|
||||
| **Bug 修复** | lite-plan (--bugfix) → lite-execute | 修复的代码 |
|
||||
| **快速实现** | lite-plan(Phase 1: 规划 → Phase 2: 执行) | 工作代码 |
|
||||
| **多 CLI 规划** | multi-cli-plan(Phase 1: 规划 → Phase 2: 执行) | 工作代码 |
|
||||
| **Bug 修复** | lite-plan --bugfix(Phase 1: 规划 → Phase 2: 执行) | 修复的代码 |
|
||||
| **完整规划+执行** | plan → execute | 工作代码 |
|
||||
| **验证规划+执行** | plan → plan-verify → execute | 工作代码 |
|
||||
| **重规划+执行** | replan → execute | 工作代码 |
|
||||
@@ -235,7 +235,7 @@ graph TD
|
||||
|
||||
**流水线可视化示例**:
|
||||
```
|
||||
需求 → 【lite-plan → lite-execute】→ 代码 → 【test-fix-gen → test-cycle-execute】→ 测试通过
|
||||
需求 → 【lite-planex (Phase 1→2)】→ 代码 → 【test-fix-gen → test-cycle-execute】→ 测试通过
|
||||
└──── 快速实现 ────┘ └────── 测试验证 ──────┘
|
||||
```
|
||||
|
||||
@@ -371,7 +371,7 @@ Task: <description>
|
||||
|
||||
| Skill | 包含操作 |
|
||||
| --- | --- |
|
||||
| `workflow-lite-plan` | lite-plan, lite-execute |
|
||||
| `workflow-lite-planex` | lite-plan (Phase 1: 规划 → Phase 2: 执行) |
|
||||
| `workflow-plan` | plan, plan-verify, replan |
|
||||
| `workflow-execute` | execute |
|
||||
| `workflow-tdd-plan` | tdd-plan, tdd-verify |
|
||||
|
||||
@@ -31,8 +31,7 @@
|
||||
| 命令 | 功能 | 难度 |
|
||||
| --- | --- | --- |
|
||||
| [`/workflow:lite-lite-lite`](./workflow.md#lite-lite-lite) | 超轻量级多工具分析和直接执行 | Intermediate |
|
||||
| [`/workflow-lite-plan`](./workflow.md#lite-plan) | 轻量级交互式规划工作流 | Intermediate |
|
||||
| [`/workflow:lite-execute`](./workflow.md#lite-execute) | 基于内存计划执行任务 | Intermediate |
|
||||
| [`/workflow-lite-planex`](./workflow.md#lite-plan) | 轻量级交互式规划工作流 | Intermediate |
|
||||
| [`/workflow:lite-fix`](./workflow.md#lite-fix) | 轻量级 Bug 诊断和修复 | Intermediate |
|
||||
| [`/workflow-plan`](./workflow.md#plan) | 5 阶段规划工作流 | Intermediate |
|
||||
| [`/workflow-execute`](./workflow.md#execute) | 协调代理执行工作流任务 | Intermediate |
|
||||
|
||||
@@ -11,8 +11,7 @@
|
||||
| 命令 | 功能 | 语法 |
|
||||
| --- | --- | --- |
|
||||
| [`lite-lite-lite`](#lite-lite-lite) | 超轻量级多工具分析和直接执行 | `/workflow:lite-lite-lite [-y] <任务>` |
|
||||
| [`lite-plan`](#lite-plan) | 轻量级交互式规划工作流 | `/workflow-lite-plan [-y] [-e] "任务"` |
|
||||
| [`lite-execute`](#lite-execute) | 基于内存计划执行任务 | `/workflow:lite-execute [-y] [--in-memory] [任务]` |
|
||||
| [`lite-plan`](#lite-plan) | 轻量级交互式规划工作流 | `/workflow-lite-planex [-y] [-e] "任务"` |
|
||||
| [`lite-fix`](#lite-fix) | 轻量级 Bug 诊断和修复 | `/workflow:lite-fix [-y] [--hotfix] "Bug 描述"` |
|
||||
|
||||
### 标准工作流
|
||||
@@ -92,11 +91,11 @@
|
||||
|
||||
### lite-plan
|
||||
|
||||
**功能**: 轻量级交互式规划工作流,支持内存规划、代码探索和执行到 lite-execute。
|
||||
**功能**: 轻量级交互式规划和执行工作流(Phase 1: 规划,Phase 2: 执行),支持内存规划、代码探索和确认后自动执行。
|
||||
|
||||
**语法**:
|
||||
```bash
|
||||
/workflow-lite-plan [-y|--yes] [-e|--explore] "任务描述" | file.md
|
||||
/workflow-lite-planex [-y|--yes] [-e|--explore] "任务描述" | file.md
|
||||
```
|
||||
|
||||
**选项**:
|
||||
@@ -105,31 +104,10 @@
|
||||
**示例**:
|
||||
```bash
|
||||
# 基础规划
|
||||
/workflow-lite-plan "添加用户头像功能"
|
||||
/workflow-lite-planex "添加用户头像功能"
|
||||
|
||||
# 带探索
|
||||
/workflow-lite-plan -e "重构认证模块"
|
||||
```
|
||||
|
||||
### lite-execute
|
||||
|
||||
**功能**: 基于内存计划、提示描述或文件内容执行任务。
|
||||
|
||||
**语法**:
|
||||
```bash
|
||||
/workflow:lite-execute [-y|--yes] [--in-memory] ["任务描述" | file-path]
|
||||
```
|
||||
|
||||
**选项**:
|
||||
- `--in-memory`: 使用内存计划
|
||||
|
||||
**示例**:
|
||||
```bash
|
||||
# 执行任务
|
||||
/workflow:lite-execute "实现头像上传 API"
|
||||
|
||||
# 使用内存计划
|
||||
/workflow:lite-execute --in-memory
|
||||
/workflow-lite-planex -e "重构认证模块"
|
||||
```
|
||||
|
||||
### lite-fix
|
||||
|
||||
Reference in New Issue
Block a user