@laitszkin/apollo-toolkit 3.7.0 → 3.8.0

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/AGENTS.md CHANGED
@@ -58,6 +58,7 @@ This repository enables users to install and run a curated set of reusable agent
58
58
  - Users can schedule a bounded project runtime window, stop it automatically, and analyze module health from captured logs.
59
59
  - Users can investigate gated or shadow LLM APIs by capturing real client request shapes, replaying verified traffic patterns, and attributing the likely underlying model through black-box fingerprinting.
60
60
  - Users can build and maintain Solana programs and Rust clients using official Solana development workflows.
61
+ - Users can fix issues discovered during a review pass by processing findings from highest to lowest severity, with per-fix validation and full-scope re-validation.
61
62
  - Users can add focused observability to opaque workflows through targeted logs, metrics, traces, and tests.
62
63
  - Users can iteratively improve repository code quality through behavior-neutral naming, simplification, module-boundary, logging, and test-coverage passes.
63
64
  - Users can iteratively improve repository performance through evidence-backed module scans, safe hot-path optimization, benchmark guardrails, batching, caching, allocation, concurrency, and repeated full-codebase stage gates.
package/CHANGELOG.md CHANGED
@@ -17,6 +17,11 @@ All notable changes to this repository are documented in this file.
17
17
  ### Added
18
18
  - (None yet)
19
19
 
20
+ ## [v3.8.0] - 2026-04-30
21
+
22
+ ### Added
23
+ - Add `solve-issues-found-during-review` skill: fix review findings from highest to lowest severity with per-fix validation and full-scope re-validation
24
+
20
25
  ## [v3.6.5] - 2026-04-29
21
26
 
22
27
  ### Fixed
package/README.md CHANGED
@@ -49,6 +49,7 @@ A curated skill catalog for Codex, OpenClaw, Trae, Agents, and Claude Code with
49
49
  - scheduled-runtime-health-check
50
50
  - shadow-api-model-research
51
51
  - solana-development
52
+ - solve-issues-found-during-review
52
53
  - submission-readiness-check
53
54
  - systematic-debug
54
55
  - test-case-strategy
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@laitszkin/apollo-toolkit",
3
- "version": "3.7.0",
3
+ "version": "3.8.0",
4
4
  "description": "Apollo Toolkit npm installer for managed skill copying across Codex, OpenClaw, and Trae.",
5
5
  "license": "MIT",
6
6
  "author": "LaiTszKin",
