agentic-sdlc-wizard 1.46.1 → 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 +40 -0
- package/CLAUDE_CODE_SDLC_WIZARD.md +2 -2
- package/README.md +1 -1
- package/package.json +1 -1
- package/skills/sdlc/SKILL.md +173 -646
- package/skills/update/SKILL.md +119 -210
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,46 @@ 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
|
+
|
|
24
|
+
## [1.47.0] - 2026-04-27
|
|
25
|
+
|
|
26
|
+
### Added
|
|
27
|
+
|
|
28
|
+
- **Codex review progress wrapper** (closes #259). Consumer reported `codex exec` running opaquely during 1-5 minute xhigh reviews — no signal whether Codex is "still thinking" or "crashed silently". New `scripts/codex-review-with-progress.sh` backgrounds `codex exec` with the same default flags (`xhigh`, `danger-full-access`, `-o`) and emits a heartbeat to stderr every N seconds (`SDLC_CODEX_HEARTBEAT_INTERVAL`, default 10s):
|
|
29
|
+
```
|
|
30
|
+
[codex 0m10s elapsed, 0 bytes written to .reviews/latest-review.md] still running...
|
|
31
|
+
[codex 0m20s elapsed, 1342 bytes written to .reviews/latest-review.md] still running...
|
|
32
|
+
[codex finished in 47s with rc=0]
|
|
33
|
+
```
|
|
34
|
+
- **Signal-safe**: uses interruptible `sleep & wait` pattern (plain `sleep` blocks bash signal delivery for up to INTERVAL seconds). SIGTERM/INT/HUP propagates to the child codex within ~1s via TERM-then-KILL cleanup. No orphan codex processes after wrapper kill.
|
|
35
|
+
- **Preflight binary check**: missing/typoed `codex` binary exits 127 with a clear error before backgrounding anything.
|
|
36
|
+
- **No spurious heartbeats**: loop rechecks liveness after each sleep, so a fast-exiting codex doesn't print one final "still running..." after it has already finished.
|
|
37
|
+
- 11 quality tests (`tests/test-codex-progress-wrapper.sh`) using a stub codex binary — no real OpenAI tokens burned. Codex round 3 CERTIFIED 10/10 (rounds 1-2 surfaced subprocess management bugs: missing trap cleanup, sleep blocking signal delivery, missing-binary not exiting 127 — all fixed with regression tests).
|
|
38
|
+
- `skills/sdlc/SKILL.md` Step 2 documents the wrapper as the recommended invocation for long reviews, alongside the bare `codex exec` form.
|
|
39
|
+
|
|
40
|
+
### Files
|
|
41
|
+
|
|
42
|
+
- `scripts/codex-review-with-progress.sh` (new, ~80 lines)
|
|
43
|
+
- `tests/test-codex-progress-wrapper.sh` (new, 11 tests)
|
|
44
|
+
- `.github/workflows/ci.yml` — wires the new test step
|
|
45
|
+
- `skills/sdlc/SKILL.md` — Step 2 documents the wrapper
|
|
46
|
+
|
|
7
47
|
## [1.46.1] - 2026-04-27
|
|
8
48
|
|
|
9
49
|
### Fixed
|
|
@@ -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 -->
|
package/README.md
CHANGED
|
@@ -45,7 +45,7 @@ npm install -g agentic-sdlc-wizard
|
|
|
45
45
|
sdlc-wizard init
|
|
46
46
|
```
|
|
47
47
|
|
|
48
|
-
**Manual:** Download `CLAUDE_CODE_SDLC_WIZARD.md` to your project and tell Claude `Run the SDLC wizard setup`.
|
|
48
|
+
**Manual (advanced — escape hatch only):** Download `CLAUDE_CODE_SDLC_WIZARD.md` to your project and tell Claude `Run the SDLC wizard setup`. This skips the live-session auto-invoke and is only intended for environments where `npx`, `curl`, `brew`, and `gh` are all unavailable. The default human path is `npx init` → restart CC → first-prompt auto-setup, not this manual flow.
|
|
49
49
|
</details>
|
|
50
50
|
|
|
51
51
|
<details>
|