Files
Claude-Code-Workflow/.claude/skills/ccw-help/index/command-relationships.json
catlog22 26bda9c634 feat: Add coordinator commands and role specifications for UI design team
- Implemented the 'monitor' command for coordinator role to handle monitoring events, task completion, and pipeline management.
- Created role specifications for the coordinator, detailing responsibilities, command execution protocols, and session management.
- Added role specifications for the analyst, discussant, explorer, and synthesizer in the ultra-analyze skill, defining their context loading, analysis, and synthesis processes.
2026-03-03 23:35:41 +08:00

92 lines
1.8 KiB
JSON

{
"workflow-plan": {
"calls_internally": [
"workflow:session:start"
],
"next_steps": [
"workflow-plan-verify",
"workflow:session:list",
"workflow:unified-execute-with-file"
],
"alternatives": [],
"prerequisites": []
},
"workflow-tdd-plan": {
"calls_internally": [
"workflow:session:start"
],
"next_steps": [
"workflow-tdd-verify",
"workflow:session:list",
"workflow:unified-execute-with-file"
],
"alternatives": [],
"prerequisites": []
},
"workflow:unified-execute-with-file": {
"prerequisites": [
"workflow-plan",
"workflow-tdd-plan"
],
"related": [
"workflow:session:list",
"workflow:session:resume"
],
"next_steps": [
"review-cycle",
"workflow-test-fix"
]
},
"workflow-plan-verify": {
"prerequisites": [
"workflow-plan"
],
"next_steps": [
"workflow:unified-execute-with-file"
],
"related": [
"workflow:session:list"
]
},
"workflow-tdd-verify": {
"prerequisites": [
"workflow:unified-execute-with-file"
],
"related": []
},
"workflow:session:start": {
"next_steps": [
"workflow-plan",
"workflow:unified-execute-with-file"
],
"related": [
"workflow:session:list",
"workflow:session:resume"
]
},
"workflow:session:resume": {
"alternatives": [],
"related": [
"workflow:session:list"
]
},
"workflow-lite-planex": {
"calls_internally": [],
"next_steps": [
"workflow:session:list"
],
"alternatives": [
"workflow-plan"
],
"prerequisites": []
},
"review-cycle": {
"prerequisites": [
"workflow:unified-execute-with-file"
],
"related": [
"workflow-test-fix"
]
}
}