Skip to content

Commit 56c06ec

Browse files
author
catlog22
committed
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.
1 parent cff1e16 commit 56c06ec

66 files changed

Lines changed: 795 additions & 877 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/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-planex "feature idea"` (exploratory) → `.scratchpad/lite-plan-feature-idea-20250105-143110.md`
786+
- `/workflow-lite-plan "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: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ Interactive orchestration tool: analyze task → discover commands → recommend
1717

1818
| Skill | 包含操作 |
1919
|-------|---------|
20-
| `workflow-lite-planex` | lite-plan (includes execution phase internally) |
20+
| `workflow-lite-plan` | lite-plan (Skill handoff to lite-execute) |
21+
| `workflow-lite-execute` | lite-execute (multi-mode execution engine) |
2122
| `workflow-plan` | plan, plan-verify, replan |
2223
| `workflow-execute` | execute |
2324
| `workflow-multi-cli-plan` | multi-cli-plan (includes execution phase internally) |
@@ -547,7 +548,7 @@ Pipeline (管道视图):
547548
需求 → lite-plan → 代码 → test-cycle-execute → 测试通过
548549

549550
Commands (命令列表):
550-
1. /workflow-lite-planex
551+
1. /workflow-lite-plan
551552
2. /workflow-test-fix
552553