@@ -0,0 +1,9 @@
1
+ # Changelog
2
+
3
+ All notable changes to this skill are documented in this file.
4
+
5
+ ## [1.0.0] - 2026-04-30
6
+
7
+ ### Added
8
+
9
+ - Initial skill: fix review findings from highest to lowest severity with per-fix validation and full-scope re-validation.
@@ -0,0 +1,16 @@
1
+ # Solve Issues Found During Review
2
+
3
+ Fix issues discovered during a review pass, proceeding from the highest-severity finding down to the lowest, until all confirmed issues are resolved.
4
+
5
+ ## Usage
6
+
7
+ ```
8
+ $solve-issues-found-during-review
9
+ ```
10
+
11
+ Provide a review report (from `review-change-set`, `review-spec-related-changes`, `review-codebases`, `discover-edge-cases`, `harden-app-security`, or any structured review) and this skill will:
12
+
13
+ 1. Read and prioritize all findings by severity
14
+ 2. Fix each finding from Critical down to Low
15
+ 3. Validate each fix before proceeding
16
+ 4. Re-validate the full scope when all fixes are complete
@@ -0,0 +1,90 @@
1
+ ---
2
+ name: solve-issues-found-during-review
3
+ description: Fix issues discovered during a review pass (review-change-set, review-spec-related-changes, review-codebases, discover-edge-cases, harden-app-security, or any structured review), proceeding from the highest-severity finding down to the lowest, until all confirmed issues are resolved. Use when users ask to fix review findings, resolve review issues, implement review feedback on code, or address audit/security review findings.
4
+ ---
5
+
6
+ # Solve Issues Found During Review
7
+
8
+ ## Dependencies
9
+
10
+ - Required: none. This skill reads issues from a review report that must already exist or be supplied by the caller.
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
+ - Optional: `discover-edge-cases` to confirm edge-case coverage after fixing; `harden-app-security` to confirm security fixes are effective.
13
+ - 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
+ ## Standards
16
+
17
+ - Evidence: Read the full review report and the affected code before implementing any fix. Every fix must be grounded in a confirmed finding from the review.
18
+ - Execution: Fix issues in strict severity order (Critical → High → Medium → Low). After each fix, validate the change preserves correctness before moving to the next issue. Re-run the original review scope when all fixes are complete to confirm no regression and no remaining finding.
19
+ - Quality: Fix only issues confirmed by the review report. Do not expand scope with speculative improvements, unrelated refactors, or style-only changes. Each fix must be minimal and targeted.
20
+ - Output: Report which findings were fixed, how each was validated, any findings that could not be reproduced or fixed (with reasons), and the final re-validation result.
21
+
22
+ ## Workflow
23
+
24
+ ### 1) Read the review report
25
+
26
+ - Read the review report or finding list that the user provides.
27
+ - If the user did not provide a review report but says "fix the review findings", inspect current git state and recent review outputs to reconstruct the finding list.
28
+ - If no review report can be found, stop and report that no review findings are available to act on.
29
+ - Extract every confirmed finding with its severity, title, evidence (`path:line`), and reproduction evidence.
30
+
31
+ ### 2) Prioritize findings by severity
32
+
33
+ Group findings into ordered buckets:
34
+
35
+ 1. Critical
36
+ 2. High
37
+ 3. Medium
38
+ 4. Low
39
+
40
+ 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
+ ### 3) Fix findings from highest severity to lowest
43
+
44
+ For each finding in priority order:
45
+
46
+ **a. Understand the finding and the fix target**
47
+
48
+ - Read the affected code paths end-to-end.
49
+ - Read the reviewer's reproduction evidence and hardening guidance.
50
+ - Determine the minimal fix that resolves the finding without changing unrelated behavior.
51
+
52
+ **b. Apply the fix**
53
+
54
+ - Make the targeted code change.
55
+ - Keep the fix scoped to the finding. Do not expand scope.
56
+
57
+ **c. Validate the fix**
58
+
59
+ - Run the most specific tests covering the changed code.
60
+ - If tests fail, invoke `$systematic-debug` to resolve the failure before proceeding.
61
+ - If the finding includes reproduction steps, verify the reproduction no longer triggers.
62
+ - Only mark the finding as fixed when validation passes.
63
+
64
+ **d. Track progress**
65
+
66
+ Proceed to the next finding. Do not skip severity levels: finish all Critical findings before starting High, etc.
67
+
68
+ ### 4) Re-validate the full scope
69
+
70
+ When all findings have been processed:
71
+
72
+ - If the fix set is code-affecting, optionally run `$review-change-set` on the updated diff to confirm no new issues were introduced.
73
+ - Run all relevant tests across the changed files.
74
+ - Run `git diff --stat` to produce a summary of what changed.
75
+
76
+ ### 5) Report the result
77
+
78
+ Return:
79
+
80
+ 1. Summary of all findings processed, grouped by severity.
81
+ 2. For each finding: status (`Fixed`, `Could not reproduce`, `Deferred`), path:line, and validation evidence.
82
+ 3. Final re-validation: new review result (if run), test results, and git change summary.
83
+ 4. Any residual findings that were deferred or could not be fixed, with reasons.
84
+ 5. Next steps: what the user should verify before merging (e.g., manual QA, integration tests, deployment review).
85
+
86
+ ## Notes
87
+
88
+ - This skill fixes code only. It does not update specs, documentation, or project constraints unless the review finding explicitly requires it.
89
+ - If the original review report contained hypotheses or unconfirmed risks, leave those untouched — only confirmed findings are actionable.
90
+ - When a finding cannot be reproduced after inspecting the code, report `Could not reproduce` and move to the next finding.
@@ -0,0 +1,4 @@
1
+ interface:
2
+ display_name: "Solve Issues Found During Review"
3
+ short_description: "Fix review findings from high to low severity"
4
+ default_prompt: "Use $solve-issues-found-during-review to process a review report or finding list, fix each confirmed issue in severity order (Critical → High → Medium → Low), validate every fix before proceeding, and re-validate the full scope when all issues are resolved."