agentic-sdlc-wizard 1.47.0 → 1.48.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/.claude-plugin/marketplace.json +1 -1
- package/.claude-plugin/plugin.json +1 -1
- package/CHANGELOG.md +17 -0
- package/CLAUDE_CODE_SDLC_WIZARD.md +2 -2
- package/package.json +1 -1
- package/skills/sdlc/SKILL.md +170 -661
- package/skills/update/SKILL.md +119 -211
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,23 @@ All notable changes to the SDLC Wizard.
|
|
|
4
4
|
|
|
5
5
|
> **Note:** This changelog is for humans to read. Don't manually apply these changes - just run the wizard ("Check for SDLC wizard updates") and it handles everything automatically.
|
|
6
6
|
|
|
7
|
+
## [1.48.0] - 2026-04-27
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
- **SKILL.md trim — token bloat audit phase 2 follow-up.** PR #272's new `scripts/audit-session-load.sh` flagged 2 of 4 SKILL.md files as TRIM candidates (>=5000 tokens each — `skills/sdlc/SKILL.md` at 12,427t, `skills/update/SKILL.md` at 8,555t). Acting on the tool's findings closes the Prove-It loop: a tool that surfaces real bloat whose owner ignores it is just a louder lint warning. Both skills trimmed below threshold without losing operational content:
|
|
12
|
+
- `skills/sdlc/SKILL.md`: 12,427 → 4,995 tokens (-60%, 49,709 → 19,983 chars). Compressed prose, removed ASCII-art decoration boxes (kept the **bold sentences** they contained), tightened cross-model review section while preserving every Codex command, sandbox note, dialogue-loop template, and convergence rule. TodoWrite checklist intact (all 30 items, with `activeForm` removed since the spinner falls back to `subject` when omitted).
|
|
13
|
+
- `skills/update/SKILL.md`: 8,555 → 4,044 tokens (-53%, 34,220 → 16,179 chars). Step 1.5 CLI version detection's 30-line Node `cmp()` helper replaced with prose describing the algorithm (split on `-`, numeric major.minor.patch, prerelease ordering — `1.40.0-beta.1 < 1.40.0`). Step 3 changelog example shortened from 20-line frozen list to a placeholder pointing at the actual fetched CHANGELOG.
|
|
14
|
+
- Test anchor preservation traced manually: every grep'd phrase across `tests/test-{doc-consistency,self-update,update-skill-step-7-7,update-skill-cli-version,memory-audit-protocol,docs-usability,cli,prove-it,hooks}.sh` verified to still match. 45 unit suites + 4 e2e quick-tests green.
|
|
15
|
+
- **New quality test** (`tests/test-audit-session-load.sh`): `test_wizard_own_skills_below_threshold` runs the audit on the wizard repo itself and fails if any SKILL.md flags TRIM. RED before the trim (both files flagged), GREEN after. Mutation-verifiable: bumping either file ~200 tokens flips the test red.
|
|
16
|
+
- Codex round 1 CERTIFIED 10/10. No findings — Codex did its own RED/GREEN proof (stashed only the trimmed skill files to keep the new test active), verified every checklist item with shell evidence, ran the full CONTRIBUTING.md test suite, and read both files end-to-end against `git show HEAD:...` for semantic completeness.
|
|
17
|
+
|
|
18
|
+
### Files
|
|
19
|
+
|
|
20
|
+
- `skills/sdlc/SKILL.md` (trimmed)
|
|
21
|
+
- `skills/update/SKILL.md` (trimmed)
|
|
22
|
+
- `tests/test-audit-session-load.sh` (+test_wizard_own_skills_below_threshold)
|
|
23
|
+
|
|
7
24
|
## [1.47.0] - 2026-04-27
|
|
8
25
|
|
|
9
26
|
### Added
|
|
@@ -2967,7 +2967,7 @@ If deployment fails or post-deploy verification catches issues:
|
|
|
2967
2967
|
|
|
2968
2968
|
**SDLC.md:**
|
|
2969
2969
|
```markdown
|
|
2970
|
-
<!-- SDLC Wizard Version: 1.
|
|
2970
|
+
<!-- SDLC Wizard Version: 1.48.0 -->
|
|
2971
2971
|
<!-- Setup Date: [DATE] -->
|
|
2972
2972
|
<!-- Completed Steps: step-0.1, step-0.2, step-0.4, step-1, step-2, step-3, step-4, step-5, step-6, step-7, step-8, step-9 -->
|
|
2973
2973
|
<!-- Git Workflow: [PRs or Solo] -->
|
|
@@ -4032,7 +4032,7 @@ Walk through updates? (y/n)
|
|
|
4032
4032
|
Store wizard state in `SDLC.md` as metadata comments (invisible to readers, parseable by Claude):
|
|
4033
4033
|
|
|
4034
4034
|
```markdown
|
|
4035
|
-
<!-- SDLC Wizard Version: 1.
|
|
4035
|
+
<!-- SDLC Wizard Version: 1.48.0 -->
|
|
4036
4036
|
<!-- Setup Date: 2026-01-24 -->
|
|
4037
4037
|
<!-- Completed Steps: step-0.1, step-0.2, step-1, step-2, step-3, step-4, step-5, step-6, step-7, step-8, step-9 -->
|
|
4038
4038
|
<!-- Git Workflow: PRs -->
|