553554
Proceed? [Confirm / Show Details / Adjust / Cancel]
@@ -851,7 +852,7 @@ workflow 操作通过 `Skill()` 调用对应的 Skill。
851852
852853
```javascript
853854
// Skill 调用方式
854-
Skill({ skill: 'workflow-lite-planex', args: '"task description"' });
855+
Skill({ skill: 'workflow-lite-plan', args: '"task description"' });
855856
Skill({ skill: 'workflow-execute', args: '--resume-session="WFS-xxx"' });
856857
Skill({ skill: 'brainstorm', args: '"exploration topic"' });
857858
Skill({ skill: 'spec-generator', args: '"product specification"' });
@@ -904,7 +905,8 @@ Task: <description>
904905
905906
| Skill | 包含操作 |
906907
|-------|---------|
907-
| `workflow-lite-planex` | lite-plan (includes execution phase internally) |
908+
| `workflow-lite-plan` | lite-plan (Skill handoff to lite-execute) |
909+
| `workflow-lite-execute` | lite-execute (multi-mode execution engine) |
908910
| `workflow-plan` | plan, plan-verify, replan |
909911
| `workflow-execute` | execute |
910912
| `workflow-multi-cli-plan` | multi-cli-plan (includes execution phase internally) |

.claude/commands/ccw.md

Lines changed: 22 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -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` | 内部完成 planexecute |
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)
675676
todos = [
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
681682
todos = [
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)

.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-planex` skill**: Suggest running cli-init for better analysis
381+
- **After `workflow-lite-plan` skill**: Suggest running cli-init for better analysis
382382
- **Before analysis**: Recommend updating ignore patterns for cleaner results
383383

384384
### CLI Tool Integration

.claude/commands/flow-create.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ async function selectCommandCategory() {
107107
async function selectCommand(category) {
108108
const commandOptions = {
109109
'Planning': [
110-
{ label: "/workflow-lite-planex", description: "Lightweight merged-mode planning" },
110+
{ label: "/workflow-lite-plan", description: "Lightweight merged-mode planning" },
111111
{ label: "/workflow-plan", description: "Full planning with architecture design" },
112112
{ label: "/workflow-multi-cli-plan", description: "Multi-CLI collaborative planning (Gemini+Codex+Claude)" },
113113
{ label: "/workflow-tdd-plan", description: "TDD workflow planning with Red-Green-Refactor" },
@@ -132,7 +132,7 @@ async function selectCommand(category) {
132132
{ label: "/workflow:review", description: "Post-implementation review" }
133133
],
134134
'Bug Fix': [
135-
{ label: "/workflow-lite-planex", description: "Lightweight bug diagnosis and fix (with --bugfix flag)" },
135+
{ label: "/workflow-lite-plan", description: "Lightweight bug diagnosis and fix (with --bugfix flag)" },
136136
{ label: "/workflow:debug-with-file", description: "Hypothesis-driven debugging with documentation" }
137137
],
138138
'Brainstorm': [
@@ -302,7 +302,7 @@ async function defineSteps(templateDesign) {
302302
"description": "Quick implementation with testing",
303303
"level": 2,
304304
"steps": [
305-
{ "cmd": "/workflow-lite-planex", "args": "\"{{goal}}\"", "unit": "quick-implementation", "execution": { "type": "slash-command", "mode": "mainprocess" }, "contextHint": "Create lightweight implementation plan (includes execution)" },
305+
{ "cmd": "/workflow-lite-plan", "args": "\"{{goal}}\"", "unit": "quick-implementation", "execution": { "type": "slash-command", "mode": "mainprocess" }, "contextHint": "Create lightweight implementation plan (includes execution)" },
306306
{ "cmd": "/workflow-test-fix", "unit": "test-validation", "execution": { "type": "slash-command", "mode": "mainprocess" }, "contextHint": "Generate test tasks" },
307307
{ "cmd": "/workflow-test-fix", "unit": "test-validation", "execution": { "type": "slash-command", "mode": "async" }, "contextHint": "Execute test-fix cycle until pass rate >= 95%" }
308308
]
@@ -334,7 +334,7 @@ async function defineSteps(templateDesign) {
334334
"description": "Bug diagnosis and fix with testing",
335335
"level": 2,
336336
"steps": [
337-
{ "cmd": "/workflow-lite-planex", "args": "--bugfix \"{{goal}}\"", "unit": "bug-fix", "execution": { "type": "slash-command", "mode": "mainprocess" }, "contextHint": "Diagnose, plan, and execute bug fix" },
337+
{ "cmd": "/workflow-lite-plan", "args": "--bugfix \"{{goal}}\"", "unit": "bug-fix", "execution": { "type": "slash-command", "mode": "mainprocess" }, "contextHint": "Diagnose, plan, and execute bug fix" },
338338
{ "cmd": "/workflow-test-fix", "unit": "test-validation", "execution": { "type": "slash-command", "mode": "mainprocess" }, "contextHint": "Generate regression tests" },
339339
{ "cmd": "/workflow-test-fix", "unit": "test-validation", "execution": { "type": "slash-command", "mode": "async" }, "contextHint": "Verify fix with tests" }
340340
]
@@ -348,7 +348,7 @@ async function defineSteps(templateDesign) {
348348
"description": "Urgent production bug fix (no tests)",
349349
"level": 2,
350350
"steps": [
351-
{ "cmd": "/workflow-lite-planex", "args": "--hotfix \"{{goal}}\"", "unit": "standalone", "execution": { "type": "slash-command", "mode": "mainprocess" }, "contextHint": "Emergency hotfix mode" }
351+
{ "cmd": "/workflow-lite-plan", "args": "--hotfix \"{{goal}}\"", "unit": "standalone", "execution": { "type": "slash-command", "mode": "mainprocess" }, "contextHint": "Emergency hotfix mode" }
352352
]
353353
}
354354
```
@@ -417,7 +417,7 @@ async function defineSteps(templateDesign) {
417417
"description": "Bridge lightweight planning to issue workflow",
418418
"level": 2,
419419
"steps": [
420-
{ "cmd": "/workflow-lite-planex", "args": "\"{{goal}}\"", "unit": "rapid-to-issue", "execution": { "type": "slash-command", "mode": "mainprocess" }, "contextHint": "Create lightweight plan" },
420+
{ "cmd": "/workflow-lite-plan", "args": "\"{{goal}}\"", "unit": "rapid-to-issue", "execution": { "type": "slash-command", "mode": "mainprocess" }, "contextHint": "Create lightweight plan" },
421421
{ "cmd": "/issue:convert-to-plan", "args": "--latest-lite-plan -y", "unit": "rapid-to-issue", "execution": { "type": "slash-command", "mode": "mainprocess" }, "contextHint": "Convert to issue plan" },
422422
{ "cmd": "/issue:queue", "unit": "rapid-to-issue", "execution": { "type": "slash-command", "mode": "mainprocess" }, "contextHint": "Form execution queue" },
423423
{ "cmd": "/issue:execute", "args": "--queue auto", "unit": "rapid-to-issue", "execution": { "type": "slash-command", "mode": "async" }, "contextHint": "Execute issue queue" }

.claude/commands/idaw/resume.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,16 @@ When `--yes` or `-y`: Auto-skip interrupted task, continue with remaining.
1515

1616
```javascript
1717
const SKILL_CHAIN_MAP = {
18-
'bugfix': ['workflow-lite-planex', 'workflow-test-fix'],
19-
'bugfix-hotfix': ['workflow-lite-planex'],
20-
'feature': ['workflow-lite-planex', 'workflow-test-fix'],
18+
'bugfix': ['workflow-lite-plan', 'workflow-test-fix'],
19+
'bugfix-hotfix': ['workflow-lite-plan'],
20+
'feature': ['workflow-lite-plan', 'workflow-test-fix'],
2121
'feature-complex': ['workflow-plan', 'workflow-execute', 'workflow-test-fix'],
2222
'refactor': ['workflow:refactor-cycle'],
2323
'tdd': ['workflow-tdd-plan', 'workflow-execute'],
2424
'test': ['workflow-test-fix'],
2525
'test-fix': ['workflow-test-fix'],
2626
'review': ['review-cycle'],
27-
'docs': ['workflow-lite-planex']
27+
'docs': ['workflow-lite-plan']
2828
};
2929
```
3030

.claude/commands/idaw/run-coordinate.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,16 @@ Coordinator variant of `/idaw:run`: external CLI execution with background tasks
2626

2727
```javascript
2828
const SKILL_CHAIN_MAP = {
29-
'bugfix': ['workflow-lite-planex', 'workflow-test-fix'],
30-
'bugfix-hotfix': ['workflow-lite-planex'],
31-
'feature': ['workflow-lite-planex', 'workflow-test-fix'],
29+
'bugfix': ['workflow-lite-plan', 'workflow-test-fix'],
30+
'bugfix-hotfix': ['workflow-lite-plan'],
31+
'feature': ['workflow-lite-plan', 'workflow-test-fix'],
3232
'feature-complex': ['workflow-plan', 'workflow-execute', 'workflow-test-fix'],
3333
'refactor': ['workflow:refactor-cycle'],
3434
'tdd': ['workflow-tdd-plan', 'workflow-execute'],
3535
'test': ['workflow-test-fix'],
3636
'test-fix': ['workflow-test-fix'],
3737
'review': ['review-cycle'],
38-
'docs': ['workflow-lite-planex']
38+
'docs': ['workflow-lite-plan']
3939
};
4040
```
4141

@@ -472,11 +472,11 @@ function assembleCliPrompt(skillName, task, previousResult, autoYes) {
472472
const yFlag = autoYes ? ' -y' : '';
473473
474474
// Map skill to command invocation
475-
if (skillName === 'workflow-lite-planex') {
475+
if (skillName === 'workflow-lite-plan') {
476476
const goal = sanitize(`${task.title}\n${task.description}`);
477-
prompt = `/workflow-lite-planex${yFlag} "${goal}"`;
478-
if (task.task_type === 'bugfix') prompt = `/workflow-lite-planex${yFlag} --bugfix "${goal}"`;
479-
if (task.task_type === 'bugfix-hotfix') prompt = `/workflow-lite-planex${yFlag} --hotfix "${goal}"`;
477+
prompt = `/workflow-lite-plan${yFlag} "${goal}"`;
478+
if (task.task_type === 'bugfix') prompt = `/workflow-lite-plan${yFlag} --bugfix "${goal}"`;
479+
if (task.task_type === 'bugfix-hotfix') prompt = `/workflow-lite-plan${yFlag} --hotfix "${goal}"`;
480480
481481
} else if (skillName === 'workflow-plan') {
482482
prompt = `/workflow-plan${yFlag} "${sanitize(task.title)}"`;
@@ -608,8 +608,8 @@ Phase 5: handleStepCompletion()
608608
{
609609
"task_id": "IDAW-001",
610610
"skill_index": 0,
611-
"skill": "workflow-lite-planex",
612-
"prompt": "/workflow-lite-planex -y \"Fix login timeout\"",
611+
"skill": "workflow-lite-plan",
612+
"prompt": "/workflow-lite-plan -y \"Fix login timeout\"",
613613
"timestamp": "ISO"
614614
}
615615
]

0 commit comments

Comments
 (0)