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.
- package/.claude/commands/view.md +367 -0
- package/.claude/commands/workflow/merge-plans-with-file.md +807 -0
- package/.claude/commands/workflow/quick-plan-with-file.md +808 -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/brainstorm-with-file.md +99 -32
- package/.codex/prompts/merge-plans-with-file.md +530 -0
- package/.codex/prompts/quick-plan-with-file.md +450 -0
- package/.codex/prompts/unified-execute-with-file.md +722 -0
- package/.codex/skills/codex-issue-plan-execute/SKILL.md +214 -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 +212 -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 +32 -0
- package/.codex/skills/codex-issue-plan-execute/prompts/execution-agent.md +323 -0
- package/.codex/skills/codex-issue-plan-execute/prompts/planning-agent-system.md +32 -0
- package/.codex/skills/codex-issue-plan-execute/prompts/planning-agent.md +224 -0
- package/.codex/skills/codex-issue-plan-execute/specs/agent-roles.md +468 -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 +32 -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 +9 -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 +11 -2
- package/package.json +1 -1
|
@@ -1,262 +1,261 @@
|
|
|
1
|
-
# Phase 2: Structure Generation
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
## Objective
|
|
6
|
-
|
|
7
|
-
-
|
|
8
|
-
-
|
|
9
|
-
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
const
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
│
|
|
38
|
-
│
|
|
39
|
-
│
|
|
40
|
-
│
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
├──
|
|
81
|
-
│ ├──
|
|
82
|
-
│ ├──
|
|
83
|
-
│
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
├──
|
|
92
|
-
│ ├──
|
|
93
|
-
│
|
|
94
|
-
│
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
const
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
`Bash(\`mkdir -p "\${workDir}/
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
"
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
"
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
"
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
│
|
|
205
|
-
│
|
|
206
|
-
│ │
|
|
207
|
-
│
|
|
208
|
-
│
|
|
209
|
-
│
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
rows.push(`| [phases/
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
rows.push(`| [specs
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
-
|
|
261
|
-
-
|
|
262
|
-
- skill-config.json for template population
|
|
1
|
+
# Phase 2: Structure Generation
|
|
2
|
+
|
|
3
|
+
Create Skill directory structure and entry file based on configuration.
|
|
4
|
+
|
|
5
|
+
## Objective
|
|
6
|
+
|
|
7
|
+
- Create standard directory structure
|
|
8
|
+
- Generate SKILL.md entry file
|
|
9
|
+
- Create corresponding subdirectories based on execution mode
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
## Execution Steps
|
|
13
|
+
|
|
14
|
+
### Step 1: Read Configuration
|
|
15
|
+
|
|
16
|
+
```javascript
|
|
17
|
+
const config = JSON.parse(Read(`${workDir}/skill-config.json`));
|
|
18
|
+
const skillDir = `.claude/skills/${config.skill_name}`;
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
### Step 2: Create Directory Structure
|
|
22
|
+
|
|
23
|
+
#### Base Directories (All Modes)
|
|
24
|
+
|
|
25
|
+
```javascript
|
|
26
|
+
// Base infrastructure
|
|
27
|
+
Bash(`mkdir -p "${skillDir}/{phases,specs,templates,scripts}"`);
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
#### Execution Mode-Specific Directories
|
|
31
|
+
|
|
32
|
+
```
|
|
33
|
+
config.execution_mode
|
|
34
|
+
↓
|
|
35
|
+
├─ "sequential"
|
|
36
|
+
│ ↓ Creates:
|
|
37
|
+
│ └─ phases/ (base directory already included)
|
|
38
|
+
│ ├─ _orchestrator.md
|
|
39
|
+
│ └─ workflow.json
|
|
40
|
+
│
|
|
41
|
+
└─ "autonomous" | "hybrid"
|
|
42
|
+
↓ Creates:
|
|
43
|
+
└─ phases/actions/
|
|
44
|
+
├─ state-schema.md
|
|
45
|
+
└─ *.md (action files)
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
```javascript
|
|
49
|
+
// Additional directories for Autonomous/Hybrid mode
|
|
50
|
+
if (config.execution_mode === 'autonomous' || config.execution_mode === 'hybrid') {
|
|
51
|
+
Bash(`mkdir -p "${skillDir}/phases/actions"`);
|
|
52
|
+
}
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
#### Context Strategy-Specific Directories (P0 Enhancement)
|
|
56
|
+
|
|
57
|
+
```javascript
|
|
58
|
+
// ========== P0: Create directories based on context strategy ==========
|
|
59
|
+
const contextStrategy = config.context_strategy || 'file';
|
|
60
|
+
|
|
61
|
+
if (contextStrategy === 'file') {
|
|
62
|
+
// File strategy: Create persistent context directory
|
|
63
|
+
Bash(`mkdir -p "${skillDir}/.scratchpad-template/context"`);
|
|
64
|
+
|
|
65
|
+
// Create context template file
|
|
66
|
+
Write(
|
|
67
|
+
`${skillDir}/.scratchpad-template/context/.gitkeep`,
|
|
68
|
+
"# Runtime context storage for file-based strategy"
|
|
69
|
+
);
|
|
70
|
+
}
|
|
71
|
+
// Memory strategy does not require directory creation (in-memory only)
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
**Directory Tree View**:
|
|
75
|
+
|
|
76
|
+
```
|
|
77
|
+
Sequential + File Strategy:
|
|
78
|
+
.claude/skills/{skill-name}/
|
|
79
|
+
├── phases/
|
|
80
|
+
│ ├── _orchestrator.md
|
|
81
|
+
│ ├── workflow.json
|
|
82
|
+
│ ├── 01-*.md
|
|
83
|
+
│ └── 02-*.md
|
|
84
|
+
├── .scratchpad-template/
|
|
85
|
+
│ └── context/ <- File strategy persistent storage
|
|
86
|
+
└── specs/
|
|
87
|
+
|
|
88
|
+
Autonomous + Memory Strategy:
|
|
89
|
+
.claude/skills/{skill-name}/
|
|
90
|
+
├── phases/
|
|
91
|
+
│ ├── orchestrator.md
|
|
92
|
+
│ ├── state-schema.md
|
|
93
|
+
│ └── actions/
|
|
94
|
+
│ └── *.md
|
|
95
|
+
└── specs/
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
### Step 3: Generate SKILL.md
|
|
99
|
+
|
|
100
|
+
```javascript
|
|
101
|
+
const skillMdTemplate = `---
|
|
102
|
+
name: ${config.skill_name}
|
|
103
|
+
description: ${config.description}. Triggers on ${config.triggers.map(t => `"${t}"`).join(", ")}.
|
|
104
|
+
allowed-tools: ${config.allowed_tools.join(", ")}
|
|
105
|
+
---
|
|
106
|
+
|
|
107
|
+
# ${config.display_name}
|
|
108
|
+
|
|
109
|
+
${config.description}
|
|
110
|
+
|
|
111
|
+
## Architecture Overview
|
|
112
|
+
|
|
113
|
+
\`\`\`
|
|
114
|
+
${generateArchitectureDiagram(config)}
|
|
115
|
+
\`\`\`
|
|
116
|
+
|
|
117
|
+
## Key Design Principles
|
|
118
|
+
|
|
119
|
+
${generateDesignPrinciples(config)}
|
|
120
|
+
|
|
121
|
+
## Execution Flow
|
|
122
|
+
|
|
123
|
+
${generateExecutionFlow(config)}
|
|
124
|
+
|
|
125
|
+
## Directory Setup
|
|
126
|
+
|
|
127
|
+
\`\`\`javascript
|
|
128
|
+
const timestamp = new Date().toISOString().slice(0,19).replace(/[-:T]/g, '');
|
|
129
|
+
const workDir = \`${config.output.location.replace('{timestamp}', '${timestamp}')}\`;
|
|
130
|
+
|
|
131
|
+
Bash(\`mkdir -p "\${workDir}"\`);
|
|
132
|
+
${config.execution_mode === 'sequential' ?
|
|
133
|
+
`Bash(\`mkdir -p "\${workDir}/sections"\`);` :
|
|
134
|
+
`Bash(\`mkdir -p "\${workDir}/state"\`);`}
|
|
135
|
+
\`\`\`
|
|
136
|
+
|
|
137
|
+
## Output Structure
|
|
138
|
+
|
|
139
|
+
\`\`\`
|
|
140
|
+
${generateOutputStructure(config)}
|
|
141
|
+
\`\`\`
|
|
142
|
+
|
|
143
|
+
## Reference Documents
|
|
144
|
+
|
|
145
|
+
${generateReferenceTable(config)}
|
|
146
|
+
`;
|
|
147
|
+
|
|
148
|
+
Write(`${skillDir}/SKILL.md`, skillMdTemplate);
|
|
149
|
+
```
|
|
150
|
+
|
|
151
|
+
### Step 4: Architecture Diagram Generation Functions
|
|
152
|
+
|
|
153
|
+
```javascript
|
|
154
|
+
function generateArchitectureDiagram(config) {
|
|
155
|
+
if (config.execution_mode === 'sequential') {
|
|
156
|
+
return config.sequential_config.phases.map((p, i) =>
|
|
157
|
+
`│ Phase ${i+1}: ${p.name.padEnd(15)} → ${p.output || 'output-' + (i+1) + '.json'}${' '.repeat(10)}│`
|
|
158
|
+
).join('\n│ ↓' + ' '.repeat(45) + '│\n');
|
|
159
|
+
} else {
|
|
160
|
+
return `
|
|
161
|
+
┌─────────────────────────────────────────────────────────────────┐
|
|
162
|
+
│ Orchestrator (State-driven decision-making) │
|
|
163
|
+
└───────────────┬─────────────────────────────────────────────────┘
|
|
164
|
+
│
|
|
165
|
+
┌───────────┼───────────┐
|
|
166
|
+
↓ ↓ ↓
|
|
167
|
+
${config.autonomous_config.actions.slice(0, 3).map(a =>
|
|
168
|
+
`┌─────────┐ `).join('')}
|
|
169
|
+
${config.autonomous_config.actions.slice(0, 3).map(a =>
|
|
170
|
+
`│${a.name.slice(0, 7).padEnd(7)}│ `).join('')}
|
|
171
|
+
${config.autonomous_config.actions.slice(0, 3).map(a =>
|
|
172
|
+
`└─────────┘ `).join('')}`;
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
function generateDesignPrinciples(config) {
|
|
177
|
+
const common = [
|
|
178
|
+
"1. **Specification Compliance**: Strictly follow `_shared/SKILL-DESIGN-SPEC.md`",
|
|
179
|
+
"2. **Brief Return**: Agent returns path+summary, avoiding context overflow"
|
|
180
|
+
];
|
|
181
|
+
|
|
182
|
+
if (config.execution_mode === 'sequential') {
|
|
183
|
+
return [...common,
|
|
184
|
+
"3. **Phase Isolation**: Each phase is independently testable",
|
|
185
|
+
"4. **Chained Output**: Phase output becomes next phase input"
|
|
186
|
+
].join('\n');
|
|
187
|
+
} else {
|
|
188
|
+
return [...common,
|
|
189
|
+
"3. **State-driven**: Explicit state management, dynamic decision-making",
|
|
190
|
+
"4. **Action Independence**: Each action has no side-effect dependencies"
|
|
191
|
+
].join('\n');
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
function generateExecutionFlow(config) {
|
|
196
|
+
if (config.execution_mode === 'sequential') {
|
|
197
|
+
return '```\n' + config.sequential_config.phases.map((p, i) =>
|
|
198
|
+
`├─ Phase ${i+1}: ${p.name}\n│ → Output: ${p.output || 'output.json'}`
|
|
199
|
+
).join('\n') + '\n```';
|
|
200
|
+
} else {
|
|
201
|
+
return `\`\`\`
|
|
202
|
+
┌─────────────────────────────────────────────────────────────────┐
|
|
203
|
+
│ Orchestrator Loop │
|
|
204
|
+
│ ┌──────────┐ ┌──────────┐ ┌──────────┐ │
|
|
205
|
+
│ │ Read │────▶│ Select │────▶│ Execute │ │
|
|
206
|
+
│ │ State │ │ Action │ │ Action │ │
|
|
207
|
+
│ └──────────┘ └──────────┘ └──────────┘ │
|
|
208
|
+
│ ▲ │ │
|
|
209
|
+
│ └──────────── Update State ◀───────┘ │
|
|
210
|
+
└─────────────────────────────────────────────────────────────────┘
|
|
211
|
+
\`\`\``;
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
function generateOutputStructure(config) {
|
|
216
|
+
const base = `${config.output.location}/
|
|
217
|
+
├── ${config.execution_mode === 'sequential' ? 'sections/' : 'state.json'}`;
|
|
218
|
+
|
|
219
|
+
if (config.execution_mode === 'sequential') {
|
|
220
|
+
return base + '\n' + config.sequential_config.phases.map(p =>
|
|
221
|
+
`│ └── ${p.output || 'section-' + p.id + '.md'}`
|
|
222
|
+
).join('\n') + `\n└── ${config.output.filename_pattern}`;
|
|
223
|
+
} else {
|
|
224
|
+
return base + `
|
|
225
|
+
├── actions-log.json
|
|
226
|
+
└── ${config.output.filename_pattern}`;
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
function generateReferenceTable(config) {
|
|
231
|
+
const rows = [];
|
|
232
|
+
|
|
233
|
+
if (config.execution_mode === 'sequential') {
|
|
234
|
+
config.sequential_config.phases.forEach(p => {
|
|
235
|
+
rows.push(`| [phases/${p.id}.md](phases/${p.id}.md) | ${p.name} |`);
|
|
236
|
+
});
|
|
237
|
+
} else {
|
|
238
|
+
rows.push(`| [phases/orchestrator.md](phases/orchestrator.md) | Orchestrator |`);
|
|
239
|
+
rows.push(`| [phases/state-schema.md](phases/state-schema.md) | State Definition |`);
|
|
240
|
+
config.autonomous_config.actions.forEach(a => {
|
|
241
|
+
rows.push(`| [phases/actions/${a.id}.md](phases/actions/${a.id}.md) | ${a.name} |`);
|
|
242
|
+
});
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
rows.push(`| [specs/${config.skill_name}-requirements.md](specs/${config.skill_name}-requirements.md) | Domain Requirements |`);
|
|
246
|
+
rows.push(`| [specs/quality-standards.md](specs/quality-standards.md) | Quality Standards |`);
|
|
247
|
+
|
|
248
|
+
return `| Document | Purpose |\n|----------|---------||\n` + rows.join('\n');
|
|
249
|
+
}
|
|
250
|
+
```
|
|
251
|
+
|
|
252
|
+
|
|
253
|
+
|
|
254
|
+
## Next Phase
|
|
255
|
+
|
|
256
|
+
→ [Phase 3: Phase Generation](03-phase-generation.md)
|
|
257
|
+
|
|
258
|
+
**Data Flow to Phase 3**:
|
|
259
|
+
- Complete directory structure in .claude/skills/{skill-name}/
|
|
260
|
+
- SKILL.md entry file ready for phase/action generation
|
|
261
|
+
- skill-config.json for template population
|