Skip to content

Commit 0d5cc4a

Browse files
author
catlog22
committed
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
1 parent 71485b8 commit 0d5cc4a

60 files changed

Lines changed: 277 additions & 445 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.ccw/workflows/cli-templates/schemas/project-tech-schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@
155155
},
156156
"development_index": {
157157
"type": "object",
158-
"description": "Categorized development history (lite-plan/lite-execute)",
158+
"description": "Categorized development history (lite-planex sessions)",
159159
"properties": {
160160
"feature": { "type": "array", "items": { "$ref": "#/$defs/devIndexEntry" } },
161161
"enhancement": { "type": "array", "items": { "$ref": "#/$defs/devIndexEntry" } },

.ccw/workflows/workflow-architecture.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -783,7 +783,7 @@ All workflows use the same file structure definition regardless of complexity. *
783783
**Examples**:
784784

785785
*Workflow Commands (lightweight):*
786-
- `/workflow-lite-plan "feature idea"` (exploratory) → `.scratchpad/lite-plan-feature-idea-20250105-143110.md`
786+
- `/workflow-lite-planex "feature idea"` (exploratory) → `.scratchpad/lite-plan-feature-idea-20250105-143110.md`
787787
- `/workflow:lite-fix "bug description"` (bug fixing) → `.scratchpad/lite-fix-bug-20250105-143130.md`
788788

789789
> **Note**: Direct CLI commands (`/cli:analyze`, `/cli:execute`, etc.) have been replaced by semantic invocation and workflow commands.

.claude/commands/ccw-coordinator.md

Lines changed: 23 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -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) {
550544
Recommended Command Chain:
551545

552546
Pipeline (管道视图):
553-
需求 → lite-plan → 计划 → lite-execute → 代码 → test-cycle-execute → 测试通过
547+
需求 → lite-plan → 代码 → test-cycle-execute → 测试通过
554548

555549
Commands (命令列表):
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

560553
Proceed? [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"' });
864855
Skill({ skill: 'workflow-execute', args: '--resume-session="WFS-xxx"' });
865856
Skill({ skill: 'brainstorm', args: '"exploration topic"' });
866857
Skill({ 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 (01) |
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
979970
Refer to the Skill 映射 section above for available Skills and Commands.

.claude/commands/ccw.md

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Main process orchestrator: intent analysis → workflow selection → command ch
1515

1616
| Skill | 内部流水线 |
1717
|-------|-----------|
18-
| `workflow-lite-plan` | explore → plan → confirm → execute |
18+
| `workflow-lite-planex` | explore → plan → confirm → execute |
1919
| `workflow-plan` | session → context → convention → gen → verify/replan |
2020
| `workflow-execute` | session discovery → task processing → commit |
2121
| `workflow-tdd-plan` | 6-phase TDD plan → verify |
@@ -43,14 +43,14 @@ Main process orchestrator: intent analysis → workflow selection → command ch
4343

4444
| 单元类型 | Skill | 说明 |
4545
|---------|-------|------|
46-
| 轻量 Plan+Execute | `workflow-lite-plan` | 内部完成 plan→execute |
46+
| 轻量 Plan+Execute | `workflow-lite-planex` | 内部完成 plan→execute |
4747
| 标准 Planning | `workflow-plan``workflow-execute` | plan 和 execute 是独立 Skill |
4848
| TDD Planning | `workflow-tdd-plan``workflow-execute` | tdd-plan 和 execute 是独立 Skill |
4949
| 规格驱动 | `spec-generator``workflow-plan``workflow-execute` | 规格文档驱动完整开发 |
5050
| 测试流水线 | `workflow-test-fix` | 内部完成 gen→cycle |
5151
| 代码审查 | `review-cycle` | 内部完成 review→fix |
5252
| 多CLI协作 | `workflow-multi-cli-plan` | ACE context → CLI discussion → plan → execute |
53-
| 分析→规划 | `workflow:analyze-with-file``workflow-lite-plan` | 协作分析产物自动传递给 lite-plan |
53+
| 分析→规划 | `workflow:analyze-with-file``workflow-lite-planex` | 协作分析产物自动传递给 lite-plan |
5454
| 头脑风暴→规划 | `workflow:brainstorm-with-file``workflow-plan``workflow-execute` | 头脑风暴产物自动传递给正式规划 |
5555
| 0→1 开发(小) | `workflow:brainstorm-with-file``workflow-plan``workflow-execute` | 小规模从零开始,探索+正式规划+实现 |
5656
| 0→1 开发(中/大) | `workflow:brainstorm-with-file``workflow-plan``workflow-execute` | 探索后正式规划+执行 |
@@ -231,29 +231,29 @@ function buildCommandChain(workflow, analysis) {
231231
const chains = {
232232
// Level 2 - Lightweight
233233
'rapid': [
234-
{ cmd: 'workflow-lite-plan', args: `"${analysis.goal}"` },
234+
{ cmd: 'workflow-lite-planex', args: `"${analysis.goal}"` },
235235
...(analysis.constraints?.includes('skip-tests') ? [] : [
236236
{ cmd: 'workflow-test-fix', args: '' }
237237
])
238238
],
239239

240240
// Level 2 Bridge - Lightweight to Issue Workflow
241241
'rapid-to-issue': [
242-
{ cmd: 'workflow-lite-plan', args: `"${analysis.goal}" --plan-only` },
242+
{ cmd: 'workflow-lite-planex', args: `"${analysis.goal}" --plan-only` },
243243
{ cmd: 'issue:convert-to-plan', args: '--latest-lite-plan -y' },
244244
{ cmd: 'issue:queue', args: '' },
245245
{ cmd: 'issue:execute', args: '--queue auto' }
246246
],
247247

248248
'bugfix.standard': [
249-
{ cmd: 'workflow-lite-plan', args: `--bugfix "${analysis.goal}"` },
249+
{ cmd: 'workflow-lite-planex', args: `--bugfix "${analysis.goal}"` },
250250
...(analysis.constraints?.includes('skip-tests') ? [] : [
251251
{ cmd: 'workflow-test-fix', args: '' }
252252
])
253253
],
254254

255255
'bugfix.hotfix': [
256-
{ cmd: 'workflow-lite-plan', args: `--hotfix "${analysis.goal}"` }
256+
{ cmd: 'workflow-lite-planex', args: `--hotfix "${analysis.goal}"` }
257257
],
258258

259259
'multi-cli-plan': [
@@ -264,13 +264,13 @@ function buildCommandChain(workflow, analysis) {
264264
],
265265

266266
'docs': [
267-
{ cmd: 'workflow-lite-plan', args: `"${analysis.goal}"` }
267+
{ cmd: 'workflow-lite-planex', args: `"${analysis.goal}"` }
268268
],
269269

270270
// With-File → Auto Chain to lite-plan
271271
'analyze-to-plan': [
272272
{ cmd: 'workflow:analyze-with-file', args: `"${analysis.goal}"` },
273-
{ cmd: 'workflow-lite-plan', args: '' } // auto receives analysis artifacts (discussion.md)
273+
{ cmd: 'workflow-lite-planex', args: '' } // auto receives analysis artifacts (discussion.md)
274274
],
275275

276276
'brainstorm-to-plan': [
@@ -476,7 +476,7 @@ function setupTodoTracking(chain, workflow, analysis) {
476476
```
477477
478478
**Output**:
479-
- TODO: `-> CCW:rapid: [1/2] workflow-lite-plan | CCW:rapid: [2/2] workflow-test-fix | ...`
479+
- TODO: `-> CCW:rapid: [1/2] workflow-lite-planex | CCW:rapid: [2/2] workflow-test-fix | ...`
480480
- Status File: `.workflow/.ccw/{session_id}/status.json`
481481
482482
---
@@ -628,10 +628,10 @@ Phase 5: Execute Command Chain
628628
629629
| Input | Type | Level | Pipeline |
630630
|-------|------|-------|----------|
631-
| "Add API endpoint" | feature (low) | 2 | workflow-lite-plan → workflow-test-fix |
632-
| "Fix login timeout" | bugfix | 2 | workflow-lite-plan → workflow-test-fix |
633-
| "Use issue workflow" | issue-transition | 2.5 | workflow-lite-plan(plan-only) → convert-to-plan → queue → execute |
634-
| "协作分析: 认证架构" | analyze-file | 3 | analyze-with-file → workflow-lite-plan |
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 |
635635
| "深度调试 WebSocket" | debug-file | 3 | workflow:debug-with-file |
636636
| "从零开始: 用户系统" | greenfield (medium) | 3 | brainstorm-with-file → workflow-plan → workflow-execute → workflow-test-fix |
637637
| "greenfield: 大型平台" | greenfield (high) | 4 | brainstorm-with-file → workflow-plan → workflow-execute → review-cycle → workflow-test-fix |
@@ -673,13 +673,13 @@ Phase 5: Execute Command Chain
673673
```javascript
674674
// Initial state (rapid workflow: 2 steps)
675675
todos = [
676-
{ content: "CCW:rapid: [1/2] workflow-lite-plan", status: "in_progress" },
676+
{ content: "CCW:rapid: [1/2] workflow-lite-planex", status: "in_progress" },
677677
{ content: "CCW:rapid: [2/2] workflow-test-fix", status: "pending" }
678678
];
679679

680680
// After step 1 completes
681681
todos = [
682-
{ content: "CCW:rapid: [1/2] workflow-lite-plan", status: "completed" },
682+
{ content: "CCW:rapid: [1/2] workflow-lite-planex", status: "completed" },
683683
{ content: "CCW:rapid: [2/2] workflow-test-fix", status: "in_progress" }
684684
];
685685
```
@@ -704,7 +704,7 @@ todos = [
704704
"complexity": "medium"
705705
},
706706
"command_chain": [
707-
{ "index": 0, "command": "workflow-lite-plan", "status": "completed" },
707+
{ "index": 0, "command": "workflow-lite-planex", "status": "completed" },
708708
{ "index": 1, "command": "workflow-test-fix", "status": "running" }
709709
],
710710
"current_index": 1
@@ -724,11 +724,11 @@ todos = [
724724
|----------|---------|------------|---------------|
725725
| **brainstorm-with-file** | Multi-perspective ideation | → workflow-plan → workflow-execute (auto) | `.workflow/.brainstorm/` |
726726
| **debug-with-file** | Hypothesis-driven debugging | Standalone (self-contained) | `.workflow/.debug/` |
727-
| **analyze-with-file** | Collaborative analysis | → workflow-lite-plan (auto) | `.workflow/.analysis/` |
727+
| **analyze-with-file** | Collaborative analysis | → workflow-lite-planex (auto) | `.workflow/.analysis/` |
728728
| **collaborative-plan-with-file** | Multi-agent collaborative planning | → unified-execute-with-file | `.workflow/.planning/` |
729729
| **roadmap-with-file** | Strategic requirement roadmap | → team-planex | `.workflow/.planning/` |
730730
731-
**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.
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.
732732
733733
**Detection Keywords**:
734734
- **brainstorm**: 头脑风暴, 创意, 发散思维, multi-perspective, compare perspectives
@@ -793,7 +793,7 @@ todos = [
793793
/ccw "全新开发: 实时通知系统" # → brainstorm-with-file → workflow-plan → workflow-execute → review-cycle → workflow-test-fix
794794
795795
# With-File workflows → auto chain
796-
/ccw "协作分析: 理解现有认证架构的设计决策" # → analyze-with-file → workflow-lite-plan
796+
/ccw "协作分析: 理解现有认证架构的设计决策" # → analyze-with-file → workflow-lite-planex
797797
/ccw "头脑风暴: 用户通知系统重新设计" # → brainstorm-with-file → workflow-plan → workflow-execute → workflow-test-fix
798798
/ccw "深度调试: 系统随机崩溃问题" # → debug-with-file (standalone)
799799
/ccw "从头脑风暴 BS-通知系统-2025-01-28 创建 issue" # → brainstorm-to-issue (bridge)

.claude/commands/cli/cli-init.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ docker-compose.override.yml
378378
## Integration Points
379379

380380
### Workflow Commands
381-
- **After `workflow-lite-plan` skill**: Suggest running cli-init for better analysis
381+
- **After `workflow-lite-planex` skill**: Suggest running cli-init for better analysis
382382
- **Before analysis**: Recommend updating ignore patterns for cleaner results
383383

384384
### CLI Tool Integration

0 commit comments

Comments
 (0)