@laitszkin/apollo-toolkit 3.8.0 → 3.8.1

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/CHANGELOG.md CHANGED
@@ -12,6 +12,11 @@ All notable changes to this repository are documented in this file.
12
12
  - Strip ~375 lines of verbosity across 32 skill files: remove empty Dependencies sections, merge redundant Overview paragraphs, deduplicate repeated principles in `generate-spec`, and consolidate `archive-specs` workflow steps
13
13
  - Extract inline output templates and issue schemas into skill-local reference files for `scheduled-runtime-health-check` and `open-github-issue`
14
14
 
15
+ ## [v3.8.1] - 2026-05-01
16
+
17
+ ### Changed
18
+ - Enhance `solve-issues-found-during-review` skill: add finding classification by module and business logic chain, parallel sub-agent deployment with isolated workspaces, and change consolidation with conflict resolution; fall back to sequential fixing when sub-agents are unavailable
19
+
15
20
  ## [Unreleased]
16
21
 
17
22
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@laitszkin/apollo-toolkit",
3
- "version": "3.8.0",
3
+ "version": "3.8.1",
4
4
  "description": "Apollo Toolkit npm installer for managed skill copying across Codex, OpenClaw, and Trae.",
5
5
  "license": "MIT",
6
6
  "author": "LaiTszKin",
@@ -9,6 +9,7 @@ description: Fix issues discovered during a review pass (review-change-set, revi
9
9
 
10
10
  - Required: none. This skill reads issues from a review report that must already exist or be supplied by the caller.
11
11
  - Conditional: `review-change-set` for re-validation after fixes when the fix set is code-affecting; `systematic-debug` when a fix attempt encounters unexpected test or runtime failures.
12
+ - Conditional: When parallel sub-agents are available, the capability to merge changes from independent workspaces and resolve inter-workspace conflicts after parallel fix work.
12
13
  - Optional: `discover-edge-cases` to confirm edge-case coverage after fixing; `harden-app-security` to confirm security fixes are effective.
13
14
  - Fallback: If a required re-validation dependency is unavailable after a code-affecting fix, run `git diff --stat` and relevant tests manually and report what was verified.
14
15
 
@@ -39,9 +40,52 @@ Group findings into ordered buckets:
39
40
 
40
41
  Within each bucket, order by the reviewer's stated priority. If the review does not assign severity, treat architecture/business-goal gaps as High and simplification/style suggestions as Low.
41
42
 
42
- ### 3) Fix findings from highest severity to lowest
43
+ ### 3) Classify findings by module and business logic chain
43
44
 
44
- For each finding in priority order:
45
+ Before fixing, group findings by:
46
+
47
+ - **Module**: which subsystem, component, or layer each finding belongs to.
48
+ - **Business logic chain**: findings along the same data flow, request path, or feature pipeline.
49
+
50
+ This classification determines which findings can be fixed independently in parallel and which share dependencies that require coordinated treatment.
51
+
52
+ ### 4) Deploy parallel fix work (when sub-agent capability is available)
53
+
54
+ If the runtime supports spawning sub-agents with isolated workspaces:
55
+
56
+ **a. Assign each module group to a sub-agent**
57
+
58
+ - Group findings by the classification above. Each independent module or business chain becomes a work package.
59
+ - Assign each work package to a sub-agent, giving it the relevant findings, the affected file paths, and the original review context.
60
+ - Each sub-agent works in its own isolated workspace with no risk of interfering with others.
61
+
62
+ **b. Sub-agents fix and validate their assigned findings**
63
+
64
+ Each sub-agent independently:
65
+
66
+ - Reads its assigned findings and the affected code.
67
+ - Applies the minimal fix for each finding in severity order within its scope.
68
+ - Validates correctness (tests, reproduction steps, linting) before marking findings as resolved.
69
+ - Reports back which findings were fixed, deferred, or could not be reproduced, along with a summary of changes.
70
+
71
+ **c. Consolidate and resolve conflicts**
72
+
73
+ After all sub-agents complete:
74
+
75
+ - Merge changes from each isolated workspace back into the main workspace, one at a time.
76
+ - If conflicts arise, resolve them by keeping both sides of the fix intent — do not discard either party's changes unless they are truly contradictory.
77
+ - When two fixes touch the same code, prefer the more conservative change (less behavioral deviation) unless the review finding explicitly demands the more aggressive one.
78
+ - If a conflict cannot be resolved without deviating from the original fix intent, flag it for manual review and move on.
79
+
80
+ **d. Re-validate after consolidation**
81
+
82
+ Run all relevant tests across the consolidated changes to confirm the merged result is correct.
83
+
84
+ If the runtime does **not** support sub-agents with isolated workspaces, fall back to fixing findings sequentially in severity order as described in the next step.
85
+
86
+ ### 5) Fix findings sequentially (fallback when sub-agents are unavailable)
87
+
88
+ For each finding in priority order, when parallel sub-agent capability is not available:
45
89
 
46
90
  **a. Understand the finding and the fix target**
47
91
 
@@ -65,7 +109,7 @@ For each finding in priority order:
65
109
 
66
110
  Proceed to the next finding. Do not skip severity levels: finish all Critical findings before starting High, etc.
67
111
 
68
- ### 4) Re-validate the full scope
112
+ ### 6) Re-validate the full scope
69
113
 
70
114
  When all findings have been processed:
71
115
 
@@ -73,7 +117,7 @@ When all findings have been processed:
73
117
  - Run all relevant tests across the changed files.
74
118
  - Run `git diff --stat` to produce a summary of what changed.
75
119
 
76
- ### 5) Report the result
120
+ ### 7) Report the result
77
121
 
78
122
  Return:
79
123