agentic-sdlc-wizard 1.50.0 → 1.52.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.
@@ -13,7 +13,7 @@
13
13
  "name": "sdlc-wizard",
14
14
  "source": ".",
15
15
  "description": "SDLC enforcement for AI agents — TDD, planning, self-review, CI shepherd",
16
- "version": "1.50.0",
16
+ "version": "1.52.0",
17
17
  "author": {
18
18
  "name": "Stefan Ayala"
19
19
  },
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sdlc-wizard",
3
- "version": "1.50.0",
3
+ "version": "1.52.0",
4
4
  "description": "SDLC enforcement for AI agents — TDD, planning, self-review, CI shepherd",
5
5
  "author": {
6
6
  "name": "Stefan Ayala",
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.52.0] - 2026-04-28
8
+
9
+ ### Removed
10
+
11
+ - **`community-e2e-test` job in `.github/workflows/weekly-update.yml`** (231 lines) — closes ROADMAP #231 Phase 3b. The CI job ran "apply community findings → Phase A baseline → Phase B candidate → compare_ci" on every external community finding at $8-15/run. 30-day window: 1 merged artifact (community-patterns/2026-04-23). Replacement: maintainer reviews the digest issue from `scan-community`, manually applies findings, runs `tests/e2e/local-shepherd.sh <PR> --compare-baseline` locally on Max ($0 sim leg).
12
+
13
+ ### Changed
14
+
15
+ - `tests/test-workflow-triggers.sh`: 3 community-e2e tests stubbed to "n/a per #231 Phase 3b" (Test 70, 70e, 88). Test 86 expanded to assert BOTH version-test AND community-e2e-test stay deleted (renamed to `test_weekly_update_has_two_jobs_post_phase_3b`, expected = ['check-updates', 'scan-community']).
16
+ - `plans/AUTO_SELF_UPDATE.md`: workflow table + E2E Testing line updated to reflect both deletions.
17
+
18
+ ### Files
19
+
20
+ - `.github/workflows/weekly-update.yml` (-231 lines)
21
+ - `tests/test-workflow-triggers.sh` (3 stubs, 1 test expanded + renamed)
22
+ - `plans/AUTO_SELF_UPDATE.md` (2 lines updated)
23
+ - Version bump 1.51.0 → 1.52.0 across the usual files
24
+
25
+ ## [1.51.0] - 2026-04-27
26
+
27
+ ### Removed
28
+
29
+ - **`version-test` job in `.github/workflows/weekly-update.yml`** (319 lines) — closes ROADMAP #231 Phase 3a. The CI job ran two-phase E2E (Phase A regression + Phase B improvement) on every detected CC release with `path_to_claude_code_executable` to install + test specific versions. Cost: $8-20/run with zero merged artifacts in 30 days. Replacement: manual local-Max procedure using the v1.49.0+ shepherd (`npm i -g @anthropic-ai/claude-code@<version> && tests/e2e/local-shepherd.sh <PR> --compare-baseline`). Auto-update PRs no longer get auto-validated; the maintainer runs the shepherd before merging.
30
+
31
+ ### Changed
32
+
33
+ - `tests/test-self-update.sh`: 3 version-test gate tests stubbed to "n/a per #231 Phase 3a" (preserves harness counters; remove after one release if no regressions). Added regression test verifying CI_CD.md documents the manual local replacement.
34
+ - `tests/test-workflow-triggers.sh`: 4 tests updated. Test 86 inverted to ensure version-test stays deleted (any future resurrection emits VERSION_TEST_RESURRECTED). Tests 87, 93, 95 stubbed.
35
+ - `CI_CD.md` "Two-Phase Version Testing" section rewritten with the manual local-shepherd procedure.
36
+ - `plans/AUTO_SELF_UPDATE.md` "Two-Phase Version Testing" section marked DELETED with the local replacement runbook.
37
+
38
+ ### Files
39
+
40
+ - `.github/workflows/weekly-update.yml` (-319 lines)
41
+ - `tests/test-self-update.sh` (4 tests stubbed/updated)
42
+ - `tests/test-workflow-triggers.sh` (4 tests stubbed/inverted)
43
+ - `CI_CD.md` (1 section rewritten)
44
+ - `plans/AUTO_SELF_UPDATE.md` (1 section rewritten)
45
+ - Version bump 1.50.0 → 1.51.0 across the usual files
46
+
7
47
  ## [1.50.0] - 2026-04-27
