@@ -15,7 +15,8 @@ Main process orchestrator: intent analysis → workflow selection → command ch
1515
1616| Skill | 内部流水线 |
1717| -------| -----------|
18- | ` workflow-lite-planex ` | explore → plan → confirm → execute |
18+ | ` workflow-lite-plan ` | explore → plan → confirm → handoff |
19+ | ` workflow-lite-execute ` | task grouping → batch execution → code review → sync |
1920| ` workflow-plan ` | session → context → convention → gen → verify/replan |
2021| ` workflow-execute ` | session discovery → task processing → commit |
2122| ` workflow-tdd-plan ` | 6-phase TDD plan → verify |
@@ -43,14 +44,14 @@ Main process orchestrator: intent analysis → workflow selection → command ch
4344
4445| 单元类型 | Skill | 说明 |
4546| ---------| -------| ------|
46- | 轻量 Plan+Execute | ` workflow-lite-planex ` | 内部完成 plan→ execute |
47+ | 轻量 Plan+Execute | ` workflow-lite-plan ` → ` workflow-lite-execute ` | plan handoff 到 execute,分离 Skill,TodoWrite 跟踪延续 (LP-Phase → LE-Phase) |
4748| 标准 Planning | ` workflow-plan ` → ` workflow-execute ` | plan 和 execute 是独立 Skill |
4849| TDD Planning | ` workflow-tdd-plan ` → ` workflow-execute ` | tdd-plan 和 execute 是独立 Skill |
4950| 规格驱动 | ` spec-generator ` → ` workflow-plan ` → ` workflow-execute ` | 规格文档驱动完整开发 |
5051| 测试流水线 | ` workflow-test-fix ` | 内部完成 gen→cycle |
5152| 代码审查 | ` review-cycle ` | 内部完成 review→fix |
52- | 多CLI协作 | ` workflow-multi-cli-plan ` | ACE context → CLI discussion → plan → execute |
53- | 分析→规划 | ` workflow:analyze-with-file ` → ` workflow-lite-planex ` | 协作分析产物自动传递给 lite-plan |
53+ | 多CLI协作 | ` workflow-multi-cli-plan ` | ACE context → CLI discussion → plan → Skill(lite- execute) |
54+ | 分析→规划 | ` workflow:analyze-with-file ` → ` workflow-lite-plan ` → ` workflow-lite-execute ` | 协作分析产物自动传递给 lite-plan,Skill 调用 lite-execute |
5455| 头脑风暴→规划 | ` workflow:brainstorm-with-file ` → ` workflow-plan ` → ` workflow-execute ` | 头脑风暴产物自动传递给正式规划 |
5556| 0→1 开发(小) | ` workflow:brainstorm-with-file ` → ` workflow-plan ` → ` workflow-execute ` | 小规模从零开始,探索+正式规划+实现 |
5657| 0→1 开发(中/大) | ` workflow:brainstorm-with-file ` → ` workflow-plan ` → ` workflow-execute ` | 探索后正式规划+执行 |
@@ -231,29 +232,29 @@ function buildCommandChain(workflow, analysis) {
231232 const chains = {
232233 // Level 2 - Lightweight
233234 ' rapid' : [
234- { cmd: ' workflow-lite-planex ' , args: ` "${ analysis .goal } "` },
235+ { cmd: ' workflow-lite-plan ' , args: ` "${ analysis .goal } "` },
235236 ... (analysis .constraints ? .includes (' skip-tests' ) ? [] : [
236237 { cmd: ' workflow-test-fix' , args: ' ' }
237238 ])
238239 ],
239240
240241 // Level 2 Bridge - Lightweight to Issue Workflow
241242 ' rapid-to-issue' : [
242- { cmd: ' workflow-lite-planex ' , args: ` "${ analysis .goal } " --plan-only` },
243+ { cmd: ' workflow-lite-plan ' , args: ` "${ analysis .goal } " --plan-only` },
243244 { cmd: ' issue:convert-to-plan' , args: ' --latest-lite-plan -y' },
244245 { cmd: ' issue:queue' , args: ' ' },
245246 { cmd: ' issue:execute' , args: ' --queue auto' }
246247 ],
247248
248249 ' bugfix.standard' : [
249- { cmd: ' workflow-lite-planex ' , args: ` --bugfix "${ analysis .goal } "` },
250+ { cmd: ' workflow-lite-plan ' , args: ` --bugfix "${ analysis .goal } "` },
250251 ... (analysis .constraints ? .includes (' skip-tests' ) ? [] : [
251252 { cmd: ' workflow-test-fix' , args: ' ' }
252253 ])
253254 ],
254255
255256 ' bugfix.hotfix' : [
256- { cmd: ' workflow-lite-planex ' , args: ` --hotfix "${ analysis .goal } "` }
257+ { cmd: ' workflow-lite-plan ' , args: ` --hotfix "${ analysis .goal } "` }
257258 ],
258259
259260 ' multi-cli-plan' : [
@@ -264,13 +265,13 @@ function buildCommandChain(workflow, analysis) {
264265 ],
265266
266267 ' docs' : [
267- { cmd: ' workflow-lite-planex ' , args: ` "${ analysis .goal } "` }
268+ { cmd: ' workflow-lite-plan ' , args: ` "${ analysis .goal } "` }
268269 ],
269270
270271 // With-File → Auto Chain to lite-plan
271272 ' analyze-to-plan' : [
272273 { cmd: ' workflow:analyze-with-file' , args: ` "${ analysis .goal } "` },
273- { cmd: ' workflow-lite-planex ' , args: ' ' } // auto receives analysis artifacts (discussion.md)
274+ { cmd: ' workflow-lite-plan ' , args: ' ' } // auto receives analysis artifacts (discussion.md)
274275 ],
275276
276277 ' brainstorm-to-plan' : [
@@ -476,7 +477,7 @@ function setupTodoTracking(chain, workflow, analysis) {
476477` ` `
477478
478479**Output**:
479- - TODO: ` - > CCW : rapid: [1 / 2 ] workflow- lite- planex | CCW : rapid: [2 / 2 ] workflow- test- fix | ... `
480+ - TODO: ` - > CCW : rapid: [1 / 2 ] workflow- lite- plan | CCW : rapid: [2 / 2 ] workflow- test- fix | ... `
480481- Status File: ` .workflow / .ccw / {session_id}/ status .json `
481482
482483---
@@ -628,10 +629,10 @@ Phase 5: Execute Command Chain
628629
629630| Input | Type | Level | Pipeline |
630631|-------|------|-------|----------|
631- | "Add API endpoint" | feature (low) | 2 | workflow-lite-planex → workflow-test-fix |
632- | "Fix login timeout" | bugfix | 2 | workflow-lite-planex → workflow-test-fix |
633- | "Use issue workflow" | issue-transition | 2.5 | workflow-lite-planex (plan-only) → convert-to-plan → queue → execute |
634- | "协作分析: 认证架构" | analyze-file | 3 | analyze-with-file → workflow-lite-planex |
632+ | "Add API endpoint" | feature (low) | 2 | workflow-lite-plan → workflow-test-fix |
633+ | "Fix login timeout" | bugfix | 2 | workflow-lite-plan → workflow-test-fix |
634+ | "Use issue workflow" | issue-transition | 2.5 | workflow-lite-plan (plan-only) → convert-to-plan → queue → execute |
635+ | "协作分析: 认证架构" | analyze-file | 3 | analyze-with-file → workflow-lite-plan |
635636| "深度调试 WebSocket" | debug-file | 3 | workflow:debug-with-file |
636637| "从零开始: 用户系统" | greenfield (medium) | 3 | brainstorm-with-file → workflow-plan → workflow-execute → workflow-test-fix |
637638| "greenfield: 大型平台" | greenfield (high) | 4 | brainstorm-with-file → workflow-plan → workflow-execute → review-cycle → workflow-test-fix |
@@ -673,13 +674,13 @@ Phase 5: Execute Command Chain
673674` ` ` javascript
674675// Initial state (rapid workflow: 2 steps)
675676todos = [
676- { content: " CCW:rapid: [1/2] workflow-lite-planex " , status: " in_progress" },
677+ { content: " CCW:rapid: [1/2] workflow-lite-plan " , status: " in_progress" },
677678 { content: " CCW:rapid: [2/2] workflow-test-fix" , status: " pending" }
678679];
679680
680681// After step 1 completes
681682todos = [
682- { content: " CCW:rapid: [1/2] workflow-lite-planex " , status: " completed" },
683+ { content: " CCW:rapid: [1/2] workflow-lite-plan " , status: " completed" },
683684 { content: " CCW:rapid: [2/2] workflow-test-fix" , status: " in_progress" }
684685];
685686` ` `
@@ -704,7 +705,7 @@ todos = [
704705 " complexity" : " medium"
705706 },
706707 " command_chain" : [
707- { " index" : 0 , " command" : " workflow-lite-planex " , " status" : " completed" },
708+ { " index" : 0 , " command" : " workflow-lite-plan " , " status" : " completed" },
708709 { " index" : 1 , " command" : " workflow-test-fix" , " status" : " running" }
709710 ],
710711 " current_index" : 1
@@ -724,11 +725,11 @@ todos = [
724725|----------|---------|------------|---------------|
725726| **brainstorm-with-file** | Multi-perspective ideation | → workflow-plan → workflow-execute (auto) | ` .workflow / .brainstorm / ` |
726727| **debug-with-file** | Hypothesis-driven debugging | Standalone (self-contained) | ` .workflow / .debug / ` |
727- | **analyze-with-file** | Collaborative analysis | → workflow-lite-planex (auto) | ` .workflow / .analysis / ` |
728+ | **analyze-with-file** | Collaborative analysis | → workflow-lite-plan → workflow-lite-execute (auto) | ` .workflow / .analysis / ` |
728729| **collaborative-plan-with-file** | Multi-agent collaborative planning | → unified-execute-with-file | ` .workflow / .planning / ` |
729730| **roadmap-with-file** | Strategic requirement roadmap | → team-planex | ` .workflow / .planning / ` |
730731
731- **Auto Chain Mechanism**: When ` analyze- with - file` completes, its artifacts (discussion.md) are automatically passed to ` workflow- lite- planex ` . When ` brainstorm- with - file` completes, its artifacts (brainstorm.md) are passed to ` workflow- plan` for formal planning. No user intervention needed.
732+ **Auto Chain Mechanism**: When ` analyze- with - file` completes, its artifacts (discussion.md) are automatically passed to ` workflow- lite- plan ` . When ` brainstorm- with - file` completes, its artifacts (brainstorm.md) are passed to ` workflow- plan` for formal planning. No user intervention needed.
732733
733734**Detection Keywords**:
734735- **brainstorm**: 头脑风暴, 创意, 发散思维, multi-perspective, compare perspectives
@@ -793,7 +794,7 @@ todos = [
793794/ccw "全新开发: 实时通知系统" # → brainstorm-with-file → workflow-plan → workflow-execute → review-cycle → workflow-test-fix
794795
795796# With-File workflows → auto chain
796- /ccw "协作分析: 理解现有认证架构的设计决策" # → analyze-with-file → workflow-lite-planex
797+ /ccw "协作分析: 理解现有认证架构的设计决策" # → analyze-with-file → workflow-lite-plan → workflow-lite-execute
797798/ccw "头脑风暴: 用户通知系统重新设计" # → brainstorm-with-file → workflow-plan → workflow-execute → workflow-test-fix
798799/ccw "深度调试: 系统随机崩溃问题" # → debug-with-file (standalone)
799800/ccw "从头脑风暴 BS-通知系统-2025-01-28 创建 issue" # → brainstorm-to-issue (bridge)
0 commit comments