agentic-sdlc-wizard 1.49.0 → 1.50.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.49.0",
16
+ "version": "1.50.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.49.0",
3
+ "version": "1.50.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,31 @@ 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.50.0] - 2026-04-27
8
+
9
+ ### Added
10
+
11
+ - **`local-shepherd.sh --strip-paths` flag** — closes ROADMAP #231 Phase 2. When CC ships native equivalents to wizard custom features, the maintainer runs `local-shepherd.sh <PR> --compare-baseline --strip-paths '[paths]'` locally on Max to A/B compare wizard-with-features (baseline) vs wizard-without-stripped-features (candidate). Same-commit comparison (no main worktree). Both `BASELINE_DIR` and `CANDIDATE_DIR` are tmpdirs laid out as project roots; the candidate's fixture has the requested paths removed via `create_stripped_fixture` from `tests/e2e/lib/prove-it.sh` (single source of truth for the allowlist). Score-history rows tagged with `comparison_role: "baseline" | "candidate"` (same contract as plain `--compare-baseline`).
12
+ - **Validation**: paths must be in `REMOVABLE_ALLOWLIST` from `tests/e2e/lib/prove-it.sh`. Non-allowlisted paths (e.g. `/etc/passwd`) are rejected — security against LLM-hallucinated arbitrary deletions.
13
+ - **Constraint**: `--strip-paths` requires `--compare-baseline` (lone `--strip-paths` exits with a clear error). No silent fall-through to single-run mode.
14
+ - 8 new quality tests (30/30 total in `test-local-shepherd.sh`).
15
+
16
+ ### Removed
17
+
18
+ - **`prove-it-test` job in `.github/workflows/weekly-update.yml`** (251 lines) — replaced by the local `--strip-paths` flag. The CI job ran $6-12 per overlap detection with zero merged artifacts in 30 days. Local-Max replacement is $0 (sim leg on subscription) and gives the maintainer richer context to decide KEEP CUSTOM / SWITCH TO NATIVE.
19
+
20
+ ### Changed
21
+
22
+ - `tests/test-prove-it.sh`: replaced workflow-existence tests (#11-#12) with local-shepherd integration tests; added a regression test that the `prove-it-test` job stays deleted. All 20 tests green.
23
+ - `CI_CD.md` and `plans/AUTO_SELF_UPDATE.md`: updated to document the local replacement workflow. Historical section preserves the deleted CI job's intent.
24
+
25
+ ### Files
26
+
27
+ - `tests/e2e/local-shepherd.sh` (+105 lines, ~35 changed)
28
+ - `tests/test-local-shepherd.sh` (+~180 lines, +8 tests)
29
+ - `tests/test-prove-it.sh` (replaced 3 tests with 4 better-targeted ones)
30
+ - `.github/workflows/weekly-update.yml` (-251 lines)
31
+
7
32
  ## [1.49.0] - 2026-04-27
8
33
 
9
34
  ### 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.49.0 -->
2970
+ <!-- SDLC Wizard Version: 1.50.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.49.0 -->
4035
+ <!-- SDLC Wizard Version: 1.50.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentic-sdlc-wizard",
3
- "version": "1.49.0",
3
+ "version": "1.50.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,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.49.0
96
+ Latest: 1.50.0
97
97
 
98
98
  What changed:
99
+ - [1.50.0] local-shepherd.sh --strip-paths flag (#231 Phase 2 — replaces deleted prove-it-test cron)
99
100
  - [1.49.0] local-shepherd.sh --compare-baseline flag (#230)
100
101
  - [1.48.0] SKILL.md trim — token bloat audit phase 2 follow-up
101
102
  - [1.47.0] Codex review progress wrapper (#259)