agentic-sdlc-wizard 1.52.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,59 @@ 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
|
+
|
|
35
|
+
## [1.53.0] - 2026-04-29
|
|
36
|
+
|
|
37
|
+
### Removed
|
|
38
|
+
|
|
39
|
+
- **`scan-community` job in `.github/workflows/weekly-update.yml`** (252 lines including its surrounding header comment block) — closes ROADMAP #231 Phase 3c. The CI cron ran a Claude scan of Reddit/HN/blogs + friction-signal issues at $2-5/run. After Phase 3b deleted its consumer (community-e2e-test), it only created digest issues — value didn't justify the cost. Replacement: maintainer runs `claude --print --allowedTools "WebFetch,Read,Bash" "$(cat .github/prompts/analyze-community.md)"` on Max ($0 sim leg) when interested.
|
|
40
|
+
|
|
41
|
+
### Changed
|
|
42
|
+
|
|
43
|
+
- `.github/prompts/analyze-community.md`: header rewritten with usage block describing the manual `claude --print` invocation. The competitive watchlist is unchanged.
|
|
44
|
+
- `tests/test-workflow-triggers.sh`: 7 tests stubbed (Tests 57, 70b, 70c, 70d, 70f, 113, 164). Test 86 expanded to assert ALL three deleted jobs (version-test, community-e2e-test, scan-community) stay deleted; renamed `_has_two_jobs_post_phase_3b` → `_has_one_job_post_phase_3c`.
|
|
45
|
+
- `tests/test-prove-it.sh`: Test 18 (competitive watchlist) reframed — checks only that `analyze-community.md` retains the watchlist content, not that any CI workflow consumes it.
|
|
46
|
+
- `plans/AUTO_SELF_UPDATE.md`: workflow table updated.
|
|
47
|
+
|
|
48
|
+
### Files
|
|
49
|
+
|
|
50
|
+
- `.github/workflows/weekly-update.yml` (-252 lines)
|
|
51
|
+
- `.github/prompts/analyze-community.md` (+10 lines header)
|
|
52
|
+
- `tests/test-workflow-triggers.sh` (7 stubs, 1 test expanded + renamed)
|
|
53
|
+
- `tests/test-prove-it.sh` (1 test reframed)
|
|
54
|
+
- `plans/AUTO_SELF_UPDATE.md` (1 line updated)
|
|
55
|
+
- Version bump 1.52.0 → 1.53.0
|
|
56
|
+
|
|
57
|
+
### Phase 3 cumulative
|
|
58
|
+
After v1.53.0, weekly-update.yml has only `check-updates` (the cheap detection cron, ~$0.30/run). Phase 3d (split check-updates into detection + Claude-ranker) is the last remaining slice before Phase 4 (full deletion or ~50-line minimum).
|
|
59
|
+
|
|
7
60
|
## [1.52.0] - 2026-04-28
|
|
8
61
|
|
|
9
62
|
### Removed
|
|
@@ -1051,4 +1104,3 @@ The wizard now tracks completed steps in SDLC.md metadata comments. Old users ru
|
|
|
1051
1104
|
- Self-review workflow
|
|
1052
1105
|
- Testing Diamond philosophy
|
|
1053
1106
|
- Mini-retro after tasks
|
|
1054
|
-
|
|
@@ -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,11 @@ 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
|
|
100
|
+
- [1.53.0] delete scan-community cron (#231 Phase 3c) — manual `claude --print` invocation of analyze-community.md
|
|
99
101
|
- [1.52.0] delete community-e2e-test cron (#231 Phase 3b) — manual local-shepherd review of scan-community digest
|
|
100
102
|
- [1.51.0] delete version-test cron (#231 Phase 3a) — manual local-Max replacement via npm i + local-shepherd
|
|
101
103
|
- [1.50.0] local-shepherd.sh --strip-paths flag (#231 Phase 2 — replaces deleted prove-it-test cron)
|