claude-code-workflow 7.2.16 → 7.2.17
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/.codex/agents/{action-planning-agent.md → action-planning-agent.toml} +8 -17
- package/.codex/agents/{cli-discuss-agent.md → cli-discuss-agent.toml} +391 -391
- package/.codex/agents/{cli-execution-agent.md → cli-execution-agent.toml} +334 -333
- package/.codex/agents/{cli-explore-agent.md → cli-explore-agent.toml} +8 -7
- package/.codex/agents/{cli-lite-planning-agent.md → cli-lite-planning-agent.toml} +8 -13
- package/.codex/agents/{cli-planning-agent.md → cli-planning-agent.toml} +553 -562
- package/.codex/agents/{code-developer.md → code-developer.toml} +9 -18
- package/.codex/agents/{conceptual-planning-agent.md → conceptual-planning-agent.toml} +304 -321
- package/.codex/agents/{context-search-agent.md → context-search-agent.toml} +8 -17
- package/.codex/agents/{debug-explore-agent.md → debug-explore-agent.toml} +437 -436
- package/.codex/agents/{doc-generator.md → doc-generator.toml} +325 -334
- package/.codex/agents/{issue-plan-agent.md → issue-plan-agent.toml} +8 -7
- package/.codex/agents/{issue-queue-agent.md → issue-queue-agent.toml} +312 -311
- package/.codex/agents/{memory-bridge.md → memory-bridge.toml} +9 -6
- package/.codex/agents/{tdd-developer.md → tdd-developer.toml} +500 -512
- package/.codex/agents/{test-action-planning-agent.md → test-action-planning-agent.toml} +676 -684
- package/.codex/agents/{test-context-search-agent.md → test-context-search-agent.toml} +8 -18
- package/.codex/agents/{test-fix-agent.md → test-fix-agent.toml} +9 -23
- package/.codex/agents/{ui-design-agent.md → ui-design-agent.toml} +8 -26
- package/.codex/agents/{universal-executor.md → universal-executor.toml} +9 -18
- package/.codex/skills/brainstorm/SKILL.md +3 -3
- package/.codex/skills/brainstorm-with-file/SKILL.md +17 -19
- package/.codex/skills/clean/SKILL.md +2 -2
- package/.codex/skills/issue-discover/SKILL.md +3 -3
- package/.codex/skills/issue-discover/phases/02-discover.md +6 -6
- package/.codex/skills/issue-discover/phases/03-discover-by-prompt.md +4 -4
- package/.codex/skills/parallel-dev-cycle/phases/02-agent-execution.md +8 -8
- package/.codex/skills/review-cycle/SKILL.md +3 -3
- package/.codex/skills/review-cycle/phases/02-parallel-review.md +26 -26
- package/.codex/skills/review-cycle/phases/04-iterative-deep-dive.md +18 -18
- package/.codex/skills/review-cycle/phases/07-fix-parallel-planning.md +2 -2
- package/.codex/skills/review-cycle/phases/08-fix-execution.md +2 -2
- package/.codex/skills/roadmap-with-file/SKILL.md +9 -9
- package/.codex/skills/spec-setup/SKILL.md +2 -2
- package/.codex/skills/workflow-plan/SKILL.md +5 -5
- package/.codex/skills/workflow-tdd-plan/SKILL.md +4 -4
- package/.codex/skills/workflow-test-fix-cycle/SKILL.md +14 -14
- package/.codex/skills/workflow-test-fix-cycle/phases/01-test-fix-gen.md +12 -12
- package/.codex/skills/workflow-test-fix-cycle/phases/02-test-cycle-execute.md +6 -6
- package/package.json +1 -1
|
@@ -79,18 +79,18 @@ const deepDiveAgents = [];
|
|
|
79
79
|
|
|
80
80
|
selectedFindings.forEach(finding => {
|
|
81
81
|
const agentId = spawn_agent({
|
|
82
|
+
agent_type: "cli_explore_agent",
|
|
82
83
|
message: `
|
|
83
84
|
## TASK ASSIGNMENT
|
|
84
85
|
|
|
85
86
|
### MANDATORY FIRST STEPS (Agent Execute)
|
|
86
|
-
1.
|
|
87
|
-
2. Read
|
|
88
|
-
3.
|
|
89
|
-
4.
|
|
90
|
-
5.
|
|
91
|
-
6.
|
|
92
|
-
7. Read: ${projectRoot}/.workflow/
|
|
93
|
-
8. Read: ${projectRoot}/.workflow/specs/*.md (user-defined constraints for remediation compliance)
|
|
87
|
+
1. Read original finding: ${dimensionJsonPath}
|
|
88
|
+
2. Read affected file: ${finding.file}
|
|
89
|
+
3. Identify related code: bash(grep -r "import.*${basename(finding.file)}" ${projectDir}/src --include="*.ts")
|
|
90
|
+
4. Read test files: bash(find ${projectDir}/tests -name "*${basename(finding.file, '.ts')}*" -type f)
|
|
91
|
+
5. Execute: cat ~/.ccw/workflows/cli-templates/schemas/review-deep-dive-results-schema.json (get output schema reference)
|
|
92
|
+
6. Read: ${projectRoot}/.workflow/project-tech.json (technology stack and architecture context)
|
|
93
|
+
7. Read: ${projectRoot}/.workflow/specs/*.md (user-defined constraints for remediation compliance)
|
|
94
94
|
|
|
95
95
|
---
|
|
96
96
|
|
|
@@ -125,7 +125,7 @@ Then apply **Deep Scan mode** for semantic analysis:
|
|
|
125
125
|
|
|
126
126
|
## Expected Deliverables
|
|
127
127
|
|
|
128
|
-
**Schema Reference**: Schema obtained in MANDATORY FIRST STEPS step
|
|
128
|
+
**Schema Reference**: Schema obtained in MANDATORY FIRST STEPS step 5, follow schema exactly
|
|
129
129
|
|
|
130
130
|
1. Deep-Dive Results JSON: ${outputDir}/iterations/iteration-${iteration}-finding-${finding.id}.json
|
|
131
131
|
|
|
@@ -190,18 +190,18 @@ const deepDiveAgents = [];
|
|
|
190
190
|
|
|
191
191
|
selectedFindings.forEach(finding => {
|
|
192
192
|
const agentId = spawn_agent({
|
|
193
|
+
agent_type: "cli_explore_agent",
|
|
193
194
|
message: `
|
|
194
195
|
## TASK ASSIGNMENT
|
|
195
196
|
|
|
196
197
|
### MANDATORY FIRST STEPS (Agent Execute)
|
|
197
|
-
1.
|
|
198
|
-
2. Read
|
|
199
|
-
3.
|
|
200
|
-
4.
|
|
201
|
-
5.
|
|
202
|
-
6.
|
|
203
|
-
7. Read: ${projectRoot}/.workflow/
|
|
204
|
-
8. Read: ${projectRoot}/.workflow/specs/*.md (user-defined constraints for remediation compliance)
|
|
198
|
+
1. Read original finding: ${dimensionJsonPath}
|
|
199
|
+
2. Read affected file: ${finding.file}
|
|
200
|
+
3. Identify related code: bash(grep -r "import.*${basename(finding.file)}" ${workflowDir}/src --include="*.ts")
|
|
201
|
+
4. Read test files: bash(find ${workflowDir}/tests -name "*${basename(finding.file, '.ts')}*" -type f)
|
|
202
|
+
5. Execute: cat ~/.ccw/workflows/cli-templates/schemas/review-deep-dive-results-schema.json (get output schema reference)
|
|
203
|
+
6. Read: ${projectRoot}/.workflow/project-tech.json (technology stack and architecture context)
|
|
204
|
+
7. Read: ${projectRoot}/.workflow/specs/*.md (user-defined constraints for remediation compliance)
|
|
205
205
|
|
|
206
206
|
---
|
|
207
207
|
|
|
@@ -237,7 +237,7 @@ Then apply **Deep Scan mode** for semantic analysis:
|
|
|
237
237
|
|
|
238
238
|
## Expected Deliverables
|
|
239
239
|
|
|
240
|
-
**Schema Reference**: Schema obtained in MANDATORY FIRST STEPS step
|
|
240
|
+
**Schema Reference**: Schema obtained in MANDATORY FIRST STEPS step 5, follow schema exactly
|
|
241
241
|
|
|
242
242
|
1. Deep-Dive Results JSON: ${outputDir}/iterations/iteration-${iteration}-finding-${finding.id}.json
|
|
243
243
|
|
|
@@ -100,12 +100,12 @@ for (let i = 1; i <= aggregatedPlan.groups.length; i++) {
|
|
|
100
100
|
```javascript
|
|
101
101
|
// Spawn planning agent for a batch
|
|
102
102
|
const agentId = spawn_agent({
|
|
103
|
+
agent_type: "cli_planning_agent",
|
|
103
104
|
message: `
|
|
104
105
|
## TASK ASSIGNMENT
|
|
105
106
|
|
|
106
107
|
### MANDATORY FIRST STEPS (Agent Execute)
|
|
107
|
-
1.
|
|
108
|
-
2. Execute: ccw spec load --category planning
|
|
108
|
+
1. Execute: ccw spec load --category planning
|
|
109
109
|
|
|
110
110
|
---
|
|
111
111
|
|
|
@@ -55,12 +55,12 @@ if (result.passRate < 100%) {
|
|
|
55
55
|
```javascript
|
|
56
56
|
// Spawn execution agent for a group
|
|
57
57
|
const execAgentId = spawn_agent({
|
|
58
|
+
agent_type: "cli_execution_agent",
|
|
58
59
|
message: `
|
|
59
60
|
## TASK ASSIGNMENT
|
|
60
61
|
|
|
61
62
|
### MANDATORY FIRST STEPS (Agent Execute)
|
|
62
|
-
1.
|
|
63
|
-
2. Execute: ccw spec load --category execution
|
|
63
|
+
1. Execute: ccw spec load --category execution
|
|
64
64
|
|
|
65
65
|
---
|
|
66
66
|
|
|
@@ -39,13 +39,13 @@ Create a new subagent with task assignment.
|
|
|
39
39
|
|
|
40
40
|
```javascript
|
|
41
41
|
const agentId = spawn_agent({
|
|
42
|
+
agent_type: "{agent_type}",
|
|
42
43
|
message: `
|
|
43
44
|
## TASK ASSIGNMENT
|
|
44
45
|
|
|
45
46
|
### MANDATORY FIRST STEPS (Agent Execute)
|
|
46
|
-
1.
|
|
47
|
-
2. Read: .workflow/project-
|
|
48
|
-
3. Read: .workflow/project-guidelines.json
|
|
47
|
+
1. Read: .workflow/project-tech.json
|
|
48
|
+
2. Read: .workflow/project-guidelines.json
|
|
49
49
|
|
|
50
50
|
## TASK CONTEXT
|
|
51
51
|
${taskContext}
|
|
@@ -502,13 +502,13 @@ Bash(`mkdir -p ${sessionFolder}`)
|
|
|
502
502
|
|
|
503
503
|
if (hasCodebase !== 'none') {
|
|
504
504
|
const exploreAgentId = spawn_agent({
|
|
505
|
+
agent_type: "cli_explore_agent",
|
|
505
506
|
message: `
|
|
506
507
|
## TASK ASSIGNMENT
|
|
507
508
|
|
|
508
509
|
### MANDATORY FIRST STEPS (Agent Execute)
|
|
509
|
-
1.
|
|
510
|
-
2. Read: .workflow/project-
|
|
511
|
-
3. Read: .workflow/project-guidelines.json
|
|
510
|
+
1. Read: .workflow/project-tech.json
|
|
511
|
+
2. Read: .workflow/project-guidelines.json
|
|
512
512
|
|
|
513
513
|
---
|
|
514
514
|
|
|
@@ -553,13 +553,13 @@ Return findings as JSON with schema:
|
|
|
553
553
|
2. **Execute Decomposition Agent**
|
|
554
554
|
```javascript
|
|
555
555
|
const decompositionAgentId = spawn_agent({
|
|
556
|
+
agent_type: "cli_roadmap_plan_agent",
|
|
556
557
|
message: `
|
|
557
558
|
## TASK ASSIGNMENT
|
|
558
559
|
|
|
559
560
|
### MANDATORY FIRST STEPS (Agent Execute)
|
|
560
|
-
1.
|
|
561
|
-
2. Read: .workflow/project-
|
|
562
|
-
3. Read: .workflow/project-guidelines.json
|
|
561
|
+
1. Read: .workflow/project-tech.json
|
|
562
|
+
2. Read: .workflow/project-guidelines.json
|
|
563
563
|
|
|
564
564
|
---
|
|
565
565
|
|
|
@@ -122,12 +122,12 @@ let exploreAgent = null
|
|
|
122
122
|
|
|
123
123
|
try {
|
|
124
124
|
exploreAgent = spawn_agent({
|
|
125
|
+
agent_type: "cli_explore_agent",
|
|
125
126
|
message: `
|
|
126
127
|
## TASK ASSIGNMENT
|
|
127
128
|
|
|
128
129
|
### MANDATORY FIRST STEPS (Agent Execute)
|
|
129
|
-
1.
|
|
130
|
-
2. Read: .workflow/project-tech.json (if exists, for --regenerate)
|
|
130
|
+
1. Read: .workflow/project-tech.json (if exists, for --regenerate)
|
|
131
131
|
|
|
132
132
|
---
|
|
133
133
|
|
|
@@ -242,7 +242,7 @@ console.log(`Session: ${sessionId}`)
|
|
|
242
242
|
console.log(`\n## Phase 2: Context Gathering\n`)
|
|
243
243
|
|
|
244
244
|
const ctxAgent = spawn_agent({
|
|
245
|
-
|
|
245
|
+
agent_type: "context_search_agent",
|
|
246
246
|
instruction: `
|
|
247
247
|
Gather implementation context for planning.
|
|
248
248
|
|
|
@@ -376,7 +376,7 @@ TASK DESCRIPTION: ${taskDescription}" --tool gemini --mode analysis --rule analy
|
|
|
376
376
|
```javascript
|
|
377
377
|
if (!isMultiModule) {
|
|
378
378
|
const planAgent = spawn_agent({
|
|
379
|
-
|
|
379
|
+
agent_type: "action_planning_agent",
|
|
380
380
|
instruction: `
|
|
381
381
|
Generate implementation plan and task JSONs.
|
|
382
382
|
|
|
@@ -421,7 +421,7 @@ ${contextPkg.conflict_risk === 'medium' || contextPkg.conflict_risk === 'high'
|
|
|
421
421
|
const mod = uniqueModules[i]
|
|
422
422
|
|
|
423
423
|
const agentId = spawn_agent({
|
|
424
|
-
|
|
424
|
+
agent_type: "action_planning_agent",
|
|
425
425
|
instruction: `
|
|
426
426
|
Plan module: ${mod} (prefix: ${prefix})
|
|
427
427
|
|
|
@@ -444,7 +444,7 @@ Mark cross-module dependencies as CROSS::${'{module}'}::${'{task}'}
|
|
|
444
444
|
|
|
445
445
|
// +1 Coordinator: integrate all modules
|
|
446
446
|
const coordAgent = spawn_agent({
|
|
447
|
-
|
|
447
|
+
agent_type: "action_planning_agent",
|
|
448
448
|
instruction: `
|
|
449
449
|
Integrate ${uniqueModules.length} module plans into unified IMPL_PLAN.md.
|
|
450
450
|
|
|
@@ -576,7 +576,7 @@ if (mode === 'replan') {
|
|
|
576
576
|
|
|
577
577
|
// 2. Replan via agent
|
|
578
578
|
const replanAgent = spawn_agent({
|
|
579
|
-
|
|
579
|
+
agent_type: "action_planning_agent",
|
|
580
580
|
instruction: `
|
|
581
581
|
Replan ${scope === 'task' ? `task ${replanTaskId}` : 'entire session'}.
|
|
582
582
|
|
|
@@ -269,7 +269,7 @@ console.log(`Session: ${sessionId}`)
|
|
|
269
269
|
console.log(`\n## Phase 2: Context Gathering\n`)
|
|
270
270
|
|
|
271
271
|
const ctxAgent = spawn_agent({
|
|
272
|
-
|
|
272
|
+
agent_type: "context_search_agent",
|
|
273
273
|
instruction: `
|
|
274
274
|
Gather implementation context for TDD planning.
|
|
275
275
|
|
|
@@ -329,7 +329,7 @@ console.log(` Context gathered. Conflict risk: ${conflictRisk}`)
|
|
|
329
329
|
console.log(`\n## Phase 3: Test Coverage Analysis\n`)
|
|
330
330
|
|
|
331
331
|
const testAgent = spawn_agent({
|
|
332
|
-
|
|
332
|
+
agent_type: "cli_explore_agent",
|
|
333
333
|
instruction: `
|
|
334
334
|
Analyze test coverage and framework for TDD planning.
|
|
335
335
|
|
|
@@ -452,7 +452,7 @@ TASK DESCRIPTION: ${taskDescription}" --tool gemini --mode analysis --rule analy
|
|
|
452
452
|
console.log(`\n## Phase 5: TDD Task Generation\n`)
|
|
453
453
|
|
|
454
454
|
const planAgent = spawn_agent({
|
|
455
|
-
|
|
455
|
+
agent_type: "action_planning_agent",
|
|
456
456
|
instruction: `
|
|
457
457
|
Generate TDD implementation plan with Red-Green-Refactor cycles.
|
|
458
458
|
|
|
@@ -628,7 +628,7 @@ if (mode === 'verify' || /* auto-verify from Phase 6 */) {
|
|
|
628
628
|
}
|
|
629
629
|
|
|
630
630
|
const verifyAgent = spawn_agent({
|
|
631
|
-
|
|
631
|
+
agent_type: "cli_explore_agent",
|
|
632
632
|
instruction: `
|
|
633
633
|
Verify TDD compliance across 4 dimensions.
|
|
634
634
|
|
|
@@ -83,12 +83,12 @@ Create a new subagent with task assignment.
|
|
|
83
83
|
|
|
84
84
|
```javascript
|
|
85
85
|
const agentId = spawn_agent({
|
|
86
|
+
agent_type: "{agent_type}",
|
|
86
87
|
message: `
|
|
87
88
|
## TASK ASSIGNMENT
|
|
88
89
|
|
|
89
90
|
### MANDATORY FIRST STEPS (Agent Execute)
|
|
90
|
-
1.
|
|
91
|
-
2. Run: `ccw spec load --category "planning execution"`
|
|
91
|
+
1. Run: `ccw spec load --category "planning execution"`
|
|
92
92
|
|
|
93
93
|
## TASK CONTEXT
|
|
94
94
|
${taskContext}
|
|
@@ -241,10 +241,10 @@ Phase 2: Test-Cycle Execution (phases/02-test-cycle-execute.md)
|
|
|
241
241
|
5. Phase 1 Summary → **⛔ MANDATORY: Present plan and wait for user confirmation before Phase 2**
|
|
242
242
|
|
|
243
243
|
**Agents Used** (via spawn_agent):
|
|
244
|
-
- `
|
|
245
|
-
- `
|
|
246
|
-
- `
|
|
247
|
-
- `
|
|
244
|
+
- `test_context_search_agent` (agent_type: test_context_search_agent) - Context gathering (Session Mode)
|
|
245
|
+
- `context_search_agent` (agent_type: context_search_agent) - Context gathering (Prompt Mode)
|
|
246
|
+
- `cli_execution_agent` (agent_type: cli_execution_agent) - Test analysis with Gemini
|
|
247
|
+
- `action_planning_agent` (agent_type: action_planning_agent) - Task JSON generation
|
|
248
248
|
|
|
249
249
|
### Phase 2: Test-Cycle Execution
|
|
250
250
|
|
|
@@ -256,8 +256,8 @@ Phase 2: Test-Cycle Execution (phases/02-test-cycle-execute.md)
|
|
|
256
256
|
3. Completion - Final validation → Summary → Auto-complete session
|
|
257
257
|
|
|
258
258
|
**Agents Used** (via spawn_agent):
|
|
259
|
-
- `
|
|
260
|
-
- `
|
|
259
|
+
- `cli_planning_agent` (agent_type: cli_planning_agent) - Failure analysis, root cause extraction, fix task generation
|
|
260
|
+
- `test_fix_agent` (agent_type: test_fix_agent) - Test execution, code fixes, criticality assignment
|
|
261
261
|
|
|
262
262
|
**Strategy Engine**: conservative (iteration 1-2) → aggressive (pass >80%) → surgical (regression)
|
|
263
263
|
|
|
@@ -387,14 +387,14 @@ try {
|
|
|
387
387
|
- None for Prompt Mode
|
|
388
388
|
|
|
389
389
|
**Phase 1 Agents** (used by phases/01-test-fix-gen.md via spawn_agent):
|
|
390
|
-
- `
|
|
391
|
-
- `
|
|
392
|
-
- `
|
|
393
|
-
- `
|
|
390
|
+
- `test_context_search_agent` (agent_type: test_context_search_agent) - Test coverage analysis (Session Mode)
|
|
391
|
+
- `context_search_agent` (agent_type: context_search_agent) - Codebase analysis (Prompt Mode)
|
|
392
|
+
- `cli_execution_agent` (agent_type: cli_execution_agent) - Test requirements with Gemini
|
|
393
|
+
- `action_planning_agent` (agent_type: action_planning_agent) - Task JSON generation
|
|
394
394
|
|
|
395
395
|
**Phase 2 Agents** (used by phases/02-test-cycle-execute.md via spawn_agent):
|
|
396
|
-
- `
|
|
397
|
-
- `
|
|
396
|
+
- `cli_planning_agent` (agent_type: cli_planning_agent) - CLI analysis, root cause extraction, task generation
|
|
397
|
+
- `test_fix_agent` (agent_type: test_fix_agent) - Test execution, code fixes, criticality assignment
|
|
398
398
|
|
|
399
399
|
**Follow-up**:
|
|
400
400
|
- Session sync: `$session-sync -y "Test-fix cycle complete: {pass_rate}% pass rate"`
|
|
@@ -70,13 +70,13 @@ if (input.startsWith("WFS-")) {
|
|
|
70
70
|
```javascript
|
|
71
71
|
// Session Mode - gather from source session via test-context-search-agent
|
|
72
72
|
const contextAgentId = spawn_agent({
|
|
73
|
+
agent_type: "test_context_search_agent",
|
|
73
74
|
message: `
|
|
74
75
|
## TASK ASSIGNMENT
|
|
75
76
|
|
|
76
77
|
### MANDATORY FIRST STEPS (Agent Execute)
|
|
77
|
-
1.
|
|
78
|
-
2. Run: `ccw spec load --category
|
|
79
|
-
3. Run: `ccw spec load --category test` (test framework, coverage targets, conventions)
|
|
78
|
+
1. Run: `ccw spec load --category planning`
|
|
79
|
+
2. Run: `ccw spec load --category test` (test framework, coverage targets, conventions)
|
|
80
80
|
|
|
81
81
|
---
|
|
82
82
|
|
|
@@ -97,13 +97,13 @@ close_agent({ id: contextAgentId });
|
|
|
97
97
|
|
|
98
98
|
// Prompt Mode - gather from codebase via context-search-agent
|
|
99
99
|
const contextAgentId = spawn_agent({
|
|
100
|
+
agent_type: "context_search_agent",
|
|
100
101
|
message: `
|
|
101
102
|
## TASK ASSIGNMENT
|
|
102
103
|
|
|
103
104
|
### MANDATORY FIRST STEPS (Agent Execute)
|
|
104
|
-
1.
|
|
105
|
-
2. Run: `ccw spec load --category
|
|
106
|
-
3. Run: `ccw spec load --category test` (test framework, coverage targets, conventions)
|
|
105
|
+
1. Run: `ccw spec load --category planning`
|
|
106
|
+
2. Run: `ccw spec load --category test` (test framework, coverage targets, conventions)
|
|
107
107
|
|
|
108
108
|
---
|
|
109
109
|
|
|
@@ -171,13 +171,13 @@ close_agent({ id: contextAgentId });
|
|
|
171
171
|
|
|
172
172
|
```javascript
|
|
173
173
|
const analysisAgentId = spawn_agent({
|
|
174
|
+
agent_type: "cli_execution_agent",
|
|
174
175
|
message: `
|
|
175
176
|
## TASK ASSIGNMENT
|
|
176
177
|
|
|
177
178
|
### MANDATORY FIRST STEPS (Agent Execute)
|
|
178
|
-
1.
|
|
179
|
-
2. Run: `ccw spec load --category
|
|
180
|
-
3. Run: `ccw spec load --category test` (test framework, coverage targets, conventions)
|
|
179
|
+
1. Run: `ccw spec load --category planning`
|
|
180
|
+
2. Run: `ccw spec load --category test` (test framework, coverage targets, conventions)
|
|
181
181
|
|
|
182
182
|
---
|
|
183
183
|
|
|
@@ -240,13 +240,13 @@ close_agent({ id: analysisAgentId });
|
|
|
240
240
|
|
|
241
241
|
```javascript
|
|
242
242
|
const taskGenAgentId = spawn_agent({
|
|
243
|
+
agent_type: "action_planning_agent",
|
|
243
244
|
message: `
|
|
244
245
|
## TASK ASSIGNMENT
|
|
245
246
|
|
|
246
247
|
### MANDATORY FIRST STEPS (Agent Execute)
|
|
247
|
-
1.
|
|
248
|
-
2. Run: `ccw spec load --category
|
|
249
|
-
3. Run: `ccw spec load --category test` (test framework, coverage targets, conventions)
|
|
248
|
+
1. Run: `ccw spec load --category planning`
|
|
249
|
+
2. Run: `ccw spec load --category test` (test framework, coverage targets, conventions)
|
|
250
250
|
|
|
251
251
|
---
|
|
252
252
|
|
|
@@ -85,13 +85,13 @@ return "conservative";
|
|
|
85
85
|
```javascript
|
|
86
86
|
// Spawn agent for failure analysis
|
|
87
87
|
const analysisAgentId = spawn_agent({
|
|
88
|
+
agent_type: "cli_planning_agent",
|
|
88
89
|
message: `
|
|
89
90
|
## TASK ASSIGNMENT
|
|
90
91
|
|
|
91
92
|
### MANDATORY FIRST STEPS (Agent Execute)
|
|
92
|
-
1.
|
|
93
|
-
2. Run: `ccw spec load --category
|
|
94
|
-
3. Run: `ccw spec load --category test` (test framework, coverage targets, conventions)
|
|
93
|
+
1. Run: `ccw spec load --category planning`
|
|
94
|
+
2. Run: `ccw spec load --category test` (test framework, coverage targets, conventions)
|
|
95
95
|
|
|
96
96
|
---
|
|
97
97
|
|
|
@@ -152,13 +152,13 @@ close_agent({ id: analysisAgentId });
|
|
|
152
152
|
```javascript
|
|
153
153
|
// Spawn agent for test execution/fixing
|
|
154
154
|
const fixAgentId = spawn_agent({
|
|
155
|
+
agent_type: "test_fix_agent",
|
|
155
156
|
message: `
|
|
156
157
|
## TASK ASSIGNMENT
|
|
157
158
|
|
|
158
159
|
### MANDATORY FIRST STEPS (Agent Execute)
|
|
159
|
-
1.
|
|
160
|
-
2. Run: `ccw spec load --category
|
|
161
|
-
3. Run: `ccw spec load --category test` (test framework, coverage targets, conventions)
|
|
160
|
+
1. Run: `ccw spec load --category execution`
|
|
161
|
+
2. Run: `ccw spec load --category test` (test framework, coverage targets, conventions)
|
|
162
162
|
|
|
163
163
|
---
|
|
164
164
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-code-workflow",
|
|
3
|
-
"version": "7.2.
|
|
3
|
+
"version": "7.2.17",
|
|
4
4
|
"description": "JSON-driven multi-agent development framework with intelligent CLI orchestration (Gemini/Qwen/Codex), context-first architecture, and automated workflow execution",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "ccw/dist/index.js",
|