8
48
 
9
49
  ### Added
@@ -91,13 +91,20 @@ When your AI tools update, how do you know if the update is safe?
91
91
 
92
92
  This prevents both false positives (crying wolf) and false negatives (missing real regressions).
93
93
 
94
- **How We Apply This:**
95
- - Weekly workflow tests new Claude Code versions before recommending upgrade
96
- - Version-pinned gate: installs the specific CC version and passes it via `path_to_claude_code_executable` so E2E actually runs the new binary
97
- - Phase A: Does new CC version break SDLC enforcement?
98
- - Phase B: Do changelog-suggested improvements actually help?
99
- - Green CI = safe to upgrade. Red = stay on current version until fixed
100
- - Results shown in PR with statistical confidence
94
+ **How We Apply This (post-ROADMAP #231 Phase 3a, v1.51.0+):**
95
+ - Weekly workflow detects new Claude Code versions and opens an auto-update PR
96
+ - Maintainer runs the version-test locally on Max before merging:
97
+ ```
98
+ npm i -g @anthropic-ai/claude-code@<new_version>
99
+ gh pr checkout <auto_update_pr>
100
+ tests/e2e/local-shepherd.sh <pr> --compare-baseline
101
+ ```
102
+ - Phase A semantics (regression): score delta vs main shows whether the new CC version breaks our SDLC enforcement
103
+ - Phase B semantics (improvement): include changelog-suggested doc changes in the PR before running the shepherd
104
+ - Green delta = safe to upgrade. Red = stay on current version until fixed
105
+ - Results posted as a check-run + PR comment with provenance (host, claude version, execution_path)
106
+
107
+ **Historical:** through v1.50.0, this was a CI cron job (`version-test` in `weekly-update.yml`, $8-20/run) that auto-installed the new version and ran Phase A/B Tier 1+2. Deleted in v1.51.0 because it ran on every release detection regardless of relevance, with zero merged artifacts in 30 days.
101
108
 
102
109
  ### Benchmark Ceiling Effect (Known Issue — April 2026)
103
110
 
@@ -2967,7 +2974,7 @@ If deployment fails or post-deploy verification catches issues:
2967
2974
 
2968
2975
  **SDLC.md:**
2969
2976
  ```markdown
2970
- <!-- SDLC Wizard Version: 1.50.0 -->
2977
+ <!-- SDLC Wizard Version: 1.52.0 -->
2971
2978
  <!-- Setup Date: [DATE] -->
2972
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 -->
2973
2980
  <!-- Git Workflow: [PRs or Solo] -->
@@ -4032,7 +4039,7 @@ Walk through updates? (y/n)
4032
4039
  Store wizard state in `SDLC.md` as metadata comments (invisible to readers, parseable by Claude):
4033
4040
 
4034
4041
  ```markdown
4035
- <!-- SDLC Wizard Version: 1.50.0 -->
4042
+ <!-- SDLC Wizard Version: 1.52.0 -->
4036
4043
  <!-- Setup Date: 2026-01-24 -->
4037
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 -->
4038
4045
  <!-- Git Workflow: PRs -->
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentic-sdlc-wizard",
3
- "version": "1.50.0",
3
+ "version": "1.52.0",
4
4
  "description": "SDLC enforcement for Claude Code — hooks, skills, and wizard setup in one command",
5
5
  "bin": {
6
6
  "sdlc-wizard": "cli/bin/sdlc-wizard.js"
@@ -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.50.0
96
+ Latest: 1.52.0
97
97
 
98
98
  What changed:
99
+ - [1.52.0] delete community-e2e-test cron (#231 Phase 3b) — manual local-shepherd review of scan-community digest
100
+ - [1.51.0] delete version-test cron (#231 Phase 3a) — manual local-Max replacement via npm i + local-shepherd
99
101
  - [1.50.0] local-shepherd.sh --strip-paths flag (#231 Phase 2 — replaces deleted prove-it-test cron)
100
102
  - [1.49.0] local-shepherd.sh --compare-baseline flag (#230)
101
103
  - [1.48.0] SKILL.md trim — token bloat audit phase 2 follow-up