agentic-sdlc-wizard 1.53.0 → 1.54.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/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,34 @@ 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.54.0] - 2026-04-29
|
|
8
|
+
|
|
9
|
+
### Removed
|
|
10
|
+
|
|
11
|
+
- **In-CI Claude-ranker steps in `.github/workflows/weekly-update.yml`** (~150 lines: Build analysis prompt + Analyze release with Claude + Extract from output + parse). Closes ROADMAP #231 Phase 3d. Replaced with a 12-line placeholder step that writes a stub `/tmp/analysis.json` with `relevance: "UNKNOWN"` and a summary linking the maintainer to the manual command. The auto-update PR body now surfaces the on-Max invocation:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
gh release view <version> --repo anthropics/claude-code --json body --jq .body > /tmp/release_notes.md
|
|
15
|
+
claude --print --allowedTools "Read,Bash" \
|
|
16
|
+
"$(cat .github/prompts/analyze-release.md)\n\n## Release\n\nVersion: <ver>\n\nNotes:\n$(cat /tmp/release_notes.md)"
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
### Phase 3 cumulative (after this release)
|
|
20
|
+
|
|
21
|
+
- **weekly-update.yml is now zero-API-spend.** No `claude-code-action@v1` calls in the workflow at all. Cron burn down from $25-55/week (pre-Phase 1) to $0/week. Only ~$0.30/run for the GH API release detection itself.
|
|
22
|
+
- 5 jobs/workflows deleted: monthly-research workflow (Phase 1), prove-it-test job (Phase 2), version-test job (Phase 3a), community-e2e-test job (Phase 3b), scan-community job (Phase 3c). Plus the in-job analysis chain in check-updates (Phase 3d).
|
|
23
|
+
- Phase 4 next: shrink weekly-update.yml further (currently 285 lines after Phase 3d) or fold detection into the session-start hook.
|
|
24
|
+
|
|
25
|
+
### Changed
|
|
26
|
+
|
|
27
|
+
- `tests/test-workflow-triggers.sh`: 2 tests updated. Test 54 inverted to assert no `uses: anthropics/claude-code-action` directive remains (regression check). Test 109 stubbed (the deleted analysis step's `--bare` flag check is moot).
|
|
28
|
+
|
|
29
|
+
### Files
|
|
30
|
+
|
|
31
|
+
- `.github/workflows/weekly-update.yml` (-99 lines net: -150 deleted ranker chain, +51 placeholder + maintainer-instructions PR body)
|
|
32
|
+
- `tests/test-workflow-triggers.sh` (2 tests)
|
|
33
|
+
- Version bump 1.53.0 → 1.54.0
|
|
34
|
+
|
|
7
35
|
## [1.53.0] - 2026-04-29
|
|
8
36
|
|
|
9
37
|
### Removed
|
|
@@ -1076,4 +1104,3 @@ The wizard now tracks completed steps in SDLC.md metadata comments. Old users ru
|
|
|
1076
1104
|
- Self-review workflow
|
|
1077
1105
|
- Testing Diamond philosophy
|
|
1078
1106
|
- Mini-retro after tasks
|
|
1079
|
-
|
|
@@ -2974,7 +2974,7 @@ If deployment fails or post-deploy verification catches issues:
|
|
|
2974
2974
|
|
|
2975
2975
|
**SDLC.md:**
|
|
2976
2976
|
```markdown
|
|
2977
|
-
<!-- SDLC Wizard Version: 1.
|
|
2977
|
+
<!-- SDLC Wizard Version: 1.54.0 -->
|
|
2978
2978
|
<!-- Setup Date: [DATE] -->
|
|
2979
2979
|
<!-- 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 -->
|
|
2980
2980
|
<!-- Git Workflow: [PRs or Solo] -->
|
|
@@ -4039,7 +4039,7 @@ Walk through updates? (y/n)
|
|
|
4039
4039
|
Store wizard state in `SDLC.md` as metadata comments (invisible to readers, parseable by Claude):
|
|
4040
4040
|
|
|
4041
4041
|
```markdown
|
|
4042
|
-
<!-- SDLC Wizard Version: 1.
|
|
4042
|
+
<!-- SDLC Wizard Version: 1.54.0 -->
|
|
4043
4043
|
<!-- Setup Date: 2026-01-24 -->
|
|
4044
4044
|
<!-- 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 -->
|
|
4045
4045
|
<!-- Git Workflow: PRs -->
|
package/package.json
CHANGED
package/skills/update/SKILL.md
CHANGED
|
@@ -93,9 +93,10 @@ Parse CHANGELOG entries between the user's installed version and latest. Present
|
|
|
93
93
|
|
|
94
94
|
```
|
|
95
95
|
Installed: 1.42.0
|
|
96
|
-
Latest: 1.
|
|
96
|
+
Latest: 1.54.0
|
|
97
97
|
|
|
98
98
|
What changed:
|
|
99
|
+
- [1.54.0] delete check-updates Claude-ranker (#231 Phase 3d) — weekly-update.yml is now zero-API-spend; auto-update PR body links the manual analyze-release.md command
|
|
99
100
|
- [1.53.0] delete scan-community cron (#231 Phase 3c) — manual `claude --print` invocation of analyze-community.md
|
|
100
101
|
- [1.52.0] delete community-e2e-test cron (#231 Phase 3b) — manual local-shepherd review of scan-community digest
|
|
101
102
|
- [1.51.0] delete version-test cron (#231 Phase 3a) — manual local-Max replacement via npm i + local-shepherd
|