claude-code-workflow 6.3.50 → 6.3.51
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/commands/view.md +367 -0
- package/.claude/commands/workflow/unified-execute-with-file.md +807 -0
- package/.claude/skills/ccw-help/SKILL.md +72 -12
- package/.claude/skills/ccw-help/command.json +922 -520
- package/.claude/skills/ccw-help/index/all-agents.json +97 -0
- package/.claude/skills/ccw-help/index/all-commands.json +805 -0
- package/.claude/skills/ccw-help/index/by-category.json +833 -0
- package/.claude/skills/ccw-help/index/by-use-case.json +819 -0
- package/.claude/skills/ccw-help/index/command-relationships.json +160 -0
- package/.claude/skills/ccw-help/index/essential-commands.json +90 -0
- package/.claude/skills/ccw-help/scripts/auto-update.py +34 -0
- package/.claude/skills/skill-generator/SKILL.md +255 -208
- package/.claude/skills/skill-generator/phases/01-requirements-discovery.md +238 -228
- package/.claude/skills/skill-generator/phases/02-structure-generation.md +261 -262
- package/.claude/skills/skill-generator/phases/03-phase-generation.md +976 -969
- package/.claude/skills/skill-generator/phases/04-specs-templates.md +398 -398
- package/.claude/skills/skill-generator/phases/05-validation.md +417 -417
- package/.claude/skills/skill-generator/specs/cli-integration.md +131 -131
- package/.claude/skills/skill-generator/specs/execution-modes.md +399 -396
- package/.claude/skills/skill-generator/specs/reference-docs-spec.md +271 -0
- package/.claude/skills/skill-generator/specs/scripting-integration.md +265 -265
- package/.claude/skills/skill-generator/specs/skill-requirements.md +466 -466
- package/.claude/skills/skill-generator/templates/autonomous-action.md +91 -88
- package/.claude/skills/skill-generator/templates/autonomous-orchestrator.md +89 -89
- package/.claude/skills/skill-generator/templates/code-analysis-action.md +148 -149
- package/.claude/skills/skill-generator/templates/llm-action.md +367 -367
- package/.claude/skills/skill-generator/templates/script-template.md +79 -79
- package/.claude/skills/skill-generator/templates/sequential-phase.md +129 -129
- package/.claude/skills/skill-generator/templates/skill-md.md +134 -75
- package/.codex/prompts/UNIFIED_EXECUTE_COMPARISON.md +205 -0
- package/.codex/prompts/unified-execute-with-file.md +722 -0
- package/.codex/skills/codex-issue-plan-execute/SKILL.md +239 -0
- package/.codex/skills/codex-issue-plan-execute/phases/actions/action-complete.md +173 -0
- package/.codex/skills/codex-issue-plan-execute/phases/actions/action-execute.md +220 -0
- package/.codex/skills/codex-issue-plan-execute/phases/actions/action-init.md +86 -0
- package/.codex/skills/codex-issue-plan-execute/phases/actions/action-list.md +165 -0
- package/.codex/skills/codex-issue-plan-execute/phases/actions/action-plan.md +170 -0
- package/.codex/skills/codex-issue-plan-execute/phases/orchestrator.md +210 -0
- package/.codex/skills/codex-issue-plan-execute/phases/state-schema.md +136 -0
- package/.codex/skills/codex-issue-plan-execute/prompts/execution-agent-system.md +136 -0
- package/.codex/skills/codex-issue-plan-execute/prompts/execution-agent.md +135 -0
- package/.codex/skills/codex-issue-plan-execute/prompts/planning-agent-system.md +107 -0
- package/.codex/skills/codex-issue-plan-execute/prompts/planning-agent.md +122 -0
- package/.codex/skills/codex-issue-plan-execute/specs/issue-handling.md +187 -0
- package/.codex/skills/codex-issue-plan-execute/specs/quality-standards.md +231 -0
- package/.codex/skills/codex-issue-plan-execute/specs/solution-schema.md +270 -0
- package/.codex/skills/codex-issue-plan-execute/specs/subagent-roles.md +268 -0
- package/ccw/dist/commands/cli.d.ts.map +1 -1
- package/ccw/dist/commands/cli.js +23 -2
- package/ccw/dist/commands/cli.js.map +1 -1
- package/ccw/dist/core/routes/help-routes.d.ts.map +1 -1
- package/ccw/dist/core/routes/help-routes.js +51 -1
- package/ccw/dist/core/routes/help-routes.js.map +1 -1
- package/ccw/dist/tools/cli-executor-core.d.ts.map +1 -1
- package/ccw/dist/tools/cli-executor-core.js +5 -3
- package/ccw/dist/tools/cli-executor-core.js.map +1 -1
- package/ccw/dist/tools/cli-executor-utils.d.ts +1 -0
- package/ccw/dist/tools/cli-executor-utils.d.ts.map +1 -1
- package/ccw/dist/tools/cli-executor-utils.js +3 -1
- package/ccw/dist/tools/cli-executor-utils.js.map +1 -1
- package/ccw/src/commands/cli.ts +26 -2
- package/ccw/src/core/routes/help-routes.ts +60 -1
- package/ccw/src/templates/dashboard-js/views/help.js +423 -1
- package/ccw/src/tools/cli-executor-core.ts +6 -3
- package/ccw/src/tools/cli-executor-utils.ts +5 -2
- package/package.json +1 -1
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
{
|
|
2
|
+
"workflow:plan": {
|
|
3
|
+
"calls_internally": [
|
|
4
|
+
"workflow:session:start",
|
|
5
|
+
"workflow:tools:context-gather",
|
|
6
|
+
"workflow:tools:conflict-resolution",
|
|
7
|
+
"workflow:tools:task-generate-agent"
|
|
8
|
+
],
|
|
9
|
+
"next_steps": [
|
|
10
|
+
"workflow:plan-verify",
|
|
11
|
+
"workflow:status",
|
|
12
|
+
"workflow:execute"
|
|
13
|
+
],
|
|
14
|
+
"alternatives": [
|
|
15
|
+
"workflow:tdd-plan"
|
|
16
|
+
],
|
|
17
|
+
"prerequisites": []
|
|
18
|
+
},
|
|
19
|
+
"workflow:tdd-plan": {
|
|
20
|
+
"calls_internally": [
|
|
21
|
+
"workflow:session:start",
|
|
22
|
+
"workflow:tools:context-gather",
|
|
23
|
+
"workflow:tools:task-generate-tdd"
|
|
24
|
+
],
|
|
25
|
+
"next_steps": [
|
|
26
|
+
"workflow:tdd-verify",
|
|
27
|
+
"workflow:status",
|
|
28
|
+
"workflow:execute"
|
|
29
|
+
],
|
|
30
|
+
"alternatives": [
|
|
31
|
+
"workflow:plan"
|
|
32
|
+
],
|
|
33
|
+
"prerequisites": []
|
|
34
|
+
},
|
|
35
|
+
"workflow:execute": {
|
|
36
|
+
"prerequisites": [
|
|
37
|
+
"workflow:plan",
|
|
38
|
+
"workflow:tdd-plan"
|
|
39
|
+
],
|
|
40
|
+
"related": [
|
|
41
|
+
"workflow:status",
|
|
42
|
+
"workflow:resume"
|
|
43
|
+
],
|
|
44
|
+
"next_steps": [
|
|
45
|
+
"workflow:review",
|
|
46
|
+
"workflow:tdd-verify"
|
|
47
|
+
]
|
|
48
|
+
},
|
|
49
|
+
"workflow:plan-verify": {
|
|
50
|
+
"prerequisites": [
|
|
51
|
+
"workflow:plan"
|
|
52
|
+
],
|
|
53
|
+
"next_steps": [
|
|
54
|
+
"workflow:execute"
|
|
55
|
+
],
|
|
56
|
+
"related": [
|
|
57
|
+
"workflow:status"
|
|
58
|
+
]
|
|
59
|
+
},
|
|
60
|
+
"workflow:tdd-verify": {
|
|
61
|
+
"prerequisites": [
|
|
62
|
+
"workflow:execute"
|
|
63
|
+
],
|
|
64
|
+
"related": [
|
|
65
|
+
"workflow:tools:tdd-coverage-analysis"
|
|
66
|
+
]
|
|
67
|
+
},
|
|
68
|
+
"workflow:session:start": {
|
|
69
|
+
"next_steps": [
|
|
70
|
+
"workflow:plan",
|
|
71
|
+
"workflow:execute"
|
|
72
|
+
],
|
|
73
|
+
"related": [
|
|
74
|
+
"workflow:session:list",
|
|
75
|
+
"workflow:session:resume"
|
|
76
|
+
]
|
|
77
|
+
},
|
|
78
|
+
"workflow:session:resume": {
|
|
79
|
+
"alternatives": [
|
|
80
|
+
"workflow:resume"
|
|
81
|
+
],
|
|
82
|
+
"related": [
|
|
83
|
+
"workflow:session:list",
|
|
84
|
+
"workflow:status"
|
|
85
|
+
]
|
|
86
|
+
},
|
|
87
|
+
"workflow:lite-plan": {
|
|
88
|
+
"calls_internally": [
|
|
89
|
+
"workflow:lite-execute"
|
|
90
|
+
],
|
|
91
|
+
"next_steps": [
|
|
92
|
+
"workflow:lite-execute",
|
|
93
|
+
"workflow:status"
|
|
94
|
+
],
|
|
95
|
+
"alternatives": [
|
|
96
|
+
"workflow:plan"
|
|
97
|
+
],
|
|
98
|
+
"prerequisites": []
|
|
99
|
+
},
|
|
100
|
+
"workflow:lite-fix": {
|
|
101
|
+
"next_steps": [
|
|
102
|
+
"workflow:lite-execute",
|
|
103
|
+
"workflow:status"
|
|
104
|
+
],
|
|
105
|
+
"alternatives": [
|
|
106
|
+
"workflow:lite-plan"
|
|
107
|
+
],
|
|
108
|
+
"related": [
|
|
109
|
+
"workflow:test-cycle-execute"
|
|
110
|
+
]
|
|
111
|
+
},
|
|
112
|
+
"workflow:lite-execute": {
|
|
113
|
+
"prerequisites": [
|
|
114
|
+
"workflow:lite-plan",
|
|
115
|
+
"workflow:lite-fix"
|
|
116
|
+
],
|
|
117
|
+
"related": [
|
|
118
|
+
"workflow:execute",
|
|
119
|
+
"workflow:status"
|
|
120
|
+
]
|
|
121
|
+
},
|
|
122
|
+
"workflow:review-session-cycle": {
|
|
123
|
+
"prerequisites": [
|
|
124
|
+
"workflow:execute"
|
|
125
|
+
],
|
|
126
|
+
"next_steps": [
|
|
127
|
+
"workflow:review-fix"
|
|
128
|
+
],
|
|
129
|
+
"related": [
|
|
130
|
+
"workflow:review-module-cycle"
|
|
131
|
+
]
|
|
132
|
+
},
|
|
133
|
+
"workflow:review-fix": {
|
|
134
|
+
"prerequisites": [
|
|
135
|
+
"workflow:review-module-cycle",
|
|
136
|
+
"workflow:review-session-cycle"
|
|
137
|
+
],
|
|
138
|
+
"related": [
|
|
139
|
+
"workflow:test-cycle-execute"
|
|
140
|
+
]
|
|
141
|
+
},
|
|
142
|
+
"memory:docs": {
|
|
143
|
+
"calls_internally": [
|
|
144
|
+
"workflow:session:start",
|
|
145
|
+
"workflow:tools:context-gather"
|
|
146
|
+
],
|
|
147
|
+
"next_steps": [
|
|
148
|
+
"workflow:execute"
|
|
149
|
+
]
|
|
150
|
+
},
|
|
151
|
+
"memory:skill-memory": {
|
|
152
|
+
"next_steps": [
|
|
153
|
+
"workflow:plan",
|
|
154
|
+
"cli:analyze"
|
|
155
|
+
],
|
|
156
|
+
"related": [
|
|
157
|
+
"memory:load-skill-memory"
|
|
158
|
+
]
|
|
159
|
+
}
|
|
160
|
+
}
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"name": "lite-plan",
|
|
4
|
+
"command": "/workflow:lite-plan",
|
|
5
|
+
"description": "Lightweight interactive planning workflow with in-memory planning, code exploration, and execution execute to lite-execute after user confirmation",
|
|
6
|
+
"arguments": "[-y|--yes] [-e|--explore] \\\"task description\\\"|file.md",
|
|
7
|
+
"category": "workflow",
|
|
8
|
+
"subcategory": null,
|
|
9
|
+
"usage_scenario": "planning",
|
|
10
|
+
"difficulty": "Intermediate",
|
|
11
|
+
"source": "../../../commands/workflow/lite-plan.md"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"name": "lite-fix",
|
|
15
|
+
"command": "/workflow:lite-fix",
|
|
16
|
+
"description": "Lightweight bug diagnosis and fix workflow with intelligent severity assessment and optional hotfix mode for production incidents",
|
|
17
|
+
"arguments": "[-y|--yes] [--hotfix] \\\"bug description or issue reference\\",
|
|
18
|
+
"category": "workflow",
|
|
19
|
+
"subcategory": null,
|
|
20
|
+
"usage_scenario": "general",
|
|
21
|
+
"difficulty": "Intermediate",
|
|
22
|
+
"source": "../../../commands/workflow/lite-fix.md"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"name": "plan",
|
|
26
|
+
"command": "/workflow:plan",
|
|
27
|
+
"description": "5-phase planning workflow with action-planning-agent task generation, outputs IMPL_PLAN.md and task JSONs",
|
|
28
|
+
"arguments": "[-y|--yes] \\\"text description\\\"|file.md",
|
|
29
|
+
"category": "workflow",
|
|
30
|
+
"subcategory": null,
|
|
31
|
+
"usage_scenario": "planning",
|
|
32
|
+
"difficulty": "Intermediate",
|
|
33
|
+
"source": "../../../commands/workflow/plan.md"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"name": "execute",
|
|
37
|
+
"command": "/workflow:execute",
|
|
38
|
+
"description": "Coordinate agent execution for workflow tasks with automatic session discovery, parallel task processing, and status tracking",
|
|
39
|
+
"arguments": "[-y|--yes] [--resume-session=\\\"session-id\\\"]",
|
|
40
|
+
"category": "workflow",
|
|
41
|
+
"subcategory": null,
|
|
42
|
+
"usage_scenario": "implementation",
|
|
43
|
+
"difficulty": "Intermediate",
|
|
44
|
+
"source": "../../../commands/workflow/execute.md"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"name": "start",
|
|
48
|
+
"command": "/workflow:session:start",
|
|
49
|
+
"description": "Discover existing sessions or start new workflow session with intelligent session management and conflict detection",
|
|
50
|
+
"arguments": "[--type <workflow|review|tdd|test|docs>] [--auto|--new] [optional: task description for new session]",
|
|
51
|
+
"category": "workflow",
|
|
52
|
+
"subcategory": "session",
|
|
53
|
+
"usage_scenario": "general",
|
|
54
|
+
"difficulty": "Intermediate",
|
|
55
|
+
"source": "../../../commands/workflow/session/start.md"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"name": "review-session-cycle",
|
|
59
|
+
"command": "/workflow:review-session-cycle",
|
|
60
|
+
"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.",
|
|
61
|
+
"arguments": "[session-id] [--dimensions=security,architecture,...] [--max-iterations=N]",
|
|
62
|
+
"category": "workflow",
|
|
63
|
+
"subcategory": null,
|
|
64
|
+
"usage_scenario": "session-management",
|
|
65
|
+
"difficulty": "Intermediate",
|
|
66
|
+
"source": "../../../commands/workflow/review-session-cycle.md"
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"name": "artifacts",
|
|
70
|
+
"command": "/workflow:brainstorm:artifacts",
|
|
71
|
+
"description": "Interactive clarification generating confirmed guidance specification through role-based analysis and synthesis",
|
|
72
|
+
"arguments": "[-y|--yes] topic or challenge description [--count N]",
|
|
73
|
+
"category": "workflow",
|
|
74
|
+
"subcategory": "brainstorm",
|
|
75
|
+
"usage_scenario": "general",
|
|
76
|
+
"difficulty": "Intermediate",
|
|
77
|
+
"source": "../../../commands/workflow/brainstorm/artifacts.md"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"name": "plan-verify",
|
|
81
|
+
"command": "/workflow:plan-verify",
|
|
82
|
+
"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.",
|
|
83
|
+
"arguments": "[optional: --session session-id]",
|
|
84
|
+
"category": "workflow",
|
|
85
|
+
"subcategory": null,
|
|
86
|
+
"usage_scenario": "planning",
|
|
87
|
+
"difficulty": "Intermediate",
|
|
88
|
+
"source": "../../../commands/workflow/plan-verify.md"
|
|
89
|
+
}
|
|
90
|
+
]
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
"""
|
|
3
|
+
Simple update script for ccw-help skill.
|
|
4
|
+
Runs analyze_commands.py to regenerate command index.
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
import sys
|
|
8
|
+
import subprocess
|
|
9
|
+
from pathlib import Path
|
|
10
|
+
|
|
11
|
+
BASE_DIR = Path("D:/Claude_dms3/.claude")
|
|
12
|
+
SKILL_DIR = BASE_DIR / "skills" / "ccw-help"
|
|
13
|
+
ANALYZE_SCRIPT = SKILL_DIR / "scripts" / "analyze_commands.py"
|
|
14
|
+
|
|
15
|
+
def run_update():
|
|
16
|
+
"""Run command analysis update."""
|
|
17
|
+
try:
|
|
18
|
+
result = subprocess.run(
|
|
19
|
+
[sys.executable, str(ANALYZE_SCRIPT)],
|
|
20
|
+
capture_output=True,
|
|
21
|
+
text=True,
|
|
22
|
+
timeout=30
|
|
23
|
+
)
|
|
24
|
+
|
|
25
|
+
print(result.stdout)
|
|
26
|
+
return result.returncode == 0
|
|
27
|
+
|
|
28
|
+
except Exception as e:
|
|
29
|
+
print(f"Error running update: {e}")
|
|
30
|
+
return False
|
|
31
|
+
|
|
32
|
+
if __name__ == '__main__':
|
|
33
|
+
success = run_update()
|
|
34
|
+
sys.exit(0 if success else 1)
|