mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-03-07 16:41:06 +08:00
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.
This commit is contained in:
@@ -45,9 +45,9 @@ High-level orchestrators for complex, multi-phase development processes.
|
||||
/workflow-plan "Create a simple Express API that returns Hello World"
|
||||
```
|
||||
|
||||
### **/workflow-lite-planex** ⚡ NEW
|
||||
### **/workflow-lite-plan** ⚡ NEW
|
||||
|
||||
- **Syntax**: `/workflow-lite-planex [--tool claude|gemini|qwen|codex] [-e|--explore] "task description"|file.md`
|
||||
- **Syntax**: `/workflow-lite-plan [--tool claude|gemini|qwen|codex] [-e|--explore] "task description"|file.md`
|
||||
- **Parameters**:
|
||||
- `--tool` (Optional, String): Preset CLI tool for execution (claude|gemini|qwen|codex). If not provided, user selects during confirmation.
|
||||
- `-e, --explore` (Optional, Flag): Force code exploration phase (overrides auto-detection logic).
|
||||
@@ -74,13 +74,13 @@ High-level orchestrators for complex, multi-phase development processes.
|
||||
- **Example**:
|
||||
```bash
|
||||
# Basic usage with auto-detection
|
||||
/workflow-lite-planex "Add JWT authentication to user login"
|
||||
/workflow-lite-plan "Add JWT authentication to user login"
|
||||
|
||||
# Force code exploration
|
||||
/workflow-lite-planex -e "Refactor logging module for better performance"
|
||||
/workflow-lite-plan -e "Refactor logging module for better performance"
|
||||
|
||||
# Basic usage
|
||||
/workflow-lite-planex "Add unit tests for auth service"
|
||||
/workflow-lite-plan "Add unit tests for auth service"
|
||||
```
|
||||
|
||||
### **/workflow-execute**
|
||||
@@ -202,7 +202,7 @@ CLI tool configuration commands.
|
||||
/cli:cli-init
|
||||
```
|
||||
|
||||
> **Note**: For analysis, planning, and bug fixing, use workflow commands (`/workflow-lite-planex`, `/workflow:debug-with-file`) or semantic invocation through natural language. Claude will automatically use appropriate CLI tools (Gemini/Qwen/Codex) with templates as needed.
|
||||
> **Note**: For analysis, planning, and bug fixing, use workflow commands (`/workflow-lite-plan`, `/workflow:debug-with-file`) or semantic invocation through natural language. Claude will automatically use appropriate CLI tools (Gemini/Qwen/Codex) with templates as needed.
|
||||
|
||||
---
|
||||
|
||||
|
||||
@@ -31,7 +31,7 @@ Complete reference for all **43 CCW commands** organized by category, with **7 w
|
||||
- `-y, --yes` - Skip all confirmations
|
||||
|
||||
**Mapped Skills**:
|
||||
- workflow-lite-planex, workflow-plan, workflow-execute, workflow-tdd-plan
|
||||
- workflow-lite-plan, workflow-plan, workflow-execute, workflow-tdd-plan
|
||||
- workflow-test-fix, workflow-multi-cli-plan, review-cycle, brainstorm
|
||||
- team-planex, team-iterdev, team-lifecycle, team-issue
|
||||
- team-testing, team-quality-assurance, team-brainstorm, team-uidesign
|
||||
|
||||
@@ -143,7 +143,7 @@ Both commands support the `--yes` flag for auto mode:
|
||||
|
||||
| Skill | Function |
|
||||
|-------|----------|
|
||||
| `workflow-lite-planex` | Lightweight planning workflow |
|
||||
| `workflow-lite-plan` | Lightweight planning workflow |
|
||||
| `workflow-plan` | Full planning workflow |
|
||||
| `workflow-execute` | Execution workflow |
|
||||
| `workflow-tdd-plan` | TDD workflow |
|
||||
|
||||
@@ -30,7 +30,7 @@
|
||||
|
||||
| Command | Function | Difficulty |
|
||||
|---------|----------|------------|
|
||||
| [`/workflow-lite-planex`](./workflow.md#lite-plan) | Lightweight interactive planning workflow | Intermediate |
|
||||
| [`/workflow-lite-plan`](./workflow.md#lite-plan) | Lightweight interactive planning workflow | Intermediate |
|
||||
| [`/workflow-plan`](./workflow.md#plan) | 5-phase planning workflow | Intermediate |
|
||||
| [`/workflow-execute`](./workflow.md#execute) | Coordinate agent execution of workflow tasks | Intermediate |
|
||||
| [`/workflow:replan`](./workflow.md#replan) | Interactive workflow replanning | Intermediate |
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
|
||||
| Command | Function | Syntax |
|
||||
|---------|----------|--------|
|
||||
| [`lite-plan`](#lite-plan) | Lightweight interactive planning workflow | `/workflow-lite-planex [-y] [-e] "task"` |
|
||||
| [`lite-plan`](#lite-plan) | Lightweight interactive planning workflow | `/workflow-lite-plan [-y] [-e] "task"` |
|
||||
|
||||
### Standard Workflows
|
||||
|
||||
@@ -70,7 +70,7 @@
|
||||
|
||||
**Syntax**:
|
||||
```bash
|
||||
/workflow-lite-planex [-y|--yes] [-e|--explore] "task description" | file.md
|
||||
/workflow-lite-plan [-y|--yes] [-e|--explore] "task description" | file.md
|
||||
```
|
||||
|
||||
**Options**:
|
||||
@@ -79,10 +79,10 @@
|
||||
**Examples**:
|
||||
```bash
|
||||
# Basic planning
|
||||
/workflow-lite-planex "add user avatar feature"
|
||||
/workflow-lite-plan "add user avatar feature"
|
||||
|
||||
# With exploration
|
||||
/workflow-lite-planex -e "refactor authentication module"
|
||||
/workflow-lite-plan -e "refactor authentication module"
|
||||
```
|
||||
|
||||
### plan
|
||||
|
||||
@@ -43,7 +43,7 @@
|
||||
|
||||
| Category | Skill | Internal Pipeline | Use Case |
|
||||
|----------|-------|-------------------|----------|
|
||||
| **Workflow** | workflow-lite-planex | explore → plan → confirm → execute | Quick features, bug fixes |
|
||||
| **Workflow** | workflow-lite-plan | explore → plan → confirm → execute | Quick features, bug fixes |
|
||||
| **Workflow** | workflow-plan | session → context → convention → gen → verify/replan | Complex feature planning |
|
||||
| **Workflow** | workflow-execute | session discovery → task processing → commit | Execute pre-generated plans |
|
||||
| **Workflow** | workflow-tdd-plan | 6-phase TDD plan → verify | TDD development |
|
||||
@@ -81,7 +81,7 @@
|
||||
|
||||
| Skill | Internal Pipeline |
|
||||
|-------|-------------------|
|
||||
| workflow-lite-planex | explore → plan → confirm → execute |
|
||||
| workflow-lite-plan | explore → plan → confirm → execute |
|
||||
| workflow-plan | session → context → convention → gen → verify/replan |
|
||||
| workflow-execute | session discovery → task processing → commit |
|
||||
| workflow-tdd-plan | 6-phase TDD plan → verify |
|
||||
@@ -357,16 +357,16 @@
|
||||
|
||||
| Task Type | Skill Chain |
|
||||
|-----------|-------------|
|
||||
| bugfix | workflow-lite-planex → workflow-test-fix |
|
||||
| bugfix-hotfix | workflow-lite-planex |
|
||||
| feature | workflow-lite-planex → workflow-test-fix |
|
||||
| bugfix | workflow-lite-plan → workflow-test-fix |
|
||||
| bugfix-hotfix | workflow-lite-plan |
|
||||
| feature | workflow-lite-plan → workflow-test-fix |
|
||||
| feature-complex | workflow-plan → workflow-execute → workflow-test-fix |
|
||||
| refactor | workflow:refactor-cycle |
|
||||
| tdd | workflow-tdd-plan → workflow-execute |
|
||||
| test | workflow-test-fix |
|
||||
| test-fix | workflow-test-fix |
|
||||
| review | review-cycle |
|
||||
| docs | workflow-lite-planex |
|
||||
| docs | workflow-lite-plan |
|
||||
|
||||
**6-Phase Execution**:
|
||||
1. Load Tasks
|
||||
@@ -606,7 +606,7 @@
|
||||
|
||||
| Skill | Internal Pipeline | Description |
|
||||
|-------|-------------------|-------------|
|
||||
| workflow-lite-planex | explore → plan → confirm → execute | Lightweight merged-mode planning |
|
||||
| workflow-lite-plan | explore → plan → confirm → execute | Lightweight merged-mode planning |
|
||||
| workflow-plan | session → context → convention → gen → verify/replan | Full planning with architecture design |
|
||||
| workflow-execute | session discovery → task processing → commit | Execute from planning session |
|
||||
| workflow-tdd-plan | 6-phase TDD plan → verify | TDD workflow planning |
|
||||
@@ -716,7 +716,7 @@ Examples:
|
||||
### Skill Invocation (from code)
|
||||
|
||||
```javascript
|
||||
Skill({ skill: "workflow-lite-planex", args: '"task description"' })
|
||||
Skill({ skill: "workflow-lite-plan", args: '"task description"' })
|
||||
Skill({ skill: "brainstorm", args: '"topic or question"' })
|
||||
Skill({ skill: "review-cycle", args: '--session="WFS-xxx"' })
|
||||
```
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
| 命令 | 类型 | 输出 | 适用场景 | 特点 |
|
||||
|------|------|------|----------|------|
|
||||
| **workflow-plan** | 4阶段规划 | IMPL_PLAN.md, task JSONs, TODO_LIST.md | 标准功能开发 | 完整规划流程,支持冲突检测,可选验证 |
|
||||
| **workflow-lite-planex** | 轻量规划 | task JSONs | 快速任务 | 精简流程,直接执行,无验证阶段 |
|
||||
| **workflow-lite-plan** | 轻量规划 | task JSONs | 快速任务 | 精简流程,直接执行,无验证阶段 |
|
||||
| **workflow-tdd-plan** | TDD规划 | IMPL_PLAN.md (含Red-Green-Refactor) | 测试驱动开发 | 强制TDD结构,测试先行 |
|
||||
| **brainstorm** | 头脑风暴 | guidance-specification.md, role分析, feature-specs | 需求探索 | 多角色分析,角色扮演,创意生成 |
|
||||
| **issue:plan** | Issue规划 | solution JSON per issue | Issue驱动开发 | 批量规划,自动绑定,冲突检测 |
|
||||
@@ -39,7 +39,7 @@
|
||||
|
||||
```
|
||||
┌─────────────────┬───────────────────┬───────────────────┬───────────────────┐
|
||||
│ │ workflow-plan │ workflow-lite-planex│ issue:plan │
|
||||
│ │ workflow-plan │ workflow-lite-plan│ issue:plan │
|
||||
├─────────────────┼───────────────────┼───────────────────┼───────────────────┤
|
||||
│ 复杂度 │ 高 (4-6阶段) │ 低 (1-2阶段) │ 中 (3阶段) │
|
||||
│ 验证阶段 │ ✓ (Phase 5) │ ✗ │ ✗ │
|
||||
@@ -61,7 +61,7 @@
|
||||
| 命令 | 类型 | 执行方式 | 适用场景 | 特点 |
|
||||
|------|------|----------|----------|------|
|
||||
| **workflow-execute** | 任务执行器 | code-developer agent | 规划后执行 | 会话发现,并行任务,进度跟踪 |
|
||||
| **workflow-lite-planex** (执行模式) | 轻量执行 | code-developer / CLI | 快速实现 | 内置执行,无会话 |
|
||||
| **workflow-lite-plan** (执行模式) | 轻量执行 | code-developer / CLI | 快速实现 | 内置执行,无会话 |
|
||||
| **review-code** | 代码审查 | read-only | 质量检查 | 多维度审查,自动修复建议 |
|
||||
|
||||
### Team 执行 Skill
|
||||
@@ -188,7 +188,7 @@ if (task_count > 3) → Codex
|
||||
| 任务类型 | 推荐命令 | 备选命令 |
|
||||
|----------|----------|----------|
|
||||
| **新功能开发** | workflow-plan → workflow-execute | team-lifecycle |
|
||||
| **快速修复** | workflow-lite-planex | issue:plan → issue:execute |
|
||||
| **快速修复** | workflow-lite-plan | issue:plan → issue:execute |
|
||||
| **TDD开发** | workflow-tdd-plan → workflow-execute | - |
|
||||
| **需求探索** | brainstorm | team-brainstorm |
|
||||
| **Issue处理** | issue:plan → issue:queue → issue:execute | team-issue |
|
||||
@@ -201,7 +201,7 @@ if (task_count > 3) → Codex
|
||||
|
||||
| 规模 | 推荐命令 | 原因 |
|
||||
|------|----------|------|
|
||||
| **单人快速** | workflow-lite-planex | 轻量,直接执行 |
|
||||
| **单人快速** | workflow-lite-plan | 轻量,直接执行 |
|
||||
| **单人完整** | workflow-plan → workflow-execute | 完整流程,有验证 |
|
||||
| **多人协作** | team-coordinate | 动态角色,灵活分工 |
|
||||
| **专项团队** | team-* (按领域) | 领域专家角色 |
|
||||
@@ -210,7 +210,7 @@ if (task_count > 3) → Codex
|
||||
|
||||
```
|
||||
复杂度低 (1-2任务)
|
||||
└─ workflow-lite-planex (推荐)
|
||||
└─ workflow-lite-plan (推荐)
|
||||
└─ issue:plan (Issue驱动)
|
||||
|
||||
复杂度中 (3-10任务)
|
||||
@@ -258,7 +258,7 @@ tdd-plan plan issue plan brainstorm
|
||||
| 命令 | 调用方式 |
|
||||
|------|----------|
|
||||
| workflow-plan | `Skill(skill="workflow-plan", args="任务描述")` |
|
||||
| workflow-lite-planex | `Skill(skill="workflow-lite-planex", args="任务描述")` |
|
||||
| workflow-lite-plan | `Skill(skill="workflow-lite-plan", args="任务描述")` |
|
||||
| workflow-tdd-plan | `Skill(skill="workflow-tdd-plan", args="TDD任务描述")` |
|
||||
| brainstorm | `Skill(skill="brainstorm", args="主题 --count 3")` |
|
||||
| issue:plan | `/issue:plan GH-123,GH-124` |
|
||||
@@ -300,7 +300,7 @@ tdd-plan plan issue plan brainstorm
|
||||
|------|------|--------|
|
||||
| **规划** | workflow-plan | 6阶段 |
|
||||
| **执行** | workflow-execute | 6阶段 |
|
||||
| **轻量** | workflow-lite-planex | 2阶段 |
|
||||
| **轻量** | workflow-lite-plan | 2阶段 |
|
||||
| **TDD** | workflow-tdd-plan | 7阶段 |
|
||||
| **测试修复** | workflow-test-fix | 4阶段 |
|
||||
| **多CLI** | workflow-multi-cli-plan | - |
|
||||
|
||||
@@ -76,7 +76,7 @@ Claude Code Workflow supports two team architecture models:
|
||||
|
||||
| Level | Name | Workflow | Use Case |
|
||||
|-------|------|----------|----------|
|
||||
| Level 1 | Lite-Lite-Lite | lite-plan | Super simple quick tasks |
|
||||
| Level 1 | Lite-Lite-Lite | lite-plan | Skill handoff to lite-execute |
|
||||
| Level 2 | Rapid | plan → execute | Bug fixes, simple features |
|
||||
| Level 2.5 | Rapid-to-Issue | plan → issue:new | From rapid planning to Issue |
|
||||
| Level 3 | Coupled | plan → execute | Complex features (plan+execute+review+test) |
|
||||
@@ -181,7 +181,7 @@ memory/
|
||||
|
||||
```bash
|
||||
# Quick task
|
||||
/workflow-lite-planex "Fix login bug"
|
||||
/workflow-lite-plan "Fix login bug"
|
||||
|
||||
# Full development
|
||||
/workflow-plan "Add user notifications"
|
||||
@@ -234,7 +234,7 @@ memory/
|
||||
- Test coverage → `team-testing`
|
||||
|
||||
2. **Workflow Selection**:
|
||||
- Super simple → `workflow-lite-planex`
|
||||
- Super simple → `workflow-lite-plan`
|
||||
- Complex features → `workflow-plan` → `workflow-execute`
|
||||
- TDD → `workflow-tdd-plan`
|
||||
- Test fixes → `workflow-test-fix`
|
||||
|
||||
@@ -19,14 +19,14 @@
|
||||
|-------|----------|---------|
|
||||
| `workflow-plan` | Unified planning skill (4-stage workflow) | `/workflow-plan` |
|
||||
| `workflow-execute` | Agent-coordinated execution | `/workflow-execute` |
|
||||
| `workflow-lite-planex` | Lightweight quick planning | `/workflow-lite-planex` |
|
||||
| `workflow-lite-plan` | Lightweight quick planning | `/workflow-lite-plan` |
|
||||
| `workflow-multi-cli-plan` | Multi-CLI collaborative planning | `/workflow-multi-cli-plan` |
|
||||
| `workflow-tdd-plan` | TDD workflow | `/workflow-tdd-plan` |
|
||||
| `workflow-test-fix` | Test-fix workflow | `/workflow-test-fix` |
|
||||
| `workflow-skill-designer` | Skill design workflow | `/workflow-skill-designer` |
|
||||
| `team-arch-opt` | Architecture optimization | `/team-arch-opt` |
|
||||
|
||||
> **New in 7.2.1**: `team-arch-opt` skill added for architecture analysis and optimization. `workflow-lite-planex` renamed from `workflow-lite-plan`.
|
||||
> **New in 7.2.1**: `team-arch-opt` skill added for architecture analysis and optimization. `workflow-lite-plan` renamed from `workflow-lite-plan`.
|
||||
|
||||
## Skills Details
|
||||
|
||||
@@ -185,13 +185,13 @@ Phase 5: Completion
|
||||
|
||||
---
|
||||
|
||||
### workflow-lite-planex
|
||||
### workflow-lite-plan
|
||||
|
||||
**One-Liner**: Lightweight quick planning — Quick planning and execution for super simple tasks
|
||||
|
||||
**Trigger**:
|
||||
```shell
|
||||
/workflow-lite-planex <simple-task>
|
||||
/workflow-lite-plan <simple-task>
|
||||
```
|
||||
|
||||
**Features**:
|
||||
@@ -358,7 +358,7 @@ Wave 2: Issue 6-10 → Parallel planning → Parallel execution
|
||||
## Best Practices
|
||||
|
||||
1. **Choose the right workflow**:
|
||||
- Super simple tasks → `workflow-lite-planex`
|
||||
- Super simple tasks → `workflow-lite-plan`
|
||||
- Complex features → `workflow-plan` → `workflow-execute`
|
||||
- TDD development → `workflow-tdd-plan`
|
||||
- Test fixes → `workflow-test-fix`
|
||||
|
||||
@@ -679,11 +679,11 @@ Skill(skill="workflow-plan")
|
||||
|
||||
---
|
||||
|
||||
### workflow-lite-planex
|
||||
### workflow-lite-plan
|
||||
|
||||
**Purpose**: Lightweight planning and execution skill
|
||||
|
||||
**Triggers**: `workflow-lite-planex`
|
||||
**Triggers**: `workflow-lite-plan`
|
||||
|
||||
**Description**: Unified planning and execution skill (Phase 1: plan, Phase 2: execute) with prompt enhancement.
|
||||
|
||||
@@ -696,7 +696,7 @@ Skill(skill="workflow-plan")
|
||||
**Artifacts**: LITE_PLAN.md, execution results
|
||||
|
||||
```bash
|
||||
Skill(skill="workflow-lite-planex")
|
||||
Skill(skill="workflow-lite-plan")
|
||||
```
|
||||
|
||||
---
|
||||
@@ -851,7 +851,7 @@ Skill(skill="review-cycle")
|
||||
**Use Case**: Quick iterations and rapid prototyping
|
||||
|
||||
```bash
|
||||
Skill(skill="workflow-lite-planex")
|
||||
Skill(skill="workflow-lite-plan")
|
||||
Skill(skill="workflow-execute")
|
||||
```
|
||||
|
||||
@@ -1039,7 +1039,7 @@ Skill(skill="skill-tuning")
|
||||
| Level | Skills |
|
||||
|-------|--------|
|
||||
| Meta Skills | skill-generator, skill-tuning, workflow-skill-designer |
|
||||
| Orchestrators | workflow-plan, workflow-lite-planex, workflow-multi-cli-plan |
|
||||
| Orchestrators | workflow-plan, workflow-lite-plan, workflow-multi-cli-plan |
|
||||
| Executors | workflow-execute |
|
||||
| Team Leads | team-lifecycle (v5) |
|
||||
|
||||
@@ -1085,7 +1085,7 @@ Quick reference for skill triggers:
|
||||
| `manage issue` | issue-manage |
|
||||
| `workflow-plan`, `workflow-plan-verify`, `workflow:replan` | workflow-plan |
|
||||
| `workflow-execute` | workflow-execute |
|
||||
| `workflow-lite-planex` | workflow-lite-planex |
|
||||
| `workflow-lite-plan` | workflow-lite-plan |
|
||||
| `workflow-multi-cli-plan`, `workflow:multi-cli-plan` | workflow-multi-cli-plan |
|
||||
| `workflow-tdd-plan` | workflow-tdd-plan |
|
||||
| `workflow-test-fix`, `test fix workflow` | workflow-test-fix |
|
||||
|
||||
@@ -56,7 +56,7 @@ Skills are reusable, domain-specific capabilities that CCW can execute. Each ski
|
||||
| Skill | Triggers | Description |
|
||||
|-------|----------|-------------|
|
||||
| [workflow-plan](./core-skills.md#workflow-plan) | `workflow-plan`, `workflow-plan-verify`, `workflow:replan` | 4-phase planning with verification |
|
||||
| [workflow-lite-planex](./core-skills.md#workflow-lite-planex) | `workflow-lite-planex` | Lightweight planning |
|
||||
| [workflow-lite-plan](./core-skills.md#workflow-lite-plan) | `workflow-lite-plan` | Lightweight planning |
|
||||
| [workflow-multi-cli-plan](./core-skills.md#workflow-multi-cli-plan) | `workflow-multi-cli-plan`, `workflow:multi-cli-plan` | Multi-CLI collaborative planning |
|
||||
| [workflow-execute](./core-skills.md#workflow-execute) | `workflow-execute` | Task execution coordination |
|
||||
| [workflow-tdd-plan](./core-skills.md#workflow-tdd-plan) | `workflow-tdd-plan` | TDD with Red-Green-Refactor |
|
||||
@@ -79,7 +79,7 @@ Skill(skill="review-cycle")
|
||||
|
||||
#### Quick Iteration
|
||||
```bash
|
||||
Skill(skill="workflow-lite-planex")
|
||||
Skill(skill="workflow-lite-plan")
|
||||
Skill(skill="workflow-execute")
|
||||
```
|
||||
|
||||
@@ -203,7 +203,7 @@ Skill(skill="my-custom-skill", args="input")
|
||||
# Step 3: Execute with team lifecycle
|
||||
Skill(skill="team-lifecycle-v4", args="Build user dashboard")
|
||||
# Or use quick iteration:
|
||||
# Skill(skill="workflow-lite-planex")
|
||||
# Skill(skill="workflow-lite-plan")
|
||||
|
||||
# Step 4: Review and refine
|
||||
Skill(skill="review-code")
|
||||
@@ -267,7 +267,7 @@ ccw review-cycle --max-iterations 3
|
||||
|
||||
### Tips for Best Results
|
||||
|
||||
1. **Start Small**: Begin with `workflow-lite-planex` for simple tasks
|
||||
1. **Start Small**: Begin with `workflow-lite-plan` for simple tasks
|
||||
2. **Use Memory**: Capture insights with `memory:capture` for future reference
|
||||
3. **Verify Plans**: Always review generated plans before execution
|
||||
4. **Iterate**: Use `review-cycle` for continuous improvement
|
||||
|
||||
@@ -28,7 +28,7 @@ Quick reference guide for all **33 CCW built-in skills**.
|
||||
| Skill | Trigger | Purpose |
|
||||
|-------|---------|---------|
|
||||
| **workflow-plan** | `workflow-plan`, `workflow-plan-verify`, `workflow:replan` | 4-phase planning workflow with verification and interactive replanning |
|
||||
| **workflow-lite-planex** | `workflow-lite-planex` | Lightweight planning and execution skill |
|
||||
| **workflow-lite-plan** | `workflow-lite-plan` | Lightweight planning and execution skill |
|
||||
| **workflow-multi-cli-plan** | `workflow-multi-cli-plan`, `workflow:multi-cli-plan` | Multi-CLI collaborative planning with ACE context engine |
|
||||
| **workflow-execute** | `workflow-execute` | Coordinate agent execution for workflow tasks |
|
||||
| **workflow-tdd-plan** | `workflow-tdd-plan`, `workflow-tdd-verify` | TDD workflow with Red-Green-Refactor task chain |
|
||||
@@ -103,7 +103,7 @@ team lifecycle
|
||||
| `review code`, `code review`, `审查代码` | review-code |
|
||||
| `workflow:review-cycle` | review-cycle |
|
||||
| `workflow-plan` | workflow-plan |
|
||||
| `workflow-lite-planex` | workflow-lite-planex |
|
||||
| `workflow-lite-plan` | workflow-lite-plan |
|
||||
| `workflow-multi-cli-plan`, `workflow:multi-cli-plan` | workflow-multi-cli-plan |
|
||||
| `workflow-execute` | workflow-execute |
|
||||
| `workflow-tdd-plan` | workflow-tdd-plan |
|
||||
@@ -163,7 +163,7 @@ The latest team-lifecycle (v5) uses the team-worker agent with dynamic role assi
|
||||
| Generator-Critic Loop | team-iterdev |
|
||||
| Wave Pipeline | team-planex |
|
||||
| Red-Green-Refactor | workflow-tdd-plan |
|
||||
| Pure Orchestrator | workflow-plan, workflow-lite-planex |
|
||||
| Pure Orchestrator | workflow-plan, workflow-lite-plan |
|
||||
| Progressive Phase Loading | workflow-plan, workflow-tdd-plan, team-lifecycle |
|
||||
|
||||
::: info See Also
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
| Workflow | Best For | Level | Self-Contained |
|
||||
|----------|----------|-------|----------------|
|
||||
| workflow-lite-planex | Quick tasks, bug fixes | 2 (Lightweight) | YES |
|
||||
| workflow-lite-plan | Quick tasks, bug fixes | 2 (Lightweight) | YES |
|
||||
| workflow-plan → workflow-execute | Complex features | 3-4 (Standard) | NO (requires execute) |
|
||||
| workflow-tdd-plan → workflow-execute | TDD development | 3 (Standard) | NO (requires execute) |
|
||||
| workflow-test-fix | Test generation/fix | 3 (Standard) | YES |
|
||||
@@ -31,7 +31,7 @@
|
||||
| Workflow | Invocation | Pipeline | Use Case | Level | Self-Contained | Auto-Chains To |
|
||||
|----------|------------|----------|----------|-------|----------------|----------------|
|
||||
| **Plan+Execute Workflows** |
|
||||
| workflow-lite-planex | `/ccw "task"` (auto for low/medium complexity) | explore → plan → confirm → execute | Quick features, bug fixes, simple tasks | 2 (Lightweight) | YES | workflow-test-fix |
|
||||
| workflow-lite-plan | `/ccw "task"` (auto for low/medium complexity) | explore → plan → confirm → execute | Quick features, bug fixes, simple tasks | 2 (Lightweight) | YES | workflow-test-fix |
|
||||
| workflow-plan | `/ccw "complex feature"` (high complexity) | session → context → convention → gen → verify/replan | Complex feature planning, formal verification | 3-4 (Standard) | NO | workflow-execute |
|
||||
| workflow-execute | `/workflow-execute` (after plan) | session discovery → task processing → commit | Execute pre-generated plans | 3 (Standard) | YES | review-cycle (optional) |
|
||||
| workflow-multi-cli-plan | `/ccw "multi-cli plan: ..."` | ACE context → CLI discussion → plan → execute | Multi-perspective planning | 3 (Standard) | YES | (internal handoff) |
|
||||
@@ -43,7 +43,7 @@
|
||||
| brainstorm-with-file | `/ccw "brainstorm: ..."` | brainstorm + documented artifacts | Documented ideation with session | 4 (Full) | NO | workflow-plan → execute |
|
||||
| collaborative-plan-with-file | `/ccw "collaborative plan: ..."` | understanding → parallel agents → plan-note.md | Multi-agent collaborative planning | 3 (Standard) | NO | unified-execute-with-file |
|
||||
| **Analysis Workflows** |
|
||||
| analyze-with-file | `/ccw "analyze: ..."` | multi-CLI analysis → discussion.md | Deep understanding, architecture exploration | 3 (Standard) | NO | workflow-lite-planex |
|
||||
| analyze-with-file | `/ccw "analyze: ..."` | multi-CLI analysis → discussion.md | Deep understanding, architecture exploration | 3 (Standard) | NO | workflow-lite-plan |
|
||||
| debug-with-file | `/ccw "debug: ..."` | hypothesis-driven iteration → debug.log | Systematic debugging | 3 (Standard) | YES | (standalone) |
|
||||
| **Review Workflows** |
|
||||
| review-cycle | `/ccw "review code"` | discovery → analysis → aggregation → deep-dive → completion | Code review, quality gates | 3 (Standard) | YES | fix mode (if findings) |
|
||||
@@ -67,7 +67,7 @@
|
||||
|
||||
| Level | Workflows | Characteristics |
|
||||
|-------|-----------|-----------------|
|
||||
| **2 (Lightweight)** | workflow-lite-planex, docs | Quick execution, minimal phases |
|
||||
| **2 (Lightweight)** | workflow-lite-plan, docs | Quick execution, minimal phases |
|
||||
| **2.5 (Bridge)** | issue pipeline, rapid-to-issue | Bridge to issue workflow |
|
||||
| **3 (Standard)** | workflow-plan, workflow-execute, workflow-tdd-plan, workflow-test-fix, review-cycle, debug-with-file, analyze-with-file, workflow-multi-cli-plan | Full planning/execution, multi-phase |
|
||||
| **4 (Full)** | brainstorm, spec-generator, brainstorm-with-file, roadmap-with-file | Complete exploration, specification |
|
||||
@@ -80,13 +80,13 @@
|
||||
|
||||
| Source Workflow | Auto-Chains To | Condition |
|
||||
|-----------------|---------------|-----------|
|
||||
| workflow-lite-planex | workflow-test-fix | Default (unless skip-tests) |
|
||||
| workflow-lite-plan | workflow-test-fix | Default (unless skip-tests) |
|
||||
| workflow-plan | workflow-execute | After plan confirmation |
|
||||
| workflow-execute | review-cycle | User choice via Phase 6 |
|
||||
| workflow-tdd-plan | workflow-execute | After TDD plan validation |
|
||||
| brainstorm | workflow-plan | Auto-chain for formal planning |
|
||||
| brainstorm-with-file | workflow-plan → workflow-execute | Auto |
|
||||
| analyze-with-file | workflow-lite-planex | Auto |
|
||||
| analyze-with-file | workflow-lite-plan | Auto |
|
||||
| debug-with-file | (none) | Standalone |
|
||||
| collaborative-plan-with-file | unified-execute-with-file | Auto |
|
||||
| roadmap-with-file | team-planex | Auto |
|
||||
@@ -99,7 +99,7 @@
|
||||
|
||||
| Workflow | Self-Contained | Notes |
|
||||
|----------|---------------|-------|
|
||||
| workflow-lite-planex | YES | Complete plan + execute |
|
||||
| workflow-lite-plan | YES | Complete plan + execute |
|
||||
| workflow-plan | NO | Requires workflow-execute |
|
||||
| workflow-execute | YES | Complete execution |
|
||||
| workflow-tdd-plan | NO | Requires workflow-execute |
|
||||
|
||||
@@ -7,7 +7,7 @@ This page provides practical examples of CCW workflow artifacts with sensitive i
|
||||
## Example 1: Lite Plan Output
|
||||
|
||||
### plan.json
|
||||
This is an output from `workflow-lite-planex` command.
|
||||
This is an output from `workflow-lite-plan` command.
|
||||
|
||||
```json
|
||||
{
|
||||
|
||||
@@ -31,7 +31,7 @@
|
||||
- `-y, --yes` - 跳过所有确认
|
||||
|
||||
**映射技能**:
|
||||
- workflow-lite-planex, workflow-plan, workflow-execute, workflow-tdd-plan
|
||||
- workflow-lite-plan, workflow-plan, workflow-execute, workflow-tdd-plan
|
||||
- workflow-test-fix, workflow-multi-cli-plan, review-cycle, brainstorm
|
||||
- team-planex, team-iterdev, team-lifecycle, team-issue
|
||||
- team-testing, team-quality-assurance, team-brainstorm, team-uidesign
|
||||
|
||||
@@ -23,14 +23,14 @@
|
||||
|
||||
| 单元类型 | Skill | 说明 |
|
||||
|---------|-------|------|
|
||||
| 轻量 Plan+Execute | `workflow-lite-planex` | 内部完成 plan→execute |
|
||||
| 轻量 Plan+Execute | `workflow-lite-plan` | 内部完成 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-planex` | 协作分析产物自动传递给 lite-plan |
|
||||
| 头脑风暴→规划 | `workflow:brainstorm-with-file` → `workflow-lite-planex` | 头脑风暴产物自动传递给 lite-plan |
|
||||
| 分析→规划 | `workflow:analyze-with-file` → `workflow-lite-plan` | 协作分析产物自动传递给 lite-plan |
|
||||
| 头脑风暴→规划 | `workflow:brainstorm-with-file` → `workflow-lite-plan` | 头脑风暴产物自动传递给 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-planex` 作为上下文输入。
|
||||
当 `analyze-with-file` 或 `brainstorm-with-file` 完成时,其产物(discussion.md / brainstorm.md)**自动传递**给 `workflow-lite-plan` 作为上下文输入。
|
||||
|
||||
| 工作流 | 自动链目标 | 产物传递 |
|
||||
|--------|-----------|---------|
|
||||
| analyze-with-file | → workflow-lite-planex | discussion.md |
|
||||
| brainstorm-with-file | → workflow-lite-planex | brainstorm.md |
|
||||
| analyze-with-file | → workflow-lite-plan | discussion.md |
|
||||
| brainstorm-with-file | → workflow-lite-plan | brainstorm.md |
|
||||
|
||||
**Cycle 工作流自迭代模式**:
|
||||
|
||||
@@ -371,7 +371,7 @@ Task: <description>
|
||||
|
||||
| Skill | 包含操作 |
|
||||
| --- | --- |
|
||||
| `workflow-lite-planex` | lite-plan (Phase 1: 规划 → Phase 2: 执行) |
|
||||
| `workflow-lite-plan` | lite-plan (Phase 1: 规划 → Phase 2: 执行) |
|
||||
| `workflow-plan` | plan, plan-verify, replan |
|
||||
| `workflow-execute` | execute |
|
||||
| `workflow-tdd-plan` | tdd-plan, tdd-verify |
|
||||
|
||||
@@ -30,7 +30,7 @@
|
||||
|
||||
| 命令 | 功能 | 难度 |
|
||||
| --- | --- | --- |
|
||||
| [`/workflow-lite-planex`](./workflow.md#lite-plan) | 轻量级交互式规划工作流 | Intermediate |
|
||||
| [`/workflow-lite-plan`](./workflow.md#lite-plan) | 轻量级交互式规划工作流 | Intermediate |
|
||||
| [`/workflow-plan`](./workflow.md#plan) | 5 阶段规划工作流 | Intermediate |
|
||||
| [`/workflow-execute`](./workflow.md#execute) | 协调代理执行工作流任务 | Intermediate |
|
||||
| [`/workflow:replan`](./workflow.md#replan) | 交互式工作流重新规划 | Intermediate |
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
|
||||
| 命令 | 功能 | 语法 |
|
||||
| --- | --- | --- |
|
||||
| [`lite-plan`](#lite-plan) | 轻量级交互式规划工作流 | `/workflow-lite-planex [-y] [-e] "任务"` |
|
||||
| [`lite-plan`](#lite-plan) | 轻量级交互式规划工作流 | `/workflow-lite-plan [-y] [-e] "任务"` |
|
||||
|
||||
### 标准工作流
|
||||
|
||||
@@ -70,7 +70,7 @@
|
||||
|
||||
**语法**:
|
||||
```bash
|
||||
/workflow-lite-planex [-y|--yes] [-e|--explore] "任务描述" | file.md
|
||||
/workflow-lite-plan [-y|--yes] [-e|--explore] "任务描述" | file.md
|
||||
```
|
||||
|
||||
**选项**:
|
||||
@@ -79,10 +79,10 @@
|
||||
**示例**:
|
||||
```bash
|
||||
# 基础规划
|
||||
/workflow-lite-planex "添加用户头像功能"
|
||||
/workflow-lite-plan "添加用户头像功能"
|
||||
|
||||
# 带探索
|
||||
/workflow-lite-planex -e "重构认证模块"
|
||||
/workflow-lite-plan -e "重构认证模块"
|
||||
```
|
||||
|
||||
### plan
|
||||
|
||||
@@ -43,7 +43,7 @@
|
||||
|
||||
| 类别 | 技能 | 内部流水线 | 用例 |
|
||||
|----------|-------|-------------------|----------|
|
||||
| **Workflow** | workflow-lite-planex | explore → plan → confirm → execute | 快速功能、Bug 修复 |
|
||||
| **Workflow** | workflow-lite-plan | explore → plan → confirm → execute | 快速功能、Bug 修复 |
|
||||
| **Workflow** | workflow-plan | session → context → convention → gen → verify/replan | 复杂功能规划 |
|
||||
| **Workflow** | workflow-execute | session discovery → task processing → commit | 执行预生成的计划 |
|
||||
| **Workflow** | workflow-tdd-plan | 6阶段 TDD plan → verify | TDD 开发 |
|
||||
@@ -81,7 +81,7 @@
|
||||
|
||||
| 技能 | 内部流水线 |
|
||||
|-------|-------------------|
|
||||
| workflow-lite-planex | explore → plan → confirm → execute |
|
||||
| workflow-lite-plan | explore → plan → confirm → execute |
|
||||
| workflow-plan | session → context → convention → gen → verify/replan |
|
||||
| workflow-execute | session discovery → task processing → commit |
|
||||
| workflow-tdd-plan | 6阶段 TDD plan → verify |
|
||||
@@ -357,16 +357,16 @@
|
||||
|
||||
| 任务类型 | 技能链 |
|
||||
|-----------|-------------|
|
||||
| bugfix | workflow-lite-planex → workflow-test-fix |
|
||||
| bugfix-hotfix | workflow-lite-planex |
|
||||
| feature | workflow-lite-planex → workflow-test-fix |
|
||||
| bugfix | workflow-lite-plan → workflow-test-fix |
|
||||
| bugfix-hotfix | workflow-lite-plan |
|
||||
| feature | workflow-lite-plan → workflow-test-fix |
|
||||
| feature-complex | workflow-plan → workflow-execute → workflow-test-fix |
|
||||
| refactor | workflow:refactor-cycle |
|
||||
| tdd | workflow-tdd-plan → workflow-execute |
|
||||
| test | workflow-test-fix |
|
||||
| test-fix | workflow-test-fix |
|
||||
| review | review-cycle |
|
||||
| docs | workflow-lite-planex |
|
||||
| docs | workflow-lite-plan |
|
||||
|
||||
**6阶段执行**:
|
||||
1. 加载任务
|
||||
@@ -606,7 +606,7 @@
|
||||
|
||||
| 技能 | 内部流水线 | 描述 |
|
||||
|-------|-------------------|-------------|
|
||||
| workflow-lite-planex | explore → plan → confirm → execute | 轻量级合并模式规划 |
|
||||
| workflow-lite-plan | explore → plan → confirm → execute | 轻量级合并模式规划 |
|
||||
| workflow-plan | session → context → convention → gen → verify/replan | 带架构设计的完整规划 |
|
||||
| workflow-execute | session discovery → task processing → commit | 从规划会话执行 |
|
||||
| workflow-tdd-plan | 6阶段 TDD plan → verify | TDD 工作流规划 |
|
||||
@@ -716,7 +716,7 @@
|
||||
### 技能调用 (从代码)
|
||||
|
||||
```javascript
|
||||
Skill({ skill: "workflow-lite-planex", args: '"任务描述"' })
|
||||
Skill({ skill: "workflow-lite-plan", args: '"任务描述"' })
|
||||
Skill({ skill: "brainstorm", args: '"主题或问题"' })
|
||||
Skill({ skill: "review-cycle", args: '--session="WFS-xxx"' })
|
||||
```
|
||||
|
||||
@@ -176,7 +176,7 @@ memory/
|
||||
|
||||
```bash
|
||||
# 快速任务
|
||||
/workflow-lite-planex "Fix login bug"
|
||||
/workflow-lite-plan "Fix login bug"
|
||||
|
||||
# 完整开发
|
||||
/workflow-plan "Add user notifications"
|
||||
@@ -229,7 +229,7 @@ memory/
|
||||
- 测试覆盖 → `team-testing`
|
||||
|
||||
2. **工作流选择**:
|
||||
- 超简单 → `workflow-lite-planex`
|
||||
- 超简单 → `workflow-lite-plan`
|
||||
- 复杂功能 → `workflow-plan` → `workflow-execute`
|
||||
- TDD → `workflow-tdd-plan`
|
||||
- 测试修复 → `workflow-test-fix`
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
| --- | --- | --- |
|
||||
| `workflow-plan` | 统一规划技能(4 阶段工作流) | `/workflow-plan` |
|
||||
| `workflow-execute` | 代理协调执行 | `/workflow-execute` |
|
||||
| `workflow-lite-planex` | 轻量级快速规划 | `/workflow-lite-planex` |
|
||||
| `workflow-lite-plan` | 轻量级快速规划 | `/workflow-lite-plan` |
|
||||
| `workflow-multi-cli-plan` | 多 CLI 协作规划 | `/workflow-multi-cli-plan` |
|
||||
| `workflow-tdd-plan` | TDD 工作流 | `/workflow-tdd-plan` |
|
||||
| `workflow-test-fix` | 测试修复工作流 | `/workflow-test-fix` |
|
||||
@@ -182,13 +182,13 @@ Phase 5: 完成
|
||||
|
||||
---
|
||||
|
||||
### workflow-lite-planex
|
||||
### workflow-lite-plan
|
||||
|
||||
**一句话定位**: 轻量级快速规划 — 超简单任务的快速规划和执行
|
||||
|
||||
**触发**:
|
||||
```shell
|
||||
/workflow-lite-planex <simple-task>
|
||||
/workflow-lite-plan <simple-task>
|
||||
```
|
||||
|
||||
**功能**:
|
||||
@@ -331,7 +331,7 @@ Wave 2: Issue 6-10 → 并行规划 → 并行执行
|
||||
## 最佳实践
|
||||
|
||||
1. **选择合适的工作流**:
|
||||
- 超简单任务 → `workflow-lite-planex`
|
||||
- 超简单任务 → `workflow-lite-plan`
|
||||
- 复杂功能 → `workflow-plan` → `workflow-execute`
|
||||
- TDD 开发 → `workflow-tdd-plan`
|
||||
- 测试修复 → `workflow-test-fix`
|
||||
|
||||
@@ -679,11 +679,11 @@ Skill(skill="workflow-plan")
|
||||
|
||||
---
|
||||
|
||||
### workflow-lite-planex
|
||||
### workflow-lite-plan
|
||||
|
||||
**用途**:轻量级规划和执行技能
|
||||
|
||||
**触发器**:`workflow-lite-planex`
|
||||
**触发器**:`workflow-lite-plan`
|
||||
|
||||
**说明**:统一的规划和执行技能(Phase 1: 规划,Phase 2: 执行),带提示增强。
|
||||
|
||||
@@ -696,7 +696,7 @@ Skill(skill="workflow-plan")
|
||||
**产物**:LITE_PLAN.md、执行结果
|
||||
|
||||
```bash
|
||||
Skill(skill="workflow-lite-planex")
|
||||
Skill(skill="workflow-lite-plan")
|
||||
```
|
||||
|
||||
---
|
||||
@@ -851,7 +851,7 @@ Skill(skill="review-cycle")
|
||||
**使用场景**:快速迭代和快速原型
|
||||
|
||||
```bash
|
||||
Skill(skill="workflow-lite-planex")
|
||||
Skill(skill="workflow-lite-plan")
|
||||
Skill(skill="workflow-execute")
|
||||
```
|
||||
|
||||
@@ -1039,7 +1039,7 @@ Skill(skill="skill-tuning")
|
||||
| 层级 | 技能 |
|
||||
|------|------|
|
||||
| 元技能 | skill-generator、skill-tuning、workflow-skill-designer |
|
||||
| 编排器 | workflow-plan、workflow-lite-planex、workflow-multi-cli-plan |
|
||||
| 编排器 | workflow-plan、workflow-lite-plan、workflow-multi-cli-plan |
|
||||
| 执行器 | workflow-execute |
|
||||
| 团队负责人 | team-lifecycle (v5) |
|
||||
|
||||
@@ -1085,7 +1085,7 @@ Skill(skill="skill-tuning")
|
||||
| `manage issue` | issue-manage |
|
||||
| `workflow-plan`、`workflow-plan-verify`、`workflow:replan` | workflow-plan |
|
||||
| `workflow-execute` | workflow-execute |
|
||||
| `workflow-lite-planex` | workflow-lite-planex |
|
||||
| `workflow-lite-plan` | workflow-lite-plan |
|
||||
| `workflow-multi-cli-plan`、`workflow:multi-cli-plan` | workflow-multi-cli-plan |
|
||||
| `workflow-tdd-plan` | workflow-tdd-plan |
|
||||
| `workflow-test-fix`、`test fix workflow` | workflow-test-fix |
|
||||
|
||||
@@ -56,7 +56,7 @@ Skills 是 CCW 可执行的、可复用的、领域特定的能力。每个技
|
||||
| 技能 | 触发器 | 说明 |
|
||||
|------|--------|------|
|
||||
| [workflow-plan](./core-skills.md#workflow-plan) | `workflow-plan`, `workflow-plan-verify`, `workflow:replan` | 4 阶段规划带验证 |
|
||||
| [workflow-lite-planex](./core-skills.md#workflow-lite-planex) | `workflow-lite-planex` | 轻量级规划 |
|
||||
| [workflow-lite-plan](./core-skills.md#workflow-lite-plan) | `workflow-lite-plan` | 轻量级规划 |
|
||||
| [workflow-multi-cli-plan](./core-skills.md#workflow-multi-cli-plan) | `workflow-multi-cli-plan`, `workflow:multi-cli-plan` | 多 CLI 协作规划 |
|
||||
| [workflow-execute](./core-skills.md#workflow-execute) | `workflow-execute` | 任务执行协调 |
|
||||
| [workflow-tdd-plan](./core-skills.md#workflow-tdd-plan) | `workflow-tdd-plan` | TDD 红-绿-重构 |
|
||||
@@ -79,7 +79,7 @@ Skill(skill="review-cycle")
|
||||
|
||||
#### 快速迭代
|
||||
```bash
|
||||
Skill(skill="workflow-lite-planex")
|
||||
Skill(skill="workflow-lite-plan")
|
||||
Skill(skill="workflow-execute")
|
||||
```
|
||||
|
||||
@@ -203,7 +203,7 @@ Skill(skill="my-custom-skill", args="input")
|
||||
# 步骤 3:团队执行
|
||||
Skill(skill="team-lifecycle-v4", args="Build user dashboard")
|
||||
# 或使用快速迭代:
|
||||
# Skill(skill="workflow-lite-planex")
|
||||
# Skill(skill="workflow-lite-plan")
|
||||
|
||||
# 步骤 4:审查和优化
|
||||
Skill(skill="review-code")
|
||||
@@ -267,7 +267,7 @@ Skill(skill="review-cycle", args="--max-iterations 3")
|
||||
|
||||
### 最佳效果提示
|
||||
|
||||
1. **从小开始**:简单任务使用 `workflow-lite-planex`
|
||||
1. **从小开始**:简单任务使用 `workflow-lite-plan`
|
||||
2. **使用记忆**:用 `memory:capture` 捕获见解供将来参考
|
||||
3. **验证计划**:执行前始终审查生成的计划
|
||||
4. **迭代**:使用 `review-cycle` 持续改进
|
||||
|
||||
@@ -28,7 +28,7 @@
|
||||
| 技能 | 触发器 | 用途 |
|
||||
|------|--------|------|
|
||||
| **workflow-plan** | `workflow-plan`、`workflow-plan-verify`、`workflow:replan` | 4 阶段规划工作流,带验证和交互式重新规划 |
|
||||
| **workflow-lite-planex** | `workflow-lite-planex` | 轻量级规划和执行技能 |
|
||||
| **workflow-lite-plan** | `workflow-lite-plan` | 轻量级规划和执行技能 |
|
||||
| **workflow-multi-cli-plan** | `workflow-multi-cli-plan`、`workflow:multi-cli-plan` | 多 CLI 协作规划,带 ACE 上下文引擎 |
|
||||
| **workflow-execute** | `workflow-execute` | 协调工作流任务的代理执行 |
|
||||
| **workflow-tdd-plan** | `workflow-tdd-plan`、`workflow-tdd-verify` | TDD 工作流,带红-绿-重构任务链 |
|
||||
@@ -103,7 +103,7 @@ team lifecycle
|
||||
| `review code`、`code review`、`审查代码` | review-code |
|
||||
| `workflow:review-cycle` | review-cycle |
|
||||
| `workflow-plan` | workflow-plan |
|
||||
| `workflow-lite-planex` | workflow-lite-planex |
|
||||
| `workflow-lite-plan` | workflow-lite-plan |
|
||||
| `workflow-multi-cli-plan`、`workflow:multi-cli-plan` | workflow-multi-cli-plan |
|
||||
| `workflow-execute` | workflow-execute |
|
||||
| `workflow-tdd-plan` | workflow-tdd-plan |
|
||||
@@ -163,7 +163,7 @@ team lifecycle
|
||||
| Generator-Critic Loop | team-iterdev |
|
||||
| Wave Pipeline | team-planex |
|
||||
| Red-Green-Refactor | workflow-tdd-plan |
|
||||
| Pure Orchestrator | workflow-plan、workflow-lite-planex |
|
||||
| Pure Orchestrator | workflow-plan、workflow-lite-plan |
|
||||
| Progressive Phase Loading | workflow-plan、workflow-tdd-plan、team-lifecycle |
|
||||
|
||||
::: info 参见
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
| 工作流 | 最佳用途 | 级别 | 自包含 |
|
||||
|----------|----------|-------|----------------|
|
||||
| workflow-lite-planex | 快速任务、Bug 修复 | 2 (轻量级) | 是 |
|
||||
| workflow-lite-plan | 快速任务、Bug 修复 | 2 (轻量级) | 是 |
|
||||
| workflow-plan → workflow-execute | 复杂功能 | 3-4 (标准) | 否 (需要 execute) |
|
||||
| workflow-tdd-plan → workflow-execute | TDD 开发 | 3 (标准) | 否 (需要 execute) |
|
||||
| workflow-test-fix | 测试生成/修复 | 3 (标准) | 是 |
|
||||
@@ -31,7 +31,7 @@
|
||||
| 工作流 | 调用方式 | 流水线 | 用例 | 级别 | 自包含 | 自动链式到 |
|
||||
|----------|------------|----------|----------|-------|----------------|----------------|
|
||||
| **Plan+Execute 工作流** |
|
||||
| workflow-lite-planex | `/ccw "任务"` (低/中复杂度自动选择) | explore → plan → confirm → execute | 快速功能、Bug 修复、简单任务 | 2 (轻量级) | 是 | workflow-test-fix |
|
||||
| workflow-lite-plan | `/ccw "任务"` (低/中复杂度自动选择) | explore → plan → confirm → execute | 快速功能、Bug 修复、简单任务 | 2 (轻量级) | 是 | workflow-test-fix |
|
||||
| workflow-plan | `/ccw "复杂功能"` (高复杂度) | session → context → convention → gen → verify/replan | 复杂功能规划、正式验证 | 3-4 (标准) | 否 | workflow-execute |
|
||||
| workflow-execute | `/workflow-execute` (plan 之后) | session discovery → task processing → commit | 执行预生成的计划 | 3 (标准) | 是 | review-cycle (可选) |
|
||||
| workflow-multi-cli-plan | `/ccw "multi-cli plan: ..."` | ACE context → CLI discussion → plan → execute | 多视角规划 | 3 (标准) | 是 | (内部交接) |
|
||||
@@ -43,7 +43,7 @@
|
||||
| brainstorm-with-file | `/ccw "brainstorm: ..."` | brainstorm + documented artifacts | 带会话文档的创意构思 | 4 (完整) | 否 | workflow-plan → execute |
|
||||
| collaborative-plan-with-file | `/ccw "collaborative plan: ..."` | understanding → parallel agents → plan-note.md | 多代理协作规划 | 3 (标准) | 否 | unified-execute-with-file |
|
||||
| **分析工作流** |
|
||||
| analyze-with-file | `/ccw "analyze: ..."` | multi-CLI analysis → discussion.md | 深度理解、架构探索 | 3 (标准) | 否 | workflow-lite-planex |
|
||||
| analyze-with-file | `/ccw "analyze: ..."` | multi-CLI analysis → discussion.md | 深度理解、架构探索 | 3 (标准) | 否 | workflow-lite-plan |
|
||||
| debug-with-file | `/ccw "debug: ..."` | hypothesis-driven iteration → debug.log | 系统化调试 | 3 (标准) | 是 | (独立) |
|
||||
| **审查工作流** |
|
||||
| review-cycle | `/ccw "review code"` | discovery → analysis → aggregation → deep-dive → completion | 代码审查、质量门禁 | 3 (标准) | 是 | fix mode (如有发现) |
|
||||
@@ -67,7 +67,7 @@
|
||||
|
||||
| 级别 | 工作流 | 特点 |
|
||||
|-------|-----------|-----------------|
|
||||
| **2 (轻量级)** | workflow-lite-planex, docs | 快速执行、最少阶段 |
|
||||
| **2 (轻量级)** | workflow-lite-plan, docs | 快速执行、最少阶段 |
|
||||
| **2.5 (桥接)** | issue pipeline, rapid-to-issue | 桥接到 Issue 工作流 |
|
||||
| **3 (标准)** | workflow-plan, workflow-execute, workflow-tdd-plan, workflow-test-fix, review-cycle, debug-with-file, analyze-with-file, workflow-multi-cli-plan | 完整规划/执行、多阶段 |
|
||||
| **4 (完整)** | brainstorm, spec-generator, brainstorm-with-file, roadmap-with-file | 完整探索、规格化 |
|
||||
@@ -80,13 +80,13 @@
|
||||
|
||||
| 源工作流 | 自动链式到 | 条件 |
|
||||
|-----------------|---------------|-----------|
|
||||
| workflow-lite-planex | workflow-test-fix | 默认 (除非 skip-tests) |
|
||||
| workflow-lite-plan | workflow-test-fix | 默认 (除非 skip-tests) |
|
||||
| workflow-plan | workflow-execute | 计划确认后 |
|
||||
| workflow-execute | review-cycle | 用户通过 Phase 6 选择 |
|
||||
| workflow-tdd-plan | workflow-execute | TDD 计划验证后 |
|
||||
| brainstorm | workflow-plan | 自动链式到正式规划 |
|
||||
| brainstorm-with-file | workflow-plan → workflow-execute | 自动 |
|
||||
| analyze-with-file | workflow-lite-planex | 自动 |
|
||||
| analyze-with-file | workflow-lite-plan | 自动 |
|
||||
| debug-with-file | (无) | 独立 |
|
||||
| collaborative-plan-with-file | unified-execute-with-file | 自动 |
|
||||
| roadmap-with-file | team-planex | 自动 |
|
||||
@@ -99,7 +99,7 @@
|
||||
|
||||
| 工作流 | 自包含 | 说明 |
|
||||
|----------|---------------|-------|
|
||||
| workflow-lite-planex | 是 | 完整 plan + execute |
|
||||
| workflow-lite-plan | 是 | 完整 plan + execute |
|
||||
| workflow-plan | 否 | 需要 workflow-execute |
|
||||
| workflow-execute | 是 | 完整执行 |
|
||||
| workflow-tdd-plan | 否 | 需要 workflow-execute |
|
||||
|
||||
Reference in New Issue
Block a user