claude-code-workflow 6.3.50 → 6.3.52

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.
Files changed (71) hide show
  1. package/.claude/commands/view.md +367 -0
  2. package/.claude/commands/workflow/merge-plans-with-file.md +807 -0
  3. package/.claude/commands/workflow/quick-plan-with-file.md +808 -0
  4. package/.claude/commands/workflow/unified-execute-with-file.md +807 -0
  5. package/.claude/skills/ccw-help/SKILL.md +72 -12
  6. package/.claude/skills/ccw-help/command.json +922 -520
  7. package/.claude/skills/ccw-help/index/all-agents.json +97 -0
  8. package/.claude/skills/ccw-help/index/all-commands.json +805 -0
  9. package/.claude/skills/ccw-help/index/by-category.json +833 -0
  10. package/.claude/skills/ccw-help/index/by-use-case.json +819 -0
  11. package/.claude/skills/ccw-help/index/command-relationships.json +160 -0
  12. package/.claude/skills/ccw-help/index/essential-commands.json +90 -0
  13. package/.claude/skills/ccw-help/scripts/auto-update.py +34 -0
  14. package/.claude/skills/skill-generator/SKILL.md +255 -208
  15. package/.claude/skills/skill-generator/phases/01-requirements-discovery.md +238 -228
  16. package/.claude/skills/skill-generator/phases/02-structure-generation.md +261 -262
  17. package/.claude/skills/skill-generator/phases/03-phase-generation.md +976 -969
  18. package/.claude/skills/skill-generator/phases/04-specs-templates.md +398 -398
  19. package/.claude/skills/skill-generator/phases/05-validation.md +417 -417
  20. package/.claude/skills/skill-generator/specs/cli-integration.md +131 -131
  21. package/.claude/skills/skill-generator/specs/execution-modes.md +399 -396
  22. package/.claude/skills/skill-generator/specs/reference-docs-spec.md +271 -0
  23. package/.claude/skills/skill-generator/specs/scripting-integration.md +265 -265
  24. package/.claude/skills/skill-generator/specs/skill-requirements.md +466 -466
  25. package/.claude/skills/skill-generator/templates/autonomous-action.md +91 -88
  26. package/.claude/skills/skill-generator/templates/autonomous-orchestrator.md +89 -89
  27. package/.claude/skills/skill-generator/templates/code-analysis-action.md +148 -149
  28. package/.claude/skills/skill-generator/templates/llm-action.md +367 -367
  29. package/.claude/skills/skill-generator/templates/script-template.md +79 -79
  30. package/.claude/skills/skill-generator/templates/sequential-phase.md +129 -129
  31. package/.claude/skills/skill-generator/templates/skill-md.md +134 -75
  32. package/.codex/prompts/brainstorm-with-file.md +99 -32
  33. package/.codex/prompts/merge-plans-with-file.md +530 -0
  34. package/.codex/prompts/quick-plan-with-file.md +450 -0
  35. package/.codex/prompts/unified-execute-with-file.md +722 -0
  36. package/.codex/skills/codex-issue-plan-execute/SKILL.md +214 -0
  37. package/.codex/skills/codex-issue-plan-execute/phases/actions/action-complete.md +173 -0
  38. package/.codex/skills/codex-issue-plan-execute/phases/actions/action-execute.md +220 -0
  39. package/.codex/skills/codex-issue-plan-execute/phases/actions/action-init.md +86 -0
  40. package/.codex/skills/codex-issue-plan-execute/phases/actions/action-list.md +165 -0
  41. package/.codex/skills/codex-issue-plan-execute/phases/actions/action-plan.md +170 -0
  42. package/.codex/skills/codex-issue-plan-execute/phases/orchestrator.md +212 -0
  43. package/.codex/skills/codex-issue-plan-execute/phases/state-schema.md +136 -0
  44. package/.codex/skills/codex-issue-plan-execute/prompts/execution-agent-system.md +32 -0
  45. package/.codex/skills/codex-issue-plan-execute/prompts/execution-agent.md +323 -0
  46. package/.codex/skills/codex-issue-plan-execute/prompts/planning-agent-system.md +32 -0
  47. package/.codex/skills/codex-issue-plan-execute/prompts/planning-agent.md +224 -0
  48. package/.codex/skills/codex-issue-plan-execute/specs/agent-roles.md +468 -0
  49. package/.codex/skills/codex-issue-plan-execute/specs/issue-handling.md +187 -0
  50. package/.codex/skills/codex-issue-plan-execute/specs/quality-standards.md +231 -0
  51. package/.codex/skills/codex-issue-plan-execute/specs/solution-schema.md +270 -0
  52. package/.codex/skills/codex-issue-plan-execute/specs/subagent-roles.md +32 -0
  53. package/ccw/dist/commands/cli.d.ts.map +1 -1
  54. package/ccw/dist/commands/cli.js +23 -2
  55. package/ccw/dist/commands/cli.js.map +1 -1
  56. package/ccw/dist/core/routes/help-routes.d.ts.map +1 -1
  57. package/ccw/dist/core/routes/help-routes.js +51 -1
  58. package/ccw/dist/core/routes/help-routes.js.map +1 -1
  59. package/ccw/dist/tools/cli-executor-core.d.ts.map +1 -1
  60. package/ccw/dist/tools/cli-executor-core.js +5 -3
  61. package/ccw/dist/tools/cli-executor-core.js.map +1 -1
  62. package/ccw/dist/tools/cli-executor-utils.d.ts +1 -0
  63. package/ccw/dist/tools/cli-executor-utils.d.ts.map +1 -1
  64. package/ccw/dist/tools/cli-executor-utils.js +9 -1
  65. package/ccw/dist/tools/cli-executor-utils.js.map +1 -1
  66. package/ccw/src/commands/cli.ts +26 -2
  67. package/ccw/src/core/routes/help-routes.ts +60 -1
  68. package/ccw/src/templates/dashboard-js/views/help.js +423 -1
  69. package/ccw/src/tools/cli-executor-core.ts +6 -3
  70. package/ccw/src/tools/cli-executor-utils.ts +11 -2
  71. package/package.json +1 -1
