@@ -17,10 +17,10 @@ Interactive orchestration tool: analyze task → discover commands → recommend
1717
1818| Skill | 包含操作 |
1919| -------| ---------|
20- | ` workflow-lite-plan ` | lite-plan, lite-execute |
20+ | ` workflow-lite-planex ` | lite-plan (includes execution phase internally) |
2121| ` workflow-plan ` | plan, plan-verify, replan |
2222| ` workflow-execute ` | execute |
23- | ` workflow-multi-cli-plan ` | multi-cli-plan |
23+ | ` workflow-multi-cli-plan ` | multi-cli-plan (includes execution phase internally) |
2424| ` workflow-test-fix ` | test-fix-gen, test-cycle-execute |
2525| ` workflow-tdd-plan ` | tdd-plan, tdd-verify |
2626| ` review-cycle ` | review-session-cycle, review-module-cycle, review-cycle-fix |
@@ -49,9 +49,9 @@ Interactive orchestration tool: analyze task → discover commands → recommend
4949
5050| Unit Name | Commands | Purpose | Output |
5151| -----------| ----------| ---------| --------|
52- | ** Quick Implementation** | lite-plan → lite- execute | Lightweight plan and immediate execution | Working code |
53- | ** Multi-CLI Planning** | multi-cli-plan → lite- execute | Multi-perspective analysis and execution | Working code |
54- | ** Bug Fix** | lite-plan ( --bugfix) → lite- execute | Quick bug diagnosis and fix execution | Fixed code |
52+ | ** Quick Implementation** | lite-plan (Phase 1: plan → Phase 2: execute) | Lightweight plan and immediate execution | Working code |
53+ | ** Multi-CLI Planning** | multi-cli-plan (Phase 1: plan → Phase 2: execute) | Multi-perspective analysis and execution | Working code |
54+ | ** Bug Fix** | lite-plan --bugfix (Phase 1: plan → Phase 2: execute) | Quick bug diagnosis and fix execution | Fixed code |
5555| ** Full Planning + Execution** | plan → execute | Detailed planning and execution | Working code |
5656| ** Verified Planning + Execution** | plan → plan-verify → execute | Planning with verification and execution | Working code |
5757| ** Replanning + Execution** | replan → execute | Update plan and execute changes | Working code |
@@ -101,8 +101,8 @@ Interactive orchestration tool: analyze task → discover commands → recommend
101101
102102| Command | Can Precede | Atomic Units |
103103| ---------| -----------| --------------|
104- | lite-plan | lite-execute, convert-to-plan | Quick Implementation, Rapid-to-Issue, Bug Fix |
105- | multi-cli-plan | lite-execute | Multi-CLI Planning |
104+ | lite-plan | convert-to-plan | Quick Implementation, Rapid-to-Issue, Bug Fix |
105+ | multi-cli-plan | (execution is internal) | Multi-CLI Planning |
106106| plan | plan-verify, execute | Full Planning + Execution, Verified Planning + Execution |
107107| plan-verify | execute | Verified Planning + Execution |
108108| replan | execute | Replanning + Execution |
@@ -137,8 +137,8 @@ Interactive orchestration tool: analyze task → discover commands → recommend
137137
138138** Example Pipeline with Units** :
139139```
140- 需求 → 【lite-plan → lite-execute 】→ 代码 → 【test-fix-gen → test-cycle-execute】→ 测试通过
141- └──── Quick Implementation ────┘ └────── Test Validation ──────┘
140+ 需求 → 【lite-plan】→ 代码 → 【test-fix-gen → test-cycle-execute】→ 测试通过
141+ └── Quick Implementation ──┘ └────── Test Validation ──────┘
142142```
143143
144144## 3-Phase Workflow
@@ -234,13 +234,7 @@ const commandPorts = {
234234 tags: [' planning' ],
235235 atomic_group: ' quick-implementation'
236236 },
237- ' lite-execute' : {
238- name: ' lite-execute' ,
239- input: [' plan' , ' multi-cli-plan' ],
240- output: [' code' ],
241- tags: [' execution' ],
242- atomic_groups: [' quick-implementation' , ' multi-cli-planning' , ' bug-fix' ]
243- },
237+ // lite-execute is now an internal phase of lite-plan and multi-cli-plan (not a standalone command)
244238 ' plan' : {
245239 name: ' plan' ,
246240 input: [' requirement' , ' specification' ],
@@ -550,12 +544,11 @@ function determinePortFlow(taskType, constraints) {
550544Recommended Command Chain:
551545
552546Pipeline (管道视图):
553- 需求 → lite- plan → 计划 → lite - execute → 代码 → test- cycle- execute → 测试通过
547+ 需求 → lite- plan → 代码 → test- cycle- execute → 测试通过
554548
555549Commands (命令列表):
556- 1. / workflow- lite- plan
557- 2. / workflow: lite- execute
558- 3. / workflow- test- fix
550+ 1. / workflow- lite- planex
551+ 2. / workflow- test- fix
559552
560553Proceed? [Confirm / Show Details / Adjust / Cancel]
561554` ` `
@@ -690,9 +683,7 @@ function formatCommand(cmd, previousResults, analysis) {
690683 if (['lite-plan', 'plan', 'tdd-plan', 'multi-cli-plan'].includes(name)) {
691684 prompt += ` " ${analysis.goal}" ` ;
692685
693- } else if (name === 'lite-execute') {
694- const hasPlan = previousResults.some(r => r.command.includes('plan'));
695- prompt += hasPlan ? ' --in-memory' : ` " ${analysis.goal}" ` ;
686+ // lite-execute is now an internal phase of lite-plan (not invoked separately)
696687
697688 } else if (name === 'execute') {
698689 const plan = previousResults.find(r => r.command.includes('plan'));
@@ -711,7 +702,7 @@ function formatCommand(cmd, previousResults, analysis) {
711702 prompt = ` / spec- generator - y " ${analysis.goal}" ` ;
712703
713704 } else if (name === 'test-gen') {
714- const impl = previousResults.find(r => r.command.includes('execute') || r.command.includes('lite-execute') );
705+ const impl = previousResults.find(r => r.command.includes('execute'));
715706 prompt += impl?.session_id ? ` " ${impl.session_id}" ` : ` " ${analysis.goal}" ` ;
716707
717708 } else if (name === 'test-fix-gen') {
@@ -860,7 +851,7 @@ workflow 操作通过 `Skill()` 调用对应的 Skill。
860851
861852` ` ` javascript
862853// Skill 调用方式
863- Skill({ skill: 'workflow-lite-plan ', args: '"task description"' });
854+ Skill({ skill: 'workflow-lite-planex ', args: '"task description"' });
864855Skill({ skill: 'workflow-execute', args: '--resume-session="WFS-xxx"' });
865856Skill({ skill: 'brainstorm', args: '"exploration topic"' });
866857Skill({ skill: 'spec-generator', args: '"product specification"' });
@@ -913,10 +904,10 @@ Task: <description>
913904
914905| Skill | 包含操作 |
915906| ------ - | -------- - |
916- | ` workflow-lite-plan ` | lite- plan, lite - execute |
907+ | ` workflow-lite-planex ` | lite- plan (includes execution phase internally) |
917908| ` workflow-plan` | plan, plan- verify, replan |
918909| ` workflow-execute` | execute |
919- | ` workflow-multi-cli-plan` | multi- cli- plan |
910+ | ` workflow-multi-cli-plan` | multi- cli- plan (includes execution phase internally) |
920911| ` workflow-test-fix` | test- fix- gen, test- cycle- execute |
921912| ` workflow-tdd-plan` | tdd- plan, tdd- verify |
922913| ` review-cycle` | review- session- cycle, review- module - cycle, review- cycle- fix |
@@ -948,19 +939,19 @@ Task: <description>
948939
949940| Task Type | Pipeline | Minimum Units |
950941| ---------- - | ---------- | -- - |
951- | ** feature** (simple) | 需求 →【lite- plan → lite - execute 】→ 代码 →【test- fix- gen → test- cycle- execute】→ 测试通过 | Quick Implementation + Test Validation |
942+ | ** feature** (simple) | 需求 →【lite- plan】→ 代码 →【test- fix- gen → test- cycle- execute】→ 测试通过 | Quick Implementation + Test Validation |
952943| ** feature** (complex) | 需求 →【plan → plan- verify】→ validate → execute → 代码 → review → fix | Full Planning + Code Review + Testing |
953944| ** bugfix** | Bug报告 → lite- plan (-- bugfix) → 修复代码 →【test- fix- gen → test- cycle- execute】→ 测试通过 | Bug Fix + Test Validation |
954945| ** tdd** | 需求 → tdd- plan → TDD 任务 → execute → 代码 → tdd- verify | TDD Planning + Execution |
955946| ** test- fix** | 失败测试 →【test- fix- gen → test- cycle- execute】→ 测试通过 | Test Validation |
956947| ** test- gen** | 代码/ 会话 →【test- gen → execute】→ 测试通过 | Test Generation + Execution |
957948| ** review** | 代码 →【review-* → review- cycle- fix】→ 修复代码 →【test- fix- gen → test- cycle- execute】→ 测试通过 | Code Review + Testing |
958949| ** brainstorm** | 探索主题 → brainstorm → 分析 →【plan → plan- verify】→ execute → test | Exploration + Planning + Execution |
959- | ** multi- cli** | 需求 → multi- cli- plan → 对比分析 → lite - execute → test | Multi- Perspective + Testing |
950+ | ** multi- cli** | 需求 → multi- cli- plan → 对比分析 → 代码 → test | Multi- Perspective + Testing |
960951| ** spec- driven** | 需求 →【spec- generator → plan → execute】→ 代码 →【test- fix- gen → test- cycle- execute】→ 测试通过 | Spec- Driven + Testing |
961952| ** issue- batch** | 代码库 →【discover → plan → queue → execute】→ 完成 issues | Issue Workflow |
962953| ** issue- transition** | 需求 →【lite- plan → convert- to- plan → queue → execute】→ 完成 issues | Rapid- to- Issue |
963- | ** analyze- file** | 分析主题 →【analyze- with - file → lite- plan → lite - execute 】→ 代码 | Analyze to Plan |
954+ | ** analyze- file** | 分析主题 →【analyze- with - file → lite- plan】→ 代码 | Analyze to Plan |
964955| ** greenfield** | 需求 →【brainstorm- with - file → plan → execute】→ 代码 → test | Greenfield (0 →1 ) |
965956| ** brainstorm- file** | 主题 →【brainstorm- with - file → plan → execute】→ 代码 → test | Brainstorm to Plan |
966957| ** brainstorm- to- issue** | brainstorm .md →【from- brainstorm → queue → execute】→ 完成 issues | Brainstorm to Issue |
@@ -972,8 +963,8 @@ Task: <description>
972963| ** team- planex** | 需求 → team- planex → 代码 (自包含) | Team Plan+ Execute |
973964| ** bugfix- hotfix** | Bug报告(紧急) → lite- plan (-- hotfix) → 修复代码 | Hotfix (skip tests) |
974965| ** exploration** | 探索主题 → brainstorm →【plan → execute】→ 代码 → test | Exploration + Planning |
975- | ** quick- task** | 需求 →【lite- plan → lite - execute 】→ 代码 → test | Quick Implementation |
966+ | ** quick- task** | 需求 →【lite- plan】→ 代码 → test | Quick Implementation |
976967| ** ui- design** | UI 需求 → ui- design: explore → plan → execute → 代码 | UI Design |
977- | ** documentation** | 文档需求 → lite- plan → lite - execute → 文档 | Documentation |
968+ | ** documentation** | 文档需求 → lite- plan → 文档 | Documentation |
978969
979970Refer to the Skill 映射 section above for available Skills and Commands.
0 commit comments