claude-code-workflow 6.3.26 → 6.3.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/CLAUDE.md +7 -1
- package/.claude/agents/action-planning-agent.md +1 -0
- package/.claude/agents/cli-discuss-agent.md +391 -0
- package/.claude/agents/cli-execution-agent.md +2 -0
- package/.claude/agents/cli-explore-agent.md +2 -1
- package/.claude/agents/cli-lite-planning-agent.md +1 -0
- package/.claude/agents/cli-planning-agent.md +1 -0
- package/.claude/agents/code-developer.md +1 -0
- package/.claude/agents/conceptual-planning-agent.md +2 -0
- package/.claude/agents/context-search-agent.md +1 -0
- package/.claude/agents/debug-explore-agent.md +2 -0
- package/.claude/agents/doc-generator.md +1 -0
- package/.claude/agents/issue-plan-agent.md +2 -1
- package/.claude/agents/issue-queue-agent.md +2 -1
- package/.claude/agents/memory-bridge.md +2 -0
- package/.claude/agents/test-context-search-agent.md +2 -0
- package/.claude/agents/test-fix-agent.md +1 -0
- package/.claude/agents/ui-design-agent.md +2 -0
- package/.claude/agents/universal-executor.md +1 -0
- package/.claude/commands/issue/execute.md +141 -163
- package/.claude/commands/workflow/lite-lite-lite.md +798 -0
- package/.claude/commands/workflow/multi-cli-plan.md +510 -0
- package/.claude/skills/ccw/SKILL.md +262 -372
- package/.claude/skills/ccw/command.json +547 -0
- package/.claude/skills/ccw-help/SKILL.md +46 -107
- package/.claude/skills/ccw-help/command.json +511 -0
- package/.claude/skills/skill-tuning/SKILL.md +303 -0
- package/.claude/skills/skill-tuning/phases/actions/action-abort.md +164 -0
- package/.claude/skills/skill-tuning/phases/actions/action-analyze-requirements.md +406 -0
- package/.claude/skills/skill-tuning/phases/actions/action-apply-fix.md +206 -0
- package/.claude/skills/skill-tuning/phases/actions/action-complete.md +195 -0
- package/.claude/skills/skill-tuning/phases/actions/action-diagnose-agent.md +317 -0
- package/.claude/skills/skill-tuning/phases/actions/action-diagnose-context.md +243 -0
- package/.claude/skills/skill-tuning/phases/actions/action-diagnose-dataflow.md +318 -0
- package/.claude/skills/skill-tuning/phases/actions/action-diagnose-docs.md +299 -0
- package/.claude/skills/skill-tuning/phases/actions/action-diagnose-memory.md +269 -0
- package/.claude/skills/skill-tuning/phases/actions/action-diagnose-token-consumption.md +200 -0
- package/.claude/skills/skill-tuning/phases/actions/action-gemini-analysis.md +322 -0
- package/.claude/skills/skill-tuning/phases/actions/action-generate-report.md +228 -0
- package/.claude/skills/skill-tuning/phases/actions/action-init.md +149 -0
- package/.claude/skills/skill-tuning/phases/actions/action-propose-fixes.md +317 -0
- package/.claude/skills/skill-tuning/phases/actions/action-verify.md +222 -0
- package/.claude/skills/skill-tuning/phases/orchestrator.md +377 -0
- package/.claude/skills/skill-tuning/phases/state-schema.md +378 -0
- package/.claude/skills/skill-tuning/specs/category-mappings.json +284 -0
- package/.claude/skills/skill-tuning/specs/dimension-mapping.md +212 -0
- package/.claude/skills/skill-tuning/specs/problem-taxonomy.md +318 -0
- package/.claude/skills/skill-tuning/specs/quality-gates.md +263 -0
- package/.claude/skills/skill-tuning/specs/skill-authoring-principles.md +189 -0
- package/.claude/skills/skill-tuning/specs/tuning-strategies.md +1537 -0
- package/.claude/skills/skill-tuning/templates/diagnosis-report.md +153 -0
- package/.claude/skills/skill-tuning/templates/fix-proposal.md +204 -0
- package/.claude/workflows/cli-templates/schemas/multi-cli-discussion-schema.json +421 -0
- package/.claude/workflows/cli-tools-usage.md +0 -41
- package/ccw/dist/core/auth/csrf-middleware.d.ts.map +1 -1
- package/ccw/dist/core/auth/csrf-middleware.js +3 -1
- package/ccw/dist/core/auth/csrf-middleware.js.map +1 -1
- package/ccw/dist/core/data-aggregator.d.ts +2 -0
- package/ccw/dist/core/data-aggregator.d.ts.map +1 -1
- package/ccw/dist/core/data-aggregator.js +5 -2
- package/ccw/dist/core/data-aggregator.js.map +1 -1
- package/ccw/dist/core/lite-scanner.d.ts +2 -1
- package/ccw/dist/core/lite-scanner.d.ts.map +1 -1
- package/ccw/dist/core/lite-scanner.js +295 -6
- package/ccw/dist/core/lite-scanner.js.map +1 -1
- package/ccw/dist/core/routes/codexlens/config-handlers.d.ts.map +1 -1
- package/ccw/dist/core/routes/codexlens/config-handlers.js +5 -5
- package/ccw/dist/core/routes/codexlens/config-handlers.js.map +1 -1
- package/ccw/dist/core/routes/session-routes.d.ts.map +1 -1
- package/ccw/dist/core/routes/session-routes.js +166 -48
- package/ccw/dist/core/routes/session-routes.js.map +1 -1
- package/ccw/dist/core/routes/system-routes.d.ts.map +1 -1
- package/ccw/dist/core/routes/system-routes.js +87 -0
- package/ccw/dist/core/routes/system-routes.js.map +1 -1
- package/ccw/dist/core/server.js +2 -2
- package/ccw/dist/core/server.js.map +1 -1
- package/ccw/scripts/IMPLEMENTATION-SUMMARY.md +226 -0
- package/ccw/scripts/QUICK-REFERENCE.md +135 -0
- package/ccw/scripts/README-memory-embedder.md +157 -0
- package/ccw/scripts/__pycache__/memory_embedder.cpython-313.pyc +0 -0
- package/ccw/scripts/__pycache__/test_memory_embedder.cpython-313-pytest-8.4.2.pyc +0 -0
- package/ccw/scripts/memory-embedder-example.ts +184 -0
- package/ccw/scripts/memory_embedder.py +428 -0
- package/ccw/scripts/test_memory_embedder.py +245 -0
- package/ccw/src/core/auth/csrf-middleware.ts +3 -1
- package/ccw/src/core/data-aggregator.ts +7 -2
- package/ccw/src/core/lite-scanner.ts +440 -6
- package/ccw/src/core/routes/codexlens/config-handlers.ts +12 -9
- package/ccw/src/core/routes/session-routes.ts +201 -48
- package/ccw/src/core/routes/system-routes.ts +102 -0
- package/ccw/src/core/server.ts +2 -2
- package/ccw/src/templates/dashboard-css/01-base.css +8 -0
- package/ccw/src/templates/dashboard-css/02-session.css +81 -0
- package/ccw/src/templates/dashboard-css/04-lite-tasks.css +2442 -0
- package/ccw/src/templates/dashboard-css/21-cli-toolmgmt.css +157 -0
- package/ccw/src/templates/dashboard-css/32-issue-manager.css +23 -0
- package/ccw/src/templates/dashboard-js/components/cli-stream-viewer.js +38 -4
- package/ccw/src/templates/dashboard-js/components/hook-manager.js +38 -13
- package/ccw/src/templates/dashboard-js/components/navigation.js +24 -4
- package/ccw/src/templates/dashboard-js/i18n.js +194 -6
- package/ccw/src/templates/dashboard-js/views/api-settings.js +32 -0
- package/ccw/src/templates/dashboard-js/views/claude-manager.js +44 -3
- package/ccw/src/templates/dashboard-js/views/cli-manager.js +303 -31
- package/ccw/src/templates/dashboard-js/views/history.js +44 -6
- package/ccw/src/templates/dashboard-js/views/home.js +1 -0
- package/ccw/src/templates/dashboard-js/views/issue-manager.js +54 -7
- package/ccw/src/templates/dashboard-js/views/lite-tasks.js +1817 -4
- package/ccw/src/templates/dashboard.html +5 -0
- package/package.json +2 -1
- package/.claude/skills/ccw/index/command-capabilities.json +0 -127
- package/.claude/skills/ccw/index/intent-rules.json +0 -136
- package/.claude/skills/ccw/index/workflow-chains.json +0 -451
- package/.claude/skills/ccw/phases/actions/bugfix.md +0 -218
- package/.claude/skills/ccw/phases/actions/coupled.md +0 -194
- package/.claude/skills/ccw/phases/actions/docs.md +0 -93
- package/.claude/skills/ccw/phases/actions/full.md +0 -154
- package/.claude/skills/ccw/phases/actions/issue.md +0 -201
- package/.claude/skills/ccw/phases/actions/rapid.md +0 -104
- package/.claude/skills/ccw/phases/actions/review-fix.md +0 -84
- package/.claude/skills/ccw/phases/actions/tdd.md +0 -66
- package/.claude/skills/ccw/phases/actions/ui.md +0 -79
- package/.claude/skills/ccw/phases/orchestrator.md +0 -435
- package/.claude/skills/ccw/specs/intent-classification.md +0 -336
- package/.claude/skills/ccw-help/index/all-agents.json +0 -82
- package/.claude/skills/ccw-help/index/all-commands.json +0 -882
- package/.claude/skills/ccw-help/index/by-category.json +0 -914
- package/.claude/skills/ccw-help/index/by-use-case.json +0 -896
- package/.claude/skills/ccw-help/index/command-relationships.json +0 -160
- package/.claude/skills/ccw-help/index/essential-commands.json +0 -112
|
@@ -0,0 +1,511 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_metadata": {
|
|
3
|
+
"version": "2.0.0",
|
|
4
|
+
"total_commands": 88,
|
|
5
|
+
"total_agents": 16,
|
|
6
|
+
"description": "Unified CCW-Help command index"
|
|
7
|
+
},
|
|
8
|
+
|
|
9
|
+
"essential_commands": [
|
|
10
|
+
"/workflow:lite-plan",
|
|
11
|
+
"/workflow:lite-fix",
|
|
12
|
+
"/workflow:plan",
|
|
13
|
+
"/workflow:execute",
|
|
14
|
+
"/workflow:session:start",
|
|
15
|
+
"/workflow:review-session-cycle",
|
|
16
|
+
"/memory:docs",
|
|
17
|
+
"/workflow:brainstorm:artifacts",
|
|
18
|
+
"/workflow:action-plan-verify",
|
|
19
|
+
"/version"
|
|
20
|
+
],
|
|
21
|
+
|
|
22
|
+
"commands": [
|
|
23
|
+
{
|
|
24
|
+
"name": "lite-plan",
|
|
25
|
+
"command": "/workflow:lite-plan",
|
|
26
|
+
"description": "Lightweight interactive planning with in-memory plan, dispatches to lite-execute",
|
|
27
|
+
"arguments": "[-e|--explore] \"task\"|file.md",
|
|
28
|
+
"category": "workflow",
|
|
29
|
+
"difficulty": "Intermediate",
|
|
30
|
+
"essential": true,
|
|
31
|
+
"flow": {
|
|
32
|
+
"next_steps": ["/workflow:lite-execute"],
|
|
33
|
+
"alternatives": ["/workflow:plan"]
|
|
34
|
+
},
|
|
35
|
+
"source": "../../../commands/workflow/lite-plan.md"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"name": "lite-execute",
|
|
39
|
+
"command": "/workflow:lite-execute",
|
|
40
|
+
"description": "Execute based on in-memory plan or prompt",
|
|
41
|
+
"arguments": "[--in-memory] \"task\"|file-path",
|
|
42
|
+
"category": "workflow",
|
|
43
|
+
"difficulty": "Intermediate",
|
|
44
|
+
"flow": {
|
|
45
|
+
"prerequisites": ["/workflow:lite-plan", "/workflow:lite-fix"]
|
|
46
|
+
},
|
|
47
|
+
"source": "../../../commands/workflow/lite-execute.md"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"name": "lite-fix",
|
|
51
|
+
"command": "/workflow:lite-fix",
|
|
52
|
+
"description": "Lightweight bug diagnosis and fix with optional hotfix mode",
|
|
53
|
+
"arguments": "[--hotfix] \"bug description\"",
|
|
54
|
+
"category": "workflow",
|
|
55
|
+
"difficulty": "Intermediate",
|
|
56
|
+
"essential": true,
|
|
57
|
+
"flow": {
|
|
58
|
+
"next_steps": ["/workflow:lite-execute"],
|
|
59
|
+
"alternatives": ["/workflow:lite-plan"]
|
|
60
|
+
},
|
|
61
|
+
"source": "../../../commands/workflow/lite-fix.md"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"name": "plan",
|
|
65
|
+
"command": "/workflow:plan",
|
|
66
|
+
"description": "5-phase planning with task JSON generation",
|
|
67
|
+
"arguments": "\"description\"|file.md",
|
|
68
|
+
"category": "workflow",
|
|
69
|
+
"difficulty": "Intermediate",
|
|
70
|
+
"essential": true,
|
|
71
|
+
"flow": {
|
|
72
|
+
"next_steps": ["/workflow:action-plan-verify", "/workflow:execute"],
|
|
73
|
+
"alternatives": ["/workflow:tdd-plan"]
|
|
74
|
+
},
|
|
75
|
+
"source": "../../../commands/workflow/plan.md"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"name": "execute",
|
|
79
|
+
"command": "/workflow:execute",
|
|
80
|
+
"description": "Coordinate agent execution with DAG parallel processing",
|
|
81
|
+
"arguments": "[--resume-session=\"session-id\"]",
|
|
82
|
+
"category": "workflow",
|
|
83
|
+
"difficulty": "Intermediate",
|
|
84
|
+
"essential": true,
|
|
85
|
+
"flow": {
|
|
86
|
+
"prerequisites": ["/workflow:plan", "/workflow:tdd-plan"],
|
|
87
|
+
"next_steps": ["/workflow:review"]
|
|
88
|
+
},
|
|
89
|
+
"source": "../../../commands/workflow/execute.md"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"name": "action-plan-verify",
|
|
93
|
+
"command": "/workflow:action-plan-verify",
|
|
94
|
+
"description": "Cross-artifact consistency analysis",
|
|
95
|
+
"arguments": "[--session session-id]",
|
|
96
|
+
"category": "workflow",
|
|
97
|
+
"difficulty": "Intermediate",
|
|
98
|
+
"essential": true,
|
|
99
|
+
"flow": {
|
|
100
|
+
"prerequisites": ["/workflow:plan"],
|
|
101
|
+
"next_steps": ["/workflow:execute"]
|
|
102
|
+
},
|
|
103
|
+
"source": "../../../commands/workflow/action-plan-verify.md"
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"name": "init",
|
|
107
|
+
"command": "/workflow:init",
|
|
108
|
+
"description": "Initialize project-level state",
|
|
109
|
+
"arguments": "[--regenerate]",
|
|
110
|
+
"category": "workflow",
|
|
111
|
+
"difficulty": "Intermediate",
|
|
112
|
+
"source": "../../../commands/workflow/init.md"
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"name": "clean",
|
|
116
|
+
"command": "/workflow:clean",
|
|
117
|
+
"description": "Intelligent code cleanup with stale artifact discovery",
|
|
118
|
+
"arguments": "[--dry-run] [\"focus\"]",
|
|
119
|
+
"category": "workflow",
|
|
120
|
+
"difficulty": "Intermediate",
|
|
121
|
+
"source": "../../../commands/workflow/clean.md"
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"name": "debug",
|
|
125
|
+
"command": "/workflow:debug",
|
|
126
|
+
"description": "Hypothesis-driven debugging with NDJSON logging",
|
|
127
|
+
"arguments": "\"bug description\"",
|
|
128
|
+
"category": "workflow",
|
|
129
|
+
"difficulty": "Intermediate",
|
|
130
|
+
"source": "../../../commands/workflow/debug.md"
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"name": "replan",
|
|
134
|
+
"command": "/workflow:replan",
|
|
135
|
+
"description": "Interactive workflow replanning",
|
|
136
|
+
"arguments": "[--session id] [task-id] \"requirements\"",
|
|
137
|
+
"category": "workflow",
|
|
138
|
+
"difficulty": "Intermediate",
|
|
139
|
+
"source": "../../../commands/workflow/replan.md"
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"name": "session:start",
|
|
143
|
+
"command": "/workflow:session:start",
|
|
144
|
+
"description": "Start or discover workflow sessions",
|
|
145
|
+
"arguments": "[--type <workflow|review|tdd>] [--auto|--new]",
|
|
146
|
+
"category": "workflow",
|
|
147
|
+
"subcategory": "session",
|
|
148
|
+
"difficulty": "Intermediate",
|
|
149
|
+
"essential": true,
|
|
150
|
+
"flow": {
|
|
151
|
+
"next_steps": ["/workflow:plan", "/workflow:execute"]
|
|
152
|
+
},
|
|
153
|
+
"source": "../../../commands/workflow/session/start.md"
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"name": "session:list",
|
|
157
|
+
"command": "/workflow:session:list",
|
|
158
|
+
"description": "List all workflow sessions",
|
|
159
|
+
"arguments": "",
|
|
160
|
+
"category": "workflow",
|
|
161
|
+
"subcategory": "session",
|
|
162
|
+
"difficulty": "Beginner",
|
|
163
|
+
"source": "../../../commands/workflow/session/list.md"
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"name": "session:resume",
|
|
167
|
+
"command": "/workflow:session:resume",
|
|
168
|
+
"description": "Resume paused workflow session",
|
|
169
|
+
"arguments": "",
|
|
170
|
+
"category": "workflow",
|
|
171
|
+
"subcategory": "session",
|
|
172
|
+
"difficulty": "Intermediate",
|
|
173
|
+
"source": "../../../commands/workflow/session/resume.md"
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"name": "session:complete",
|
|
177
|
+
"command": "/workflow:session:complete",
|
|
178
|
+
"description": "Mark session complete and archive",
|
|
179
|
+
"arguments": "",
|
|
180
|
+
"category": "workflow",
|
|
181
|
+
"subcategory": "session",
|
|
182
|
+
"difficulty": "Intermediate",
|
|
183
|
+
"source": "../../../commands/workflow/session/complete.md"
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
"name": "brainstorm:auto-parallel",
|
|
187
|
+
"command": "/workflow:brainstorm:auto-parallel",
|
|
188
|
+
"description": "Parallel brainstorming with multi-role analysis",
|
|
189
|
+
"arguments": "\"topic\" [--count N]",
|
|
190
|
+
"category": "workflow",
|
|
191
|
+
"subcategory": "brainstorm",
|
|
192
|
+
"difficulty": "Advanced",
|
|
193
|
+
"source": "../../../commands/workflow/brainstorm/auto-parallel.md"
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
"name": "brainstorm:artifacts",
|
|
197
|
+
"command": "/workflow:brainstorm:artifacts",
|
|
198
|
+
"description": "Interactive clarification with guidance specification",
|
|
199
|
+
"arguments": "\"topic\" [--count N]",
|
|
200
|
+
"category": "workflow",
|
|
201
|
+
"subcategory": "brainstorm",
|
|
202
|
+
"difficulty": "Intermediate",
|
|
203
|
+
"essential": true,
|
|
204
|
+
"source": "../../../commands/workflow/brainstorm/artifacts.md"
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
"name": "brainstorm:synthesis",
|
|
208
|
+
"command": "/workflow:brainstorm:synthesis",
|
|
209
|
+
"description": "Refine role analyses through Q&A",
|
|
210
|
+
"arguments": "[--session session-id]",
|
|
211
|
+
"category": "workflow",
|
|
212
|
+
"subcategory": "brainstorm",
|
|
213
|
+
"difficulty": "Advanced",
|
|
214
|
+
"source": "../../../commands/workflow/brainstorm/synthesis.md"
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
"name": "tdd-plan",
|
|
218
|
+
"command": "/workflow:tdd-plan",
|
|
219
|
+
"description": "TDD planning with Red-Green-Refactor cycles",
|
|
220
|
+
"arguments": "\"feature\"|file.md",
|
|
221
|
+
"category": "workflow",
|
|
222
|
+
"difficulty": "Advanced",
|
|
223
|
+
"flow": {
|
|
224
|
+
"next_steps": ["/workflow:execute", "/workflow:tdd-verify"],
|
|
225
|
+
"alternatives": ["/workflow:plan"]
|
|
226
|
+
},
|
|
227
|
+
"source": "../../../commands/workflow/tdd-plan.md"
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
"name": "tdd-verify",
|
|
231
|
+
"command": "/workflow:tdd-verify",
|
|
232
|
+
"description": "Verify TDD compliance with coverage analysis",
|
|
233
|
+
"arguments": "[session-id]",
|
|
234
|
+
"category": "workflow",
|
|
235
|
+
"difficulty": "Advanced",
|
|
236
|
+
"flow": {
|
|
237
|
+
"prerequisites": ["/workflow:execute"]
|
|
238
|
+
},
|
|
239
|
+
"source": "../../../commands/workflow/tdd-verify.md"
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
"name": "review",
|
|
243
|
+
"command": "/workflow:review",
|
|
244
|
+
"description": "Post-implementation review (security/architecture/quality)",
|
|
245
|
+
"arguments": "[--type=<type>] [session-id]",
|
|
246
|
+
"category": "workflow",
|
|
247
|
+
"difficulty": "Intermediate",
|
|
248
|
+
"source": "../../../commands/workflow/review.md"
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
"name": "review-session-cycle",
|
|
252
|
+
"command": "/workflow:review-session-cycle",
|
|
253
|
+
"description": "Multi-dimensional code review across 7 dimensions",
|
|
254
|
+
"arguments": "[session-id] [--dimensions=...]",
|
|
255
|
+
"category": "workflow",
|
|
256
|
+
"difficulty": "Intermediate",
|
|
257
|
+
"essential": true,
|
|
258
|
+
"flow": {
|
|
259
|
+
"prerequisites": ["/workflow:execute"],
|
|
260
|
+
"next_steps": ["/workflow:review-fix"]
|
|
261
|
+
},
|
|
262
|
+
"source": "../../../commands/workflow/review-session-cycle.md"
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
"name": "review-module-cycle",
|
|
266
|
+
"command": "/workflow:review-module-cycle",
|
|
267
|
+
"description": "Module-based multi-dimensional review",
|
|
268
|
+
"arguments": "<path-pattern> [--dimensions=...]",
|
|
269
|
+
"category": "workflow",
|
|
270
|
+
"difficulty": "Intermediate",
|
|
271
|
+
"source": "../../../commands/workflow/review-module-cycle.md"
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
"name": "review-fix",
|
|
275
|
+
"command": "/workflow:review-fix",
|
|
276
|
+
"description": "Automated fixing of review findings",
|
|
277
|
+
"arguments": "<export-file|review-dir>",
|
|
278
|
+
"category": "workflow",
|
|
279
|
+
"difficulty": "Intermediate",
|
|
280
|
+
"flow": {
|
|
281
|
+
"prerequisites": ["/workflow:review-session-cycle", "/workflow:review-module-cycle"]
|
|
282
|
+
},
|
|
283
|
+
"source": "../../../commands/workflow/review-fix.md"
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
"name": "test-gen",
|
|
287
|
+
"command": "/workflow:test-gen",
|
|
288
|
+
"description": "Generate test session from implementation",
|
|
289
|
+
"arguments": "source-session-id",
|
|
290
|
+
"category": "workflow",
|
|
291
|
+
"difficulty": "Intermediate",
|
|
292
|
+
"source": "../../../commands/workflow/test-gen.md"
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
"name": "test-fix-gen",
|
|
296
|
+
"command": "/workflow:test-fix-gen",
|
|
297
|
+
"description": "Create test-fix session with strategy",
|
|
298
|
+
"arguments": "session-id|\"description\"|file",
|
|
299
|
+
"category": "workflow",
|
|
300
|
+
"difficulty": "Intermediate",
|
|
301
|
+
"source": "../../../commands/workflow/test-fix-gen.md"
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
"name": "test-cycle-execute",
|
|
305
|
+
"command": "/workflow:test-cycle-execute",
|
|
306
|
+
"description": "Execute test-fix with iterative cycles",
|
|
307
|
+
"arguments": "[--resume-session=id] [--max-iterations=N]",
|
|
308
|
+
"category": "workflow",
|
|
309
|
+
"difficulty": "Intermediate",
|
|
310
|
+
"source": "../../../commands/workflow/test-cycle-execute.md"
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
"name": "issue:new",
|
|
314
|
+
"command": "/issue:new",
|
|
315
|
+
"description": "Create issue from GitHub URL or text",
|
|
316
|
+
"arguments": "<url|text> [--priority 1-5]",
|
|
317
|
+
"category": "issue",
|
|
318
|
+
"difficulty": "Intermediate",
|
|
319
|
+
"source": "../../../commands/issue/new.md"
|
|
320
|
+
},
|
|
321
|
+
{
|
|
322
|
+
"name": "issue:discover",
|
|
323
|
+
"command": "/issue:discover",
|
|
324
|
+
"description": "Discover issues from multiple perspectives",
|
|
325
|
+
"arguments": "<path> [--perspectives=...]",
|
|
326
|
+
"category": "issue",
|
|
327
|
+
"difficulty": "Intermediate",
|
|
328
|
+
"source": "../../../commands/issue/discover.md"
|
|
329
|
+
},
|
|
330
|
+
{
|
|
331
|
+
"name": "issue:plan",
|
|
332
|
+
"command": "/issue:plan",
|
|
333
|
+
"description": "Batch plan issue resolution",
|
|
334
|
+
"arguments": "--all-pending|<ids>",
|
|
335
|
+
"category": "issue",
|
|
336
|
+
"difficulty": "Intermediate",
|
|
337
|
+
"flow": {
|
|
338
|
+
"next_steps": ["/issue:queue"]
|
|
339
|
+
},
|
|
340
|
+
"source": "../../../commands/issue/plan.md"
|
|
341
|
+
},
|
|
342
|
+
{
|
|
343
|
+
"name": "issue:queue",
|
|
344
|
+
"command": "/issue:queue",
|
|
345
|
+
"description": "Form execution queue from solutions",
|
|
346
|
+
"arguments": "[--rebuild]",
|
|
347
|
+
"category": "issue",
|
|
348
|
+
"difficulty": "Intermediate",
|
|
349
|
+
"flow": {
|
|
350
|
+
"prerequisites": ["/issue:plan"],
|
|
351
|
+
"next_steps": ["/issue:execute"]
|
|
352
|
+
},
|
|
353
|
+
"source": "../../../commands/issue/queue.md"
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
"name": "issue:execute",
|
|
357
|
+
"command": "/issue:execute",
|
|
358
|
+
"description": "Execute queue with DAG parallel",
|
|
359
|
+
"arguments": "[--worktree]",
|
|
360
|
+
"category": "issue",
|
|
361
|
+
"difficulty": "Intermediate",
|
|
362
|
+
"flow": {
|
|
363
|
+
"prerequisites": ["/issue:queue"]
|
|
364
|
+
},
|
|
365
|
+
"source": "../../../commands/issue/execute.md"
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
"name": "docs",
|
|
369
|
+
"command": "/memory:docs",
|
|
370
|
+
"description": "Plan documentation workflow",
|
|
371
|
+
"arguments": "[path] [--tool <tool>]",
|
|
372
|
+
"category": "memory",
|
|
373
|
+
"difficulty": "Intermediate",
|
|
374
|
+
"essential": true,
|
|
375
|
+
"flow": {
|
|
376
|
+
"next_steps": ["/workflow:execute"]
|
|
377
|
+
},
|
|
378
|
+
"source": "../../../commands/memory/docs.md"
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
"name": "update-related",
|
|
382
|
+
"command": "/memory:update-related",
|
|
383
|
+
"description": "Update docs for git-changed modules",
|
|
384
|
+
"arguments": "[--tool <tool>]",
|
|
385
|
+
"category": "memory",
|
|
386
|
+
"difficulty": "Intermediate",
|
|
387
|
+
"source": "../../../commands/memory/update-related.md"
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
"name": "update-full",
|
|
391
|
+
"command": "/memory:update-full",
|
|
392
|
+
"description": "Update all CLAUDE.md files",
|
|
393
|
+
"arguments": "[--tool <tool>]",
|
|
394
|
+
"category": "memory",
|
|
395
|
+
"difficulty": "Intermediate",
|
|
396
|
+
"source": "../../../commands/memory/update-full.md"
|
|
397
|
+
},
|
|
398
|
+
{
|
|
399
|
+
"name": "skill-memory",
|
|
400
|
+
"command": "/memory:skill-memory",
|
|
401
|
+
"description": "Generate SKILL.md with loading index",
|
|
402
|
+
"arguments": "[path] [--regenerate]",
|
|
403
|
+
"category": "memory",
|
|
404
|
+
"difficulty": "Intermediate",
|
|
405
|
+
"source": "../../../commands/memory/skill-memory.md"
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
"name": "load-skill-memory",
|
|
409
|
+
"command": "/memory:load-skill-memory",
|
|
410
|
+
"description": "Activate SKILL package for task",
|
|
411
|
+
"arguments": "[skill_name] \"task intent\"",
|
|
412
|
+
"category": "memory",
|
|
413
|
+
"difficulty": "Intermediate",
|
|
414
|
+
"source": "../../../commands/memory/load-skill-memory.md"
|
|
415
|
+
},
|
|
416
|
+
{
|
|
417
|
+
"name": "load",
|
|
418
|
+
"command": "/memory:load",
|
|
419
|
+
"description": "Load project context via CLI",
|
|
420
|
+
"arguments": "[--tool <tool>] \"context\"",
|
|
421
|
+
"category": "memory",
|
|
422
|
+
"difficulty": "Intermediate",
|
|
423
|
+
"source": "../../../commands/memory/load.md"
|
|
424
|
+
},
|
|
425
|
+
{
|
|
426
|
+
"name": "compact",
|
|
427
|
+
"command": "/memory:compact",
|
|
428
|
+
"description": "Compact session memory for recovery",
|
|
429
|
+
"arguments": "[description]",
|
|
430
|
+
"category": "memory",
|
|
431
|
+
"difficulty": "Intermediate",
|
|
432
|
+
"source": "../../../commands/memory/compact.md"
|
|
433
|
+
},
|
|
434
|
+
{
|
|
435
|
+
"name": "task:create",
|
|
436
|
+
"command": "/task:create",
|
|
437
|
+
"description": "Generate task JSON from description",
|
|
438
|
+
"arguments": "\"task title\"",
|
|
439
|
+
"category": "task",
|
|
440
|
+
"difficulty": "Intermediate",
|
|
441
|
+
"source": "../../../commands/task/create.md"
|
|
442
|
+
},
|
|
443
|
+
{
|
|
444
|
+
"name": "task:execute",
|
|
445
|
+
"command": "/task:execute",
|
|
446
|
+
"description": "Execute task JSON with agent",
|
|
447
|
+
"arguments": "task-id",
|
|
448
|
+
"category": "task",
|
|
449
|
+
"difficulty": "Intermediate",
|
|
450
|
+
"source": "../../../commands/task/execute.md"
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
"name": "task:breakdown",
|
|
454
|
+
"command": "/task:breakdown",
|
|
455
|
+
"description": "Decompose task into subtasks",
|
|
456
|
+
"arguments": "task-id",
|
|
457
|
+
"category": "task",
|
|
458
|
+
"difficulty": "Intermediate",
|
|
459
|
+
"source": "../../../commands/task/breakdown.md"
|
|
460
|
+
},
|
|
461
|
+
{
|
|
462
|
+
"name": "task:replan",
|
|
463
|
+
"command": "/task:replan",
|
|
464
|
+
"description": "Update task with new requirements",
|
|
465
|
+
"arguments": "task-id [\"text\"|file]",
|
|
466
|
+
"category": "task",
|
|
467
|
+
"difficulty": "Intermediate",
|
|
468
|
+
"source": "../../../commands/task/replan.md"
|
|
469
|
+
},
|
|
470
|
+
{
|
|
471
|
+
"name": "version",
|
|
472
|
+
"command": "/version",
|
|
473
|
+
"description": "Display version and check updates",
|
|
474
|
+
"arguments": "",
|
|
475
|
+
"category": "general",
|
|
476
|
+
"difficulty": "Beginner",
|
|
477
|
+
"essential": true,
|
|
478
|
+
"source": "../../../commands/version.md"
|
|
479
|
+
},
|
|
480
|
+
{
|
|
481
|
+
"name": "enhance-prompt",
|
|
482
|
+
"command": "/enhance-prompt",
|
|
483
|
+
"description": "Transform prompts with session memory",
|
|
484
|
+
"arguments": "user input",
|
|
485
|
+
"category": "general",
|
|
486
|
+
"difficulty": "Intermediate",
|
|
487
|
+
"source": "../../../commands/enhance-prompt.md"
|
|
488
|
+
}
|
|
489
|
+
],
|
|
490
|
+
|
|
491
|
+
"agents": [
|
|
492
|
+
{ "name": "action-planning-agent", "description": "Task planning and generation", "source": "../../../agents/action-planning-agent.md" },
|
|
493
|
+
{ "name": "cli-execution-agent", "description": "CLI tool execution", "source": "../../../agents/cli-execution-agent.md" },
|
|
494
|
+
{ "name": "cli-explore-agent", "description": "Codebase exploration", "source": "../../../agents/cli-explore-agent.md" },
|
|
495
|
+
{ "name": "cli-lite-planning-agent", "description": "Lightweight planning", "source": "../../../agents/cli-lite-planning-agent.md" },
|
|
496
|
+
{ "name": "cli-planning-agent", "description": "CLI-based planning", "source": "../../../agents/cli-planning-agent.md" },
|
|
497
|
+
{ "name": "code-developer", "description": "Code implementation", "source": "../../../agents/code-developer.md" },
|
|
498
|
+
{ "name": "conceptual-planning-agent", "description": "Conceptual analysis", "source": "../../../agents/conceptual-planning-agent.md" },
|
|
499
|
+
{ "name": "context-search-agent", "description": "Context discovery", "source": "../../../agents/context-search-agent.md" },
|
|
500
|
+
{ "name": "doc-generator", "description": "Documentation generation", "source": "../../../agents/doc-generator.md" },
|
|
501
|
+
{ "name": "issue-plan-agent", "description": "Issue planning", "source": "../../../agents/issue-plan-agent.md" },
|
|
502
|
+
{ "name": "issue-queue-agent", "description": "Issue queue formation", "source": "../../../agents/issue-queue-agent.md" },
|
|
503
|
+
{ "name": "memory-bridge", "description": "Documentation coordination", "source": "../../../agents/memory-bridge.md" },
|
|
504
|
+
{ "name": "test-context-search-agent", "description": "Test context collection", "source": "../../../agents/test-context-search-agent.md" },
|
|
505
|
+
{ "name": "test-fix-agent", "description": "Test execution and fixing", "source": "../../../agents/test-fix-agent.md" },
|
|
506
|
+
{ "name": "ui-design-agent", "description": "UI design and prototyping", "source": "../../../agents/ui-design-agent.md" },
|
|
507
|
+
{ "name": "universal-executor", "description": "Universal task execution", "source": "../../../agents/universal-executor.md" }
|
|
508
|
+
],
|
|
509
|
+
|
|
510
|
+
"categories": ["workflow", "issue", "memory", "task", "general", "cli"]
|
|
511
|
+
}
|