@@ -0,0 +1,833 @@
1
+ {
2
+ "general": {
3
+ "_root": [
4
+ {
5
+ "name": "ccw-coordinator",
6
+ "command": "/ccw-coordinator",
7
+ "description": "Command orchestration tool - analyze requirements, recommend chain, execute sequentially with state persistence",
8
+ "arguments": "[task description]",
9
+ "category": "general",
10
+ "subcategory": null,
11
+ "usage_scenario": "general",
12
+ "difficulty": "Intermediate",
13
+ "source": "../../../commands/ccw-coordinator.md"
14
+ },
15
+ {
16
+ "name": "ccw-debug",
17
+ "command": "/ccw-debug",
18
+ "description": "Aggregated debug command - combines debugging diagnostics and test verification in a synergistic workflow supporting cli-quick / debug-first / test-first / bidirectional-verification modes",
19
+ "arguments": "[--mode cli|debug|test|bidirectional] [--yes|-y] [--hotfix] \\\"bug description or error message\\",
20
+ "category": "general",
21
+ "subcategory": null,
22
+ "usage_scenario": "general",
23
+ "difficulty": "Intermediate",
24
+ "source": "../../../commands/ccw-debug.md"
25
+ },
26
+ {
27
+ "name": "ccw",
28
+ "command": "/ccw",
29
+ "description": "Main workflow orchestrator - analyze intent, select workflow, execute command chain in main process",
30
+ "arguments": "\\\"task description\\",
31
+ "category": "general",
32
+ "subcategory": null,
33
+ "usage_scenario": "general",
34
+ "difficulty": "Intermediate",
35
+ "source": "../../../commands/ccw.md"
36
+ },
37
+ {
38
+ "name": "ccw view",
39
+ "command": "/ccw view",
40
+ "description": "Dashboard - Open CCW workflow dashboard for managing tasks and sessions",
41
+ "arguments": "",
42
+ "category": "general",
43
+ "subcategory": null,
44
+ "usage_scenario": "general",
45
+ "difficulty": "Intermediate",
46
+ "source": "../../../commands/view.md"
47
+ }
48
+ ]
49
+ },
50
+ "cli": {
51
+ "_root": [
52
+ {
53
+ "name": "cli-init",
54
+ "command": "/cli:cli-init",
55
+ "description": "Generate .gemini/ and .qwen/ config directories with settings.json and ignore files based on workspace technology detection",
56
+ "arguments": "[--tool gemini|qwen|all] [--output path] [--preview]",
57
+ "category": "cli",
58
+ "subcategory": null,
59
+ "usage_scenario": "general",
60
+ "difficulty": "Intermediate",
61
+ "source": "../../../commands/cli/cli-init.md"
62
+ },
63
+ {
64
+ "name": "codex-review",
65
+ "command": "/cli:codex-review",
66
+ "description": "Interactive code review using Codex CLI via ccw endpoint with configurable review target, model, and custom instructions",
67
+ "arguments": "[--uncommitted|--base <branch>|--commit <sha>] [--model <model>] [--title <title>] [prompt]",
68
+ "category": "cli",
69
+ "subcategory": null,
70
+ "usage_scenario": "analysis",
71
+ "difficulty": "Intermediate",
72
+ "source": "../../../commands/cli/codex-review.md"
73
+ }
74
+ ]
75
+ },
76
+ "issue": {
77
+ "_root": [
78
+ {
79
+ "name": "convert-to-plan",
80
+ "command": "/issue:convert-to-plan",
81
+ "description": "Convert planning artifacts (lite-plan, workflow session, markdown) to issue solutions",
82
+ "arguments": "[-y|--yes] [--issue <id>] [--supplement] <SOURCE>",
83
+ "category": "issue",
84
+ "subcategory": null,
85
+ "usage_scenario": "planning",
86
+ "difficulty": "Intermediate",
87
+ "source": "../../../commands/issue/convert-to-plan.md"
88
+ },
89
+ {
90
+ "name": "issue:discover-by-prompt",
91
+ "command": "/issue:discover-by-prompt",
92
+ "description": "Discover issues from user prompt with Gemini-planned iterative multi-agent exploration. Uses ACE semantic search for context gathering and supports cross-module comparison (e.g., frontend vs backend API contracts).",
93
+ "arguments": "[-y|--yes] <prompt> [--scope=src/**] [--depth=standard|deep] [--max-iterations=5]",
94
+ "category": "issue",
95
+ "subcategory": null,
96
+ "usage_scenario": "general",
97
+ "difficulty": "Intermediate",
98
+ "source": "../../../commands/issue/discover-by-prompt.md"
99
+ },
100
+ {
101
+ "name": "issue:discover",
102
+ "command": "/issue:discover",
103
+ "description": "Discover potential issues from multiple perspectives (bug, UX, test, quality, security, performance, maintainability, best-practices) using CLI explore. Supports Exa external research for security and best-practices perspectives.",
104
+ "arguments": "[-y|--yes] <path-pattern> [--perspectives=bug,ux,...] [--external]",
105
+ "category": "issue",
106
+ "subcategory": null,
107
+ "usage_scenario": "general",
108
+ "difficulty": "Intermediate",
109
+ "source": "../../../commands/issue/discover.md"
110
+ },
111
+ {
112
+ "name": "execute",
113
+ "command": "/issue:execute",
114
+ "description": "Execute queue with DAG-based parallel orchestration (one commit per solution)",
115
+ "arguments": "[-y|--yes] --queue <queue-id> [--worktree [<existing-path>]]",
116
+ "category": "issue",
117
+ "subcategory": null,
118
+ "usage_scenario": "implementation",
119
+ "difficulty": "Intermediate",
120
+ "source": "../../../commands/issue/execute.md"
121
+ },
122
+ {
123
+ "name": "from-brainstorm",
124
+ "command": "/issue:from-brainstorm",
125
+ "description": "Convert brainstorm session ideas into issue with executable solution for parallel-dev-cycle",
126
+ "arguments": "SESSION=\\\"<session-id>\\\" [--idea=<index>] [--auto] [-y|--yes]",
127
+ "category": "issue",
128
+ "subcategory": null,
129
+ "usage_scenario": "planning",
130
+ "difficulty": "Intermediate",
131
+ "source": "../../../commands/issue/from-brainstorm.md"
132
+ },
133
+ {
134
+ "name": "new",
135
+ "command": "/issue:new",
136
+ "description": "Create structured issue from GitHub URL or text description",
137
+ "arguments": "[-y|--yes] <github-url | text-description> [--priority 1-5]",
138
+ "category": "issue",
139
+ "subcategory": null,
140
+ "usage_scenario": "general",
141
+ "difficulty": "Intermediate",
142
+ "source": "../../../commands/issue/new.md"
143
+ },
144
+ {
145
+ "name": "plan",
146
+ "command": "/issue:plan",
147
+ "description": "Batch plan issue resolution using issue-plan-agent (explore + plan closed-loop)",
148
+ "arguments": "[-y|--yes] --all-pending <issue-id>[,<issue-id>,...] [--batch-size 3]",
149
+ "category": "issue",
150
+ "subcategory": null,
151
+ "usage_scenario": "planning",
152
+ "difficulty": "Intermediate",
153
+ "source": "../../../commands/issue/plan.md"
154
+ },
155
+ {
156
+ "name": "queue",
157
+ "command": "/issue:queue",
158
+ "description": "Form execution queue from bound solutions using issue-queue-agent (solution-level)",
159
+ "arguments": "[-y|--yes] [--queues <n>] [--issue <id>]",
160
+ "category": "issue",
161
+ "subcategory": null,
162
+ "usage_scenario": "general",
163
+ "difficulty": "Intermediate",
164
+ "source": "../../../commands/issue/queue.md"
165
+ }
166
+ ]
167
+ },
168
+ "memory": {
169
+ "_root": [
170
+ {
171
+ "name": "compact",
172
+ "command": "/memory:compact",
173
+ "description": "Compact current session memory into structured text for session recovery, extracting objective/plan/files/decisions/constraints/state, and save via MCP core_memory tool",
174
+ "arguments": "[optional: session description]",
175
+ "category": "memory",
176
+ "subcategory": null,
177
+ "usage_scenario": "general",
178
+ "difficulty": "Intermediate",
179
+ "source": "../../../commands/memory/compact.md"
180
+ },
181
+ {
182
+ "name": "docs-full-cli",
183
+ "command": "/memory:docs-full-cli",
184
+ "description": "Generate full project documentation using CLI execution (Layer 3→1) with batched agents (4 modules/agent) and gemini→qwen→codex fallback, <20 modules uses direct parallel",
185
+ "arguments": "[path] [--tool <gemini|qwen|codex>]",
186
+ "category": "memory",
187
+ "subcategory": null,
188
+ "usage_scenario": "documentation",
189
+ "difficulty": "Intermediate",
190
+ "source": "../../../commands/memory/docs-full-cli.md"
191
+ },
192
+ {
193
+ "name": "docs-related-cli",
194
+ "command": "/memory:docs-related-cli",
195
+ "description": "Generate/update documentation for git-changed modules using CLI execution with batched agents (4 modules/agent) and gemini→qwen→codex fallback, <15 modules uses direct parallel",
196
+ "arguments": "[--tool <gemini|qwen|codex>]",
197
+ "category": "memory",
198
+ "subcategory": null,
199
+ "usage_scenario": "documentation",
200
+ "difficulty": "Intermediate",
201
+ "source": "../../../commands/memory/docs-related-cli.md"
202
+ },
203
+ {
204
+ "name": "load",
205
+ "command": "/memory:load",
206
+ "description": "Delegate to universal-executor agent to analyze project via Gemini/Qwen CLI and return JSON core content package for task context",
207
+ "arguments": "[--tool gemini|qwen] \\\"task context description\\",
208
+ "category": "memory",
209
+ "subcategory": null,
210
+ "usage_scenario": "general",
211
+ "difficulty": "Intermediate",
212
+ "source": "../../../commands/memory/load.md"
213
+ },
214
+ {
215
+ "name": "style-skill-memory",
216
+ "command": "/memory:style-skill-memory",
217
+ "description": "Generate SKILL memory package from style reference for easy loading and consistent design system usage",
218
+ "arguments": "[package-name] [--regenerate]",
219
+ "category": "memory",
220
+ "subcategory": null,
221
+ "usage_scenario": "documentation",
222
+ "difficulty": "Intermediate",
223
+ "source": "../../../commands/memory/style-skill-memory.md"
224
+ },
225
+ {
226
+ "name": "tips",
227
+ "command": "/memory:tips",
228
+ "description": "Quick note-taking command to capture ideas, snippets, reminders, and insights for later reference",
229
+ "arguments": "<note content> [--tag <tag1,tag2>] [--context <context>]",
230
+ "category": "memory",
231
+ "subcategory": null,
232
+ "usage_scenario": "general",
233
+ "difficulty": "Intermediate",
234
+ "source": "../../../commands/memory/tips.md"
235
+ },
236
+ {
237
+ "name": "update-full",
238
+ "command": "/memory:update-full",
239
+ "description": "Update all CLAUDE.md files using layer-based execution (Layer 3→1) with batched agents (4 modules/agent) and gemini→qwen→codex fallback, <20 modules uses direct parallel",
240
+ "arguments": "[--tool gemini|qwen|codex] [--path <directory>]",
241
+ "category": "memory",
242
+ "subcategory": null,
243
+ "usage_scenario": "general",
244
+ "difficulty": "Intermediate",
245
+ "source": "../../../commands/memory/update-full.md"
246
+ },
247
+ {
248
+ "name": "update-related",
249
+ "command": "/memory:update-related",
250
+ "description": "Update CLAUDE.md for git-changed modules using batched agent execution (4 modules/agent) with gemini→qwen→codex fallback, <15 modules uses direct execution",
251
+ "arguments": "[--tool gemini|qwen|codex]",
252
+ "category": "memory",
253
+ "subcategory": null,
254
+ "usage_scenario": "general",
255
+ "difficulty": "Intermediate",
256
+ "source": "../../../commands/memory/update-related.md"
257
+ }
258
+ ]
259
+ },
260
+ "workflow": {
261
+ "_root": [
262
+ {
263
+ "name": "analyze-with-file",
264
+ "command": "/workflow:analyze-with-file",
265
+ "description": "Interactive collaborative analysis with documented discussions, CLI-assisted exploration, and evolving understanding",
266
+ "arguments": "[-y|--yes] [-c|--continue] \\\"topic or question\\",
267
+ "category": "workflow",
268
+ "subcategory": null,
269
+ "usage_scenario": "analysis",
270
+ "difficulty": "Beginner",
271
+ "source": "../../../commands/workflow/analyze-with-file.md"
272
+ },
273
+ {
274
+ "name": "brainstorm-with-file",
275
+ "command": "/workflow:brainstorm-with-file",
276
+ "description": "Interactive brainstorming with multi-CLI collaboration, idea expansion, and documented thought evolution",
277
+ "arguments": "[-y|--yes] [-c|--continue] [-m|--mode creative|structured] \\\"idea or topic\\",
278
+ "category": "workflow",
279
+ "subcategory": null,
280
+ "usage_scenario": "planning",
281
+ "difficulty": "Intermediate",
282
+ "source": "../../../commands/workflow/brainstorm-with-file.md"
283
+ },
284
+ {
285
+ "name": "clean",
286
+ "command": "/workflow:clean",
287
+ "description": "Intelligent code cleanup with mainline detection, stale artifact discovery, and safe execution",
288
+ "arguments": "[-y|--yes] [--dry-run] [\\\"focus area\\\"]",
289
+ "category": "workflow",
290
+ "subcategory": null,
291
+ "usage_scenario": "general",
292
+ "difficulty": "Intermediate",
293
+ "source": "../../../commands/workflow/clean.md"
294
+ },
295
+ {
296
+ "name": "debug-with-file",
297
+ "command": "/workflow:debug-with-file",
298
+ "description": "Interactive hypothesis-driven debugging with documented exploration, understanding evolution, and Gemini-assisted correction",
299
+ "arguments": "[-y|--yes] \\\"bug description or error message\\",
300
+ "category": "workflow",
301
+ "subcategory": null,
302
+ "usage_scenario": "general",
303
+ "difficulty": "Intermediate",
304
+ "source": "../../../commands/workflow/debug-with-file.md"
305
+ },
306
+ {
307
+ "name": "execute",
308
+ "command": "/workflow:execute",
309
+ "description": "Coordinate agent execution for workflow tasks with automatic session discovery, parallel task processing, and status tracking",
310
+ "arguments": "[-y|--yes] [--resume-session=\\\"session-id\\\"]",
311
+ "category": "workflow",
312
+ "subcategory": null,
313
+ "usage_scenario": "implementation",
314
+ "difficulty": "Intermediate",
315
+ "source": "../../../commands/workflow/execute.md"
316
+ },
317
+ {
318
+ "name": "init",
319
+ "command": "/workflow:init",
320
+ "description": "Initialize project-level state with intelligent project analysis using cli-explore-agent",
321
+ "arguments": "[--regenerate]",
322
+ "category": "workflow",
323
+ "subcategory": null,
324
+ "usage_scenario": "general",
325
+ "difficulty": "Intermediate",
326
+ "source": "../../../commands/workflow/init.md"
327
+ },
328
+ {
329
+ "name": "lite-execute",
330
+ "command": "/workflow:lite-execute",
331
+ "description": "Execute tasks based on in-memory plan, prompt description, or file content",
332
+ "arguments": "[-y|--yes] [--in-memory] [\\\"task description\\\"|file-path]",
333
+ "category": "workflow",
334
+ "subcategory": null,
335
+ "usage_scenario": "implementation",
336
+ "difficulty": "Intermediate",
337
+ "source": "../../../commands/workflow/lite-execute.md"
338
+ },
339
+ {
340
+ "name": "lite-fix",
341
+ "command": "/workflow:lite-fix",
342
+ "description": "Lightweight bug diagnosis and fix workflow with intelligent severity assessment and optional hotfix mode for production incidents",
343
+ "arguments": "[-y|--yes] [--hotfix] \\\"bug description or issue reference\\",
344
+ "category": "workflow",
345
+ "subcategory": null,
346
+ "usage_scenario": "general",
347
+ "difficulty": "Intermediate",
348
+ "source": "../../../commands/workflow/lite-fix.md"
349
+ },
350
+ {
351
+ "name": "workflow:lite-lite-lite",
352
+ "command": "/workflow:lite-lite-lite",
353
+ "description": "Ultra-lightweight multi-tool analysis and direct execution. No artifacts for simple tasks; auto-creates planning docs in .workflow/.scratchpad/ for complex tasks. Auto tool selection based on task analysis, user-driven iteration via AskUser.",
354
+ "arguments": "[-y|--yes] <task description>",
355
+ "category": "workflow",
356
+ "subcategory": null,
357
+ "usage_scenario": "general",
358
+ "difficulty": "Intermediate",
359
+ "source": "../../../commands/workflow/lite-lite-lite.md"
360
+ },
361
+ {
362
+ "name": "lite-plan",
363
+ "command": "/workflow:lite-plan",
364
+ "description": "Lightweight interactive planning workflow with in-memory planning, code exploration, and execution execute to lite-execute after user confirmation",
365
+ "arguments": "[-y|--yes] [-e|--explore] \\\"task description\\\"|file.md",
366
+ "category": "workflow",
367
+ "subcategory": null,
368
+ "usage_scenario": "planning",
369
+ "difficulty": "Intermediate",
370
+ "source": "../../../commands/workflow/lite-plan.md"
371
+ },
372
+ {
373
+ "name": "workflow:multi-cli-plan",
374
+ "command": "/workflow:multi-cli-plan",
375
+ "description": "Multi-CLI collaborative planning workflow with ACE context gathering and iterative cross-verification. Uses cli-discuss-agent for Gemini+Codex+Claude analysis to converge on optimal execution plan.",
376
+ "arguments": "[-y|--yes] <task description> [--max-rounds=3] [--tools=gemini,codex] [--mode=parallel|serial]",
377
+ "category": "workflow",
378
+ "subcategory": null,
379
+ "usage_scenario": "planning",
380
+ "difficulty": "Intermediate",
381
+ "source": "../../../commands/workflow/multi-cli-plan.md"
382
+ },
383
+ {
384
+ "name": "plan-verify",
385
+ "command": "/workflow:plan-verify",
386
+ "description": "Perform READ-ONLY verification analysis between IMPL_PLAN.md, task JSONs, and brainstorming artifacts. Generates structured report with quality gate recommendation. Does NOT modify any files.",
387
+ "arguments": "[optional: --session session-id]",
388
+ "category": "workflow",
389
+ "subcategory": null,
390
+ "usage_scenario": "planning",
391
+ "difficulty": "Intermediate",
392
+ "source": "../../../commands/workflow/plan-verify.md"
393
+ },
394
+ {
395
+ "name": "plan",
396
+ "command": "/workflow:plan",
397
+ "description": "5-phase planning workflow with action-planning-agent task generation, outputs IMPL_PLAN.md and task JSONs",
398
+ "arguments": "[-y|--yes] \\\"text description\\\"|file.md",
399
+ "category": "workflow",
400
+ "subcategory": null,
401
+ "usage_scenario": "planning",
402
+ "difficulty": "Intermediate",
403
+ "source": "../../../commands/workflow/plan.md"
404
+ },
405
+ {
406
+ "name": "replan",
407
+ "command": "/workflow:replan",
408
+ "description": "Interactive workflow replanning with session-level artifact updates and boundary clarification through guided questioning",
409
+ "arguments": "[-y|--yes] [--session session-id] [task-id] \\\"requirements\\\"|file.md [--interactive]",
410
+ "category": "workflow",
411
+ "subcategory": null,
412
+ "usage_scenario": "planning",
413
+ "difficulty": "Intermediate",
414
+ "source": "../../../commands/workflow/replan.md"
415
+ },
416
+ {
417
+ "name": "review-cycle-fix",
418
+ "command": "/workflow:review-cycle-fix",
419
+ "description": "Automated fixing of code review findings with AI-powered planning and coordinated execution. Uses intelligent grouping, multi-stage timeline coordination, and test-driven verification.",
420
+ "arguments": "<export-file|review-dir> [--resume] [--max-iterations=N]",
421
+ "category": "workflow",
422
+ "subcategory": null,
423
+ "usage_scenario": "analysis",
424
+ "difficulty": "Intermediate",
425
+ "source": "../../../commands/workflow/review-cycle-fix.md"
426
+ },
427
+ {
428
+ "name": "review-module-cycle",
429
+ "command": "/workflow:review-module-cycle",
430
+ "description": "Independent multi-dimensional code review for specified modules/files. Analyzes specific code paths across 7 dimensions with hybrid parallel-iterative execution, independent of workflow sessions.",
431
+ "arguments": "<path-pattern> [--dimensions=security,architecture,...] [--max-iterations=N]",
432
+ "category": "workflow",
433
+ "subcategory": null,
434
+ "usage_scenario": "analysis",
435
+ "difficulty": "Intermediate",
436
+ "source": "../../../commands/workflow/review-module-cycle.md"
437
+ },
438
+ {
439
+ "name": "review-session-cycle",
440
+ "command": "/workflow:review-session-cycle",
441
+ "description": "Session-based comprehensive multi-dimensional code review. Analyzes git changes from workflow session across 7 dimensions with hybrid parallel-iterative execution, aggregates findings, and performs focused deep-dives on critical issues until quality gates met.",
442
+ "arguments": "[session-id] [--dimensions=security,architecture,...] [--max-iterations=N]",
443
+ "category": "workflow",
444
+ "subcategory": null,
445
+ "usage_scenario": "session-management",
446
+ "difficulty": "Intermediate",
447
+ "source": "../../../commands/workflow/review-session-cycle.md"
448
+ },
449
+ {
450
+ "name": "review",
451
+ "command": "/workflow:review",
452
+ "description": "Post-implementation review with specialized types (security/architecture/action-items/quality) using analysis agents and Gemini",
453
+ "arguments": "[--type=security|architecture|action-items|quality] [--archived] [optional: session-id]",
454
+ "category": "workflow",
455
+ "subcategory": null,
456
+ "usage_scenario": "analysis",
457
+ "difficulty": "Intermediate",
458
+ "source": "../../../commands/workflow/review.md"
459
+ },
460
+ {
461
+ "name": "tdd-plan",
462
+ "command": "/workflow:tdd-plan",
463
+ "description": "TDD workflow planning with Red-Green-Refactor task chain generation, test-first development structure, and cycle tracking",
464
+ "arguments": "\\\"feature description\\\"|file.md",
465
+ "category": "workflow",
466
+ "subcategory": null,
467
+ "usage_scenario": "planning",
468
+ "difficulty": "Advanced",
469
+ "source": "../../../commands/workflow/tdd-plan.md"
470
+ },
471
+ {
472
+ "name": "tdd-verify",
473
+ "command": "/workflow:tdd-verify",
474
+ "description": "Verify TDD workflow compliance against Red-Green-Refactor cycles. Generates quality report with coverage analysis and quality gate recommendation. Orchestrates sub-commands for comprehensive validation.",
475
+ "arguments": "[optional: --session WFS-session-id]",
476
+ "category": "workflow",
477
+ "subcategory": null,
478
+ "usage_scenario": "testing",
479
+ "difficulty": "Advanced",
480
+ "source": "../../../commands/workflow/tdd-verify.md"
481
+ },
482
+ {
483
+ "name": "test-cycle-execute",
484
+ "command": "/workflow:test-cycle-execute",
485
+ "description": "Execute test-fix workflow with dynamic task generation and iterative fix cycles until test pass rate >= 95% or max iterations reached. Uses @cli-planning-agent for failure analysis and task generation.",
486
+ "arguments": "[--resume-session=\\\"session-id\\\"] [--max-iterations=N]",
487
+ "category": "workflow",
488
+ "subcategory": null,
489
+ "usage_scenario": "implementation",
490
+ "difficulty": "Intermediate",
491
+ "source": "../../../commands/workflow/test-cycle-execute.md"
492
+ },
493
+ {
494
+ "name": "test-fix-gen",
495
+ "command": "/workflow:test-fix-gen",
496
+ "description": "Create test-fix workflow session from session ID, description, or file path with test strategy generation and task planning",
497
+ "arguments": "(source-session-id | \\\"feature description\\\" | /path/to/file.md)",
498
+ "category": "workflow",
499
+ "subcategory": null,
500
+ "usage_scenario": "testing",
501
+ "difficulty": "Intermediate",
502
+ "source": "../../../commands/workflow/test-fix-gen.md"
503
+ },
504
+ {
505
+ "name": "test-gen",
506
+ "command": "/workflow:test-gen",
507
+ "description": "Create independent test-fix workflow session from completed implementation session, analyzes code to generate test tasks",
508
+ "arguments": "source-session-id",
509
+ "category": "workflow",
510
+ "subcategory": null,
511
+ "usage_scenario": "testing",
512
+ "difficulty": "Intermediate",
513
+ "source": "../../../commands/workflow/test-gen.md"
514
+ },
515
+ {
516
+ "name": "unified-execute-with-file",
517
+ "command": "/workflow:unified-execute-with-file",
518
+ "description": "Universal execution engine for consuming any planning/brainstorm/analysis output with minimal progress tracking, multi-agent coordination, and incremental execution",
519
+ "arguments": "[-y|--yes] [-p|--plan <path>] [-m|--mode sequential|parallel] [\\\"execution context or task name\\\"]",
520
+ "category": "workflow",
521
+ "subcategory": null,
522
+ "usage_scenario": "implementation",
523
+ "difficulty": "Intermediate",
524
+ "source": "../../../commands/workflow/unified-execute-with-file.md"
525
+ }
526
+ ],
527
+ "brainstorm": [
528
+ {
529
+ "name": "artifacts",
530
+ "command": "/workflow:brainstorm:artifacts",
531
+ "description": "Interactive clarification generating confirmed guidance specification through role-based analysis and synthesis",
532
+ "arguments": "[-y|--yes] topic or challenge description [--count N]",
533
+ "category": "workflow",
534
+ "subcategory": "brainstorm",
535
+ "usage_scenario": "general",
536
+ "difficulty": "Intermediate",
537
+ "source": "../../../commands/workflow/brainstorm/artifacts.md"
538
+ },
539
+ {
540
+ "name": "auto-parallel",
541
+ "command": "/workflow:brainstorm:auto-parallel",
542
+ "description": "Parallel brainstorming automation with dynamic role selection and concurrent execution across multiple perspectives",
543
+ "arguments": "[-y|--yes] topic or challenge description [--count N]",
544
+ "category": "workflow",
545
+ "subcategory": "brainstorm",
546
+ "usage_scenario": "general",
547
+ "difficulty": "Advanced",
548
+ "source": "../../../commands/workflow/brainstorm/auto-parallel.md"
549
+ },
550
+ {
551
+ "name": "role-analysis",
552
+ "command": "/workflow:brainstorm:role-analysis",
553
+ "description": "Unified role-specific analysis generation with interactive context gathering and incremental updates",
554
+ "arguments": "[role-name] [--session session-id] [--update] [--include-questions] [--skip-questions]",
555
+ "category": "workflow",
556
+ "subcategory": "brainstorm",
557
+ "usage_scenario": "general",
558
+ "difficulty": "Intermediate",
559
+ "source": "../../../commands/workflow/brainstorm/role-analysis.md"
560
+ },
561
+ {
562
+ "name": "synthesis",
563
+ "command": "/workflow:brainstorm:synthesis",
564
+ "description": "Clarify and refine role analyses through intelligent Q&A and targeted updates with synthesis agent",
565
+ "arguments": "[-y|--yes] [optional: --session session-id]",
566
+ "category": "workflow",
567
+ "subcategory": "brainstorm",
568
+ "usage_scenario": "general",
569
+ "difficulty": "Advanced",
570
+ "source": "../../../commands/workflow/brainstorm/synthesis.md"
571
+ }
572
+ ],
573
+ "session": [
574
+ {
575
+ "name": "complete",
576
+ "command": "/workflow:session:complete",
577
+ "description": "Mark active workflow session as complete, archive with lessons learned, update manifest, remove active flag",
578
+ "arguments": "[-y|--yes] [--detailed]",
579
+ "category": "workflow",
580
+ "subcategory": "session",
581
+ "usage_scenario": "session-management",
582
+ "difficulty": "Intermediate",
583
+ "source": "../../../commands/workflow/session/complete.md"
584
+ },
585
+ {
586
+ "name": "list",
587
+ "command": "/workflow:session:list",
588
+ "description": "List all workflow sessions with status filtering, shows session metadata and progress information",
589
+ "arguments": "",
590
+ "category": "workflow",
591
+ "subcategory": "session",
592
+ "usage_scenario": "general",
593
+ "difficulty": "Beginner",
594
+ "source": "../../../commands/workflow/session/list.md"
595
+ },
596
+ {
597
+ "name": "resume",
598
+ "command": "/workflow:session:resume",
599
+ "description": "Resume the most recently paused workflow session with automatic session discovery and status update",
600
+ "arguments": "",
601
+ "category": "workflow",
602
+ "subcategory": "session",
603
+ "usage_scenario": "session-management",
604
+ "difficulty": "Intermediate",
605
+ "source": "../../../commands/workflow/session/resume.md"
606
+ },
607
+ {
608
+ "name": "solidify",
609
+ "command": "/workflow:session:solidify",
610
+ "description": "Crystallize session learnings and user-defined constraints into permanent project guidelines",
611
+ "arguments": "[-y|--yes] [--type <convention|constraint|learning>] [--category <category>] \\\"rule or insight\\",
612
+ "category": "workflow",
613
+ "subcategory": "session",
614
+ "usage_scenario": "general",
615
+ "difficulty": "Intermediate",
616
+ "source": "../../../commands/workflow/session/solidify.md"
617
+ },
618
+ {
619
+ "name": "start",
620
+ "command": "/workflow:session:start",
621
+ "description": "Discover existing sessions or start new workflow session with intelligent session management and conflict detection",
622
+ "arguments": "[--type <workflow|review|tdd|test|docs>] [--auto|--new] [optional: task description for new session]",
623
+ "category": "workflow",
624
+ "subcategory": "session",
625
+ "usage_scenario": "general",
626
+ "difficulty": "Intermediate",
627
+ "source": "../../../commands/workflow/session/start.md"
628
+ }
629
+ ],
630
+ "tools": [
631
+ {
632
+ "name": "conflict-resolution",
633
+ "command": "/workflow:tools:conflict-resolution",
634
+ "description": "Detect and resolve conflicts between plan and existing codebase using CLI-powered analysis with Gemini/Qwen",
635
+ "arguments": "[-y|--yes] --session WFS-session-id --context path/to/context-package.json",
636
+ "category": "workflow",
637
+ "subcategory": "tools",
638
+ "usage_scenario": "general",
639
+ "difficulty": "Advanced",
640
+ "source": "../../../commands/workflow/tools/conflict-resolution.md"
641
+ },
642
+ {
643
+ "name": "gather",
644
+ "command": "/workflow:tools:gather",
645
+ "description": "Intelligently collect project context using context-search-agent based on task description, packages into standardized JSON",
646
+ "arguments": "--session WFS-session-id \\\"task description\\",
647
+ "category": "workflow",
648
+ "subcategory": "tools",
649
+ "usage_scenario": "general",
650
+ "difficulty": "Intermediate",
651
+ "source": "../../../commands/workflow/tools/context-gather.md"
652
+ },
653
+ {
654
+ "name": "task-generate-agent",
655
+ "command": "/workflow:tools:task-generate-agent",
656
+ "description": "Generate implementation plan documents (IMPL_PLAN.md, task JSONs, TODO_LIST.md) using action-planning-agent - produces planning artifacts, does NOT execute code implementation",
657
+ "arguments": "[-y|--yes] --session WFS-session-id",
658
+ "category": "workflow",
659
+ "subcategory": "tools",
660
+ "usage_scenario": "implementation",
661
+ "difficulty": "Advanced",
662
+ "source": "../../../commands/workflow/tools/task-generate-agent.md"
663
+ },
664
+ {
665
+ "name": "task-generate-tdd",
666
+ "command": "/workflow:tools:task-generate-tdd",
667
+ "description": "Autonomous TDD task generation using action-planning-agent with Red-Green-Refactor cycles, test-first structure, and cycle validation",
668
+ "arguments": "[-y|--yes] --session WFS-session-id",
669
+ "category": "workflow",
670
+ "subcategory": "tools",
671
+ "usage_scenario": "implementation",
672
+ "difficulty": "Advanced",
673
+ "source": "../../../commands/workflow/tools/task-generate-tdd.md"
674
+ },
675
+ {
676
+ "name": "tdd-coverage-analysis",
677
+ "command": "/workflow:tools:tdd-coverage-analysis",
678
+ "description": "Analyze test coverage and TDD cycle execution with Red-Green-Refactor compliance verification",
679
+ "arguments": "--session WFS-session-id",
680
+ "category": "workflow",
681
+ "subcategory": "tools",
682
+ "usage_scenario": "testing",
683
+ "difficulty": "Advanced",
684
+ "source": "../../../commands/workflow/tools/tdd-coverage-analysis.md"
685
+ },
686
+ {
687
+ "name": "test-concept-enhanced",
688
+ "command": "/workflow:tools:test-concept-enhanced",
689
+ "description": "Coordinate test analysis workflow using cli-execution-agent to generate test strategy via Gemini",
690
+ "arguments": "--session WFS-test-session-id --context path/to/test-context-package.json",
691
+ "category": "workflow",
692
+ "subcategory": "tools",
693
+ "usage_scenario": "testing",
694
+ "difficulty": "Intermediate",
695
+ "source": "../../../commands/workflow/tools/test-concept-enhanced.md"
696
+ },
697
+ {
698
+ "name": "test-context-gather",
699
+ "command": "/workflow:tools:test-context-gather",
700
+ "description": "Collect test coverage context using test-context-search-agent and package into standardized test-context JSON",
701
+ "arguments": "--session WFS-test-session-id",
702
+ "category": "workflow",
703
+ "subcategory": "tools",
704
+ "usage_scenario": "testing",
705
+ "difficulty": "Intermediate",
706
+ "source": "../../../commands/workflow/tools/test-context-gather.md"
707
+ },
708
+ {
709
+ "name": "test-task-generate",
710
+ "command": "/workflow:tools:test-task-generate",
711
+ "description": "Generate test planning documents (IMPL_PLAN.md, test task JSONs, TODO_LIST.md) using action-planning-agent - produces test planning artifacts, does NOT execute tests",
712
+ "arguments": "--session WFS-test-session-id",
713
+ "category": "workflow",
714
+ "subcategory": "tools",
715
+ "usage_scenario": "implementation",
716
+ "difficulty": "Intermediate",
717
+ "source": "../../../commands/workflow/tools/test-task-generate.md"
718
+ }
719
+ ],
720
+ "ui-design": [
721
+ {
722
+ "name": "animation-extract",
723
+ "command": "/workflow:ui-design:animation-extract",
724
+ "description": "Extract animation and transition patterns from prompt inference and image references for design system documentation",
725
+ "arguments": "[-y|--yes] [--design-id <id>] [--session <id>] [--images \"<glob>\"] [--focus \"<types>\"] [--interactive] [--refine]",
726
+ "category": "workflow",
727
+ "subcategory": "ui-design",
728
+ "usage_scenario": "general",
729
+ "difficulty": "Intermediate",
730
+ "source": "../../../commands/workflow/ui-design/animation-extract.md"
731
+ },
732
+ {
733
+ "name": "workflow:ui-design:codify-style",
734
+ "command": "/workflow:ui-design:codify-style",
735
+ "description": "Orchestrator to extract styles from code and generate shareable reference package with preview (automatic file discovery)",
736
+ "arguments": "<path> [--package-name <name>] [--output-dir <path>] [--overwrite]",
737
+ "category": "workflow",
738
+ "subcategory": "ui-design",
739
+ "usage_scenario": "planning",
740
+ "difficulty": "Intermediate",
741
+ "source": "../../../commands/workflow/ui-design/codify-style.md"
742
+ },
743
+ {
744
+ "name": "design-sync",
745
+ "command": "/workflow:ui-design:design-sync",
746
+ "description": "Synchronize finalized design system references to brainstorming artifacts, preparing them for /workflow:plan consumption",
747
+ "arguments": "--session <session_id> [--selected-prototypes \"<list>\"]",
748
+ "category": "workflow",
749
+ "subcategory": "ui-design",
750
+ "usage_scenario": "planning",
751
+ "difficulty": "Intermediate",
752
+ "source": "../../../commands/workflow/ui-design/design-sync.md"
753
+ },
754
+ {
755
+ "name": "explore-auto",
756
+ "command": "/workflow:ui-design:explore-auto",
757
+ "description": "Interactive exploratory UI design workflow with style-centric batch generation, creates design variants from prompts/images with parallel execution and user selection",
758
+ "arguments": "[--input \"<value>\"] [--targets \"<list>\"] [--target-type \"page|component\"] [--session <id>] [--style-variants <count>] [--layout-variants <count>]",
759
+ "category": "workflow",
760
+ "subcategory": "ui-design",
761
+ "usage_scenario": "general",
762
+ "difficulty": "Intermediate",
763
+ "source": "../../../commands/workflow/ui-design/explore-auto.md"
764
+ },
765
+ {
766
+ "name": "generate",
767
+ "command": "/workflow:ui-design:generate",
768
+ "description": "Assemble UI prototypes by combining layout templates with design tokens (default animation support), pure assembler without new content generation",
769
+ "arguments": "[--design-id <id>] [--session <id>]",
770
+ "category": "workflow",
771
+ "subcategory": "ui-design",
772
+ "usage_scenario": "implementation",
773
+ "difficulty": "Intermediate",
774
+ "source": "../../../commands/workflow/ui-design/generate.md"
775
+ },
776
+ {
777
+ "name": "imitate-auto",
778
+ "command": "/workflow:ui-design:imitate-auto",
779
+ "description": "UI design workflow with direct code/image input for design token extraction and prototype generation",
780
+ "arguments": "[--input \"<value>\"] [--session <id>]",
781
+ "category": "workflow",
782
+ "subcategory": "ui-design",
783
+ "usage_scenario": "general",
784
+ "difficulty": "Intermediate",
785
+ "source": "../../../commands/workflow/ui-design/imitate-auto.md"
786
+ },
787
+ {
788
+ "name": "workflow:ui-design:import-from-code",
789
+ "command": "/workflow:ui-design:import-from-code",
790
+ "description": "Import design system from code files (CSS/JS/HTML/SCSS) with automatic file discovery and parallel agent analysis",
791
+ "arguments": "[--design-id <id>] [--session <id>] [--source <path>]",
792
+ "category": "workflow",
793
+ "subcategory": "ui-design",
794
+ "usage_scenario": "planning",
795
+ "difficulty": "Intermediate",
796
+ "source": "../../../commands/workflow/ui-design/import-from-code.md"
797
+ },
798
+ {
799
+ "name": "layout-extract",
800
+ "command": "/workflow:ui-design:layout-extract",
801
+ "description": "Extract structural layout information from reference images or text prompts using Claude analysis with variant generation or refinement mode",
802
+ "arguments": "[-y|--yes] [--design-id <id>] [--session <id>] [--images \"<glob>\"] [--prompt \"<desc>\"] [--targets \"<list>\"] [--variants <count>] [--device-type <desktop|mobile|tablet|responsive>] [--interactive] [--refine]",
803
+ "category": "workflow",
804
+ "subcategory": "ui-design",
805
+ "usage_scenario": "general",
806
+ "difficulty": "Intermediate",
807
+ "source": "../../../commands/workflow/ui-design/layout-extract.md"
808
+ },
809
+ {
810
+ "name": "workflow:ui-design:reference-page-generator",
811
+ "command": "/workflow:ui-design:reference-page-generator",
812
+ "description": "Generate multi-component reference pages and documentation from design run extraction",
813
+ "arguments": "[--design-run <path>] [--package-name <name>] [--output-dir <path>]",
814
+ "category": "workflow",
815
+ "subcategory": "ui-design",
816
+ "usage_scenario": "planning",
817
+ "difficulty": "Intermediate",
818
+ "source": "../../../commands/workflow/ui-design/reference-page-generator.md"
819
+ },
820
+ {
821
+ "name": "style-extract",
822
+ "command": "/workflow:ui-design:style-extract",
823
+ "description": "Extract design style from reference images or text prompts using Claude analysis with variant generation or refinement mode",
824
+ "arguments": "[-y|--yes] [--design-id <id>] [--session <id>] [--images \"<glob>\"] [--prompt \"<desc>\"] [--variants <count>] [--interactive] [--refine]",
825
+ "category": "workflow",
826
+ "subcategory": "ui-design",
827
+ "usage_scenario": "general",
828
+ "difficulty": "Intermediate",
829
+ "source": "../../../commands/workflow/ui-design/style-extract.md"
830
+ }
831
+ ]
832
+ }
833
+ }