Skip to content

Commit 6054a01

Browse files
author
catlog22
committed
feat: add CLI fallback for MCP calls in team commands
- Implemented CLI fallback using `ccw team` for various team command operations in `execute.md`, `plan.md`, `review.md`, `spec-analyst.md`, `spec-coordinate.md`, `spec-discuss.md`, `spec-reviewer.md`, `spec-writer.md`, and `test.md`. - Updated command generation templates to include CLI fallback examples. - Enhanced validation checks to ensure CLI fallback sections are present. - Added quality standards for CLI fallback in team command design. - Introduced a new `GlobalGraphExpander` class for expanding search results with cross-directory relationships. - Added tests for `GlobalGraphExpander` to verify functionality and score decay factors.
1 parent ac32b28 commit 6054a01

19 files changed

Lines changed: 804 additions & 7 deletions

.claude/commands/team/execute.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,20 @@ mcp__ccw-tools__team_msg({ operation: "log", team: teamName, from: "executor", t
5555
mcp__ccw-tools__team_msg({ operation: "log", team: teamName, from: "executor", to: "coordinator", type: "error", summary: "plan.json路径无效, 无法加载实现计划" })
5656
```
5757

58+
### CLI 回退
59+
60+
`mcp__ccw-tools__team_msg` MCP 不可用时,使用 `ccw team` CLI 作为等效回退:
61+
62+
```javascript
63+
// 回退: 将 MCP 调用替换为 Bash CLI(参数一一对应)
64+
Bash(`ccw team log --team "${teamName}" --from "executor" --to "coordinator" --type "impl_complete" --summary "IMPL-001完成: 5个文件变更" --json`)
65+
66+
// 带 data 参数
67+
Bash(`ccw team log --team "${teamName}" --from "executor" --to "coordinator" --type "impl_progress" --summary "Batch 1/3 完成" --data '{"batch":1,"total":3}' --json`)
68+
```
69+
70+
**参数映射**: `team_msg(params)``ccw team log --team <team> --from executor --to coordinator --type <type> --summary "<text>" [--ref <path>] [--data '<json>'] [--json]`
71+
5872
## Execution Process
5973

6074
```

.claude/commands/team/plan.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,17 @@ mcp__ccw-tools__team_msg({ operation: "log", team: teamName, from: "planner", to
5555
mcp__ccw-tools__team_msg({ operation: "log", team: teamName, from: "planner", to: "coordinator", type: "error", summary: "plan-overview-base-schema.json 未找到, 使用默认结构" })
5656
```
5757

58+
### CLI 回退
59+
60+
`mcp__ccw-tools__team_msg` MCP 不可用时,使用 `ccw team` CLI 作为等效回退:
61+
62+
```javascript
63+
// 回退: 将 MCP 调用替换为 Bash CLI(参数一一对应)
64+
Bash(`ccw team log --team "${teamName}" --from "planner" --to "coordinator" --type "plan_ready" --summary "Plan就绪: 3个task" --ref "${sessionFolder}/plan.json" --json`)
65+
```
66+
67+
**参数映射**: `team_msg(params)``ccw team log --team <team> --from planner --to coordinator --type <type> --summary "<text>" [--ref <path>] [--data '<json>'] [--json]`
68+
5869
## Execution Process
5970

6071
```

.claude/commands/team/review.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,17 @@ mcp__ccw-tools__team_msg({ operation: "log", team: teamName, from: "tester", to:
5858
mcp__ccw-tools__team_msg({ operation: "log", team: teamName, from: "tester", to: "coordinator", type: "error", summary: "plan.json未找到, 无法进行需求验证" })
5959
```
6060

61+
### CLI 回退
62+
63+
`mcp__ccw-tools__team_msg` MCP 不可用时,使用 `ccw team` CLI 作为等效回退:
64+
65+
```javascript
66+
// 回退: 将 MCP 调用替换为 Bash CLI(参数一一对应)
67+
Bash(`ccw team log --team "${teamName}" --from "tester" --to "coordinator" --type "review_result" --summary "REVIEW-001: APPROVE, 2 medium findings" --data '{"verdict":"APPROVE","critical":0}' --json`)
68+
```
69+
70+
**参数映射**: `team_msg(params)``ccw team log --team <team> --from tester --to coordinator --type <type> --summary "<text>" [--data '<json>'] [--json]`
71+
6172
## Execution Process
6273

6374
```

.claude/commands/team/spec-analyst.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,17 @@ mcp__ccw-tools__team_msg({ operation: "log", team: teamName, from: "spec-analyst
5454
mcp__ccw-tools__team_msg({ operation: "log", team: teamName, from: "spec-analyst", to: "coordinator", type: "error", summary: "代码库探索失败: 项目根目录无法识别" })
5555
```
5656

57+
### CLI 回退
58+
59+
`mcp__ccw-tools__team_msg` MCP 不可用时,使用 `ccw team` CLI 作为等效回退:
60+
61+
```javascript
62+
// 回退: 将 MCP 调用替换为 Bash CLI(参数一一对应)
63+
Bash(`ccw team log --team "${teamName}" --from "spec-analyst" --to "coordinator" --type "research_ready" --summary "研究完成: 5个探索维度" --ref "${sessionFolder}/discovery-context.json" --json`)
64+
```
65+
66+
**参数映射**: `team_msg(params)``ccw team log --team <team> --from spec-analyst --to coordinator --type <type> --summary "<text>" [--ref <path>] [--data '<json>'] [--json]`
67+
5768
## Execution Process
5869

5970
```

.claude/commands/team/spec-coordinate.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,26 @@ mcp__ccw-tools__team_msg({ operation: "status", team: teamName })
3131
**日志位置**: `.workflow/.team-msg/{team-name}/messages.jsonl`
3232
**消息类型**: `research_ready | research_progress | draft_ready | draft_revision | quality_result | discussion_ready | discussion_blocked | fix_required | error | shutdown`
3333

34+
### CLI 回退
35+
36+
`mcp__ccw-tools__team_msg` MCP 不可用时,使用 `ccw team` CLI 作为等效回退:
37+
38+
```javascript
39+
// 回退: 将 MCP 调用替换为 Bash CLI(参数一一对应)
40+
// log
41+
Bash(`ccw team log --team "${teamName}" --from "coordinator" --to "spec-analyst" --type "plan_approved" --summary "研究结果已确认" --json`)
42+
// list
43+
Bash(`ccw team list --team "${teamName}" --last 10 --json`)
44+
// list (带过滤)
45+
Bash(`ccw team list --team "${teamName}" --from "spec-discuss" --last 5 --json`)
46+
// status
47+
Bash(`ccw team status --team "${teamName}" --json`)
48+
// read
49+
Bash(`ccw team read --team "${teamName}" --id "MSG-003" --json`)
50+
```
51+
52+
**参数映射**: `team_msg(params)``ccw team <operation> --team <team> [--from/--to/--type/--summary/--ref/--data/--id/--last] [--json]`
53+
3454
## Pipeline
3555

3656
```

.claude/commands/team/spec-discuss.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,20 @@ mcp__ccw-tools__team_msg({ operation: "log", team: teamName, from: "spec-discuss
5656
mcp__ccw-tools__team_msg({ operation: "log", team: teamName, from: "spec-discuss", to: "coordinator", type: "error", summary: "DISCUSS-001: 找不到 discovery-context.json" })
5757
```
5858

59+
### CLI 回退
60+
61+
`mcp__ccw-tools__team_msg` MCP 不可用时,使用 `ccw team` CLI 作为等效回退:
62+
63+
```javascript
64+
// 回退: 将 MCP 调用替换为 Bash CLI(参数一一对应)
65+
Bash(`ccw team log --team "${teamName}" --from "spec-discuss" --to "coordinator" --type "discussion_ready" --summary "DISCUSS-002: 共识达成, 3个改进建议" --ref "${sessionFolder}/discussions/discuss-002-brief.md" --json`)
66+
67+
// 带 data 参数(讨论阻塞时)
68+
Bash(`ccw team log --team "${teamName}" --from "spec-discuss" --to "coordinator" --type "discussion_blocked" --summary "技术选型分歧" --data '{"reason":"微服务 vs 单体","options":[{"label":"微服务"},{"label":"单体"}]}' --json`)
69+
```
70+
71+
**参数映射**: `team_msg(params)``ccw team log --team <team> --from spec-discuss --to coordinator --type <type> --summary "<text>" [--ref <path>] [--data '<json>'] [--json]`
72+
5973
## 讨论维度模型
6074

6175
每个讨论轮次从4个视角进行结构化分析:

.claude/commands/team/spec-reviewer.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,17 @@ mcp__ccw-tools__team_msg({ operation: "log", team: teamName, from: "spec-reviewe
5555
mcp__ccw-tools__team_msg({ operation: "log", team: teamName, from: "spec-reviewer", to: "coordinator", type: "fix_required", summary: "质量 FAIL: 55分, 缺少架构 ADR + PRD 验收标准不可测", data: { gate: "FAIL", score: 55, issues: ["missing ADRs", "untestable AC"] } })
5656
```
5757

58+
### CLI 回退
59+
60+
`mcp__ccw-tools__team_msg` MCP 不可用时,使用 `ccw team` CLI 作为等效回退:
61+
62+
```javascript
63+
// 回退: 将 MCP 调用替换为 Bash CLI(参数一一对应)
64+
Bash(`ccw team log --team "${teamName}" --from "spec-reviewer" --to "coordinator" --type "quality_result" --summary "质量检查 PASS: 85分" --data '{"gate":"PASS","score":85}' --json`)
65+
```
66+
67+
**参数映射**: `team_msg(params)``ccw team log --team <team> --from spec-reviewer --to coordinator --type <type> --summary "<text>" [--data '<json>'] [--json]`
68+
5869
## Execution Process
5970

6071
```

.claude/commands/team/spec-writer.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,17 @@ mcp__ccw-tools__team_msg({ operation: "log", team: teamName, from: "spec-writer"
5555
mcp__ccw-tools__team_msg({ operation: "log", team: teamName, from: "spec-writer", to: "coordinator", type: "error", summary: "缺少 discovery-context.json, 无法生成 Product Brief" })
5656
```
5757

58+
### CLI 回退
59+
60+
`mcp__ccw-tools__team_msg` MCP 不可用时,使用 `ccw team` CLI 作为等效回退:
61+
62+
```javascript
63+
// 回退: 将 MCP 调用替换为 Bash CLI(参数一一对应)
64+
Bash(`ccw team log --team "${teamName}" --from "spec-writer" --to "coordinator" --type "draft_ready" --summary "Product Brief 完成: 8个章节" --ref "${sessionFolder}/product-brief.md" --json`)
65+
```
66+
67+
**参数映射**: `team_msg(params)``ccw team log --team <team> --from spec-writer --to coordinator --type <type> --summary "<text>" [--ref <path>] [--data '<json>'] [--json]`
68+
5869
## Execution Process
5970

6071
```

.claude/commands/team/test.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,17 @@ mcp__ccw-tools__team_msg({ operation: "log", team: teamName, from: "tester", to:
5959
mcp__ccw-tools__team_msg({ operation: "log", team: teamName, from: "tester", to: "coordinator", type: "error", summary: "jest命令未找到, 请确认测试框架已安装" })
6060
```
6161

62+
### CLI 回退
63+
64+
`mcp__ccw-tools__team_msg` MCP 不可用时,使用 `ccw team` CLI 作为等效回退:
65+
66+
```javascript
67+
// 回退: 将 MCP 调用替换为 Bash CLI(参数一一对应)
68+
Bash(`ccw team log --team "${teamName}" --from "tester" --to "coordinator" --type "test_result" --summary "TEST-001通过: 98% pass rate" --data '{"passRate":98,"iterations":3}' --json`)
69+
```
70+
71+
**参数映射**: `team_msg(params)``ccw team log --team <team> --from tester --to coordinator --type <type> --summary "<text>" [--data '<json>'] [--json]`
72+
6273
## Execution Process
6374

6475
```

.claude/skills/team-command-designer/phases/03-command-generation.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,18 @@ ${config.message_types.filter(mt => mt.type !== 'error').map(mt =>
6868
`// ${mt.trigger}
6969
mcp__ccw-tools__team_msg({ operation: "log", team: teamName, from: "${config.role_name}", to: "coordinator", type: "${mt.type}", summary: "${mt.trigger}" })`
7070
).join('\n\n')}
71-
\`\`\``
71+
\`\`\`
72+
73+
### CLI 回退
74+
75+
\`mcp__ccw-tools__team_msg\` MCP 不可用时,使用 \`ccw team\` CLI 作为等效回退:
76+
77+
\\\`\\\`\\\`javascript
78+
// 回退: 将 MCP 调用替换为 Bash CLI(参数一一对应)
79+
Bash(\\\`ccw team log --team "\${teamName}" --from "${config.role_name}" --to "coordinator" --type "${config.message_types[0]?.type || 'result'}" --summary "<摘要>" --json\\\`)
80+
\\\`\\\`\\\`
81+
82+
**参数映射**: \`team_msg(params)\`\`ccw team log --team <team> --from ${config.role_name} --to coordinator --type <type> --summary "<text>" [--ref <path>] [--data '<json>'] [--json]\``
7283
```
7384
7485
### Step 4: Generate Phase Implementations

0 commit comments

Comments
 (0)