mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-03-05 16:13:08 +08:00
- 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.
92 lines
1.8 KiB
JSON
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"
|
|
]
|
|
}
|
|
}
|