mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-04 01:40:45 +08:00
- Introduced `command-relationships.json` to define internal calls, next steps, and prerequisites for various workflows. - Created `essential-commands.json` to document key commands, their descriptions, arguments, and usage scenarios. - Added `validate-help.py` script to check for the existence of source files referenced in command definitions, ensuring all necessary files are present.
160 lines
3.1 KiB
JSON
160 lines
3.1 KiB
JSON
{
|
|
"workflow:plan": {
|
|
"calls_internally": [
|
|
"workflow:session:start",
|
|
"workflow:tools:context-gather",
|
|
"workflow:tools:conflict-resolution",
|
|
"workflow:tools:task-generate-agent"
|
|
],
|
|
"next_steps": [
|
|
"workflow:plan-verify",
|
|
"workflow:status",
|
|
"workflow:execute"
|
|
],
|
|
"alternatives": [
|
|
"workflow:tdd-plan"
|
|
],
|
|
"prerequisites": []
|
|
},
|
|
"workflow:tdd-plan": {
|
|
"calls_internally": [
|
|
"workflow:session:start",
|
|
"workflow:tools:context-gather",
|
|
"workflow:tools:task-generate-tdd"
|
|
],
|
|
"next_steps": [
|
|
"workflow:tdd-verify",
|
|
"workflow:status",
|
|
"workflow:execute"
|
|
],
|
|
"alternatives": [
|
|
"workflow:plan"
|
|
],
|
|
"prerequisites": []
|
|
},
|
|
"workflow:execute": {
|
|
"prerequisites": [
|
|
"workflow:plan",
|
|
"workflow:tdd-plan"
|
|
],
|
|
"related": [
|
|
"workflow:status",
|
|
"workflow:resume"
|
|
],
|
|
"next_steps": [
|
|
"workflow:review",
|
|
"workflow:tdd-verify"
|
|
]
|
|
},
|
|
"workflow:plan-verify": {
|
|
"prerequisites": [
|
|
"workflow:plan"
|
|
],
|
|
"next_steps": [
|
|
"workflow:execute"
|
|
],
|
|
"related": [
|
|
"workflow:status"
|
|
]
|
|
},
|
|
"workflow:tdd-verify": {
|
|
"prerequisites": [
|
|
"workflow:execute"
|
|
],
|
|
"related": [
|
|
"workflow:tools:tdd-coverage-analysis"
|
|
]
|
|
},
|
|
"workflow:session:start": {
|
|
"next_steps": [
|
|
"workflow:plan",
|
|
"workflow:execute"
|
|
],
|
|
"related": [
|
|
"workflow:session:list",
|
|
"workflow:session:resume"
|
|
]
|
|
},
|
|
"workflow:session:resume": {
|
|
"alternatives": [
|
|
"workflow:resume"
|
|
],
|
|
"related": [
|
|
"workflow:session:list",
|
|
"workflow:status"
|
|
]
|
|
},
|
|
"workflow:lite-plan": {
|
|
"calls_internally": [
|
|
"workflow:lite-execute"
|
|
],
|
|
"next_steps": [
|
|
"workflow:lite-execute",
|
|
"workflow:status"
|
|
],
|
|
"alternatives": [
|
|
"workflow:plan"
|
|
],
|
|
"prerequisites": []
|
|
},
|
|
"workflow:lite-fix": {
|
|
"next_steps": [
|
|
"workflow:lite-execute",
|
|
"workflow:status"
|
|
],
|
|
"alternatives": [
|
|
"workflow:lite-plan"
|
|
],
|
|
"related": [
|
|
"workflow:test-cycle-execute"
|
|
]
|
|
},
|
|
"workflow:lite-execute": {
|
|
"prerequisites": [
|
|
"workflow:lite-plan",
|
|
"workflow:lite-fix"
|
|
],
|
|
"related": [
|
|
"workflow:execute",
|
|
"workflow:status"
|
|
]
|
|
},
|
|
"workflow:review-session-cycle": {
|
|
"prerequisites": [
|
|
"workflow:execute"
|
|
],
|
|
"next_steps": [
|
|
"workflow:review-fix"
|
|
],
|
|
"related": [
|
|
"workflow:review-module-cycle"
|
|
]
|
|
},
|
|
"workflow:review-fix": {
|
|
"prerequisites": [
|
|
"workflow:review-module-cycle",
|
|
"workflow:review-session-cycle"
|
|
],
|
|
"related": [
|
|
"workflow:test-cycle-execute"
|
|
]
|
|
},
|
|
"memory:docs": {
|
|
"calls_internally": [
|
|
"workflow:session:start",
|
|
"workflow:tools:context-gather"
|
|
],
|
|
"next_steps": [
|
|
"workflow:execute"
|
|
]
|
|
},
|
|
"memory:skill-memory": {
|
|
"next_steps": [
|
|
"workflow:plan",
|
|
"cli:analyze"
|
|
],
|
|
"related": [
|
|
"memory:load-skill-memory"
|
|
]
|
|
}
|
|
} |