agentic-sdlc-wizard 1.35.0 → 1.36.1

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.35.0",
16
+ "version": "1.36.1",
17
17
  "author": {
18
18
  "name": "Stefan Ayala"
19
19
  },
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "sdlc-wizard",
3
- "version": "1.35.0",
3
+ "version": "1.36.1",
4
4
  "description": "SDLC enforcement for AI agents — TDD, planning, self-review, CI shepherd",
5
5
  "author": {
6
6
  "name": "Stefan Ayala",
7
7
  "url": "https://github.com/BaseInfinity"
8
8
  },
9
- "repository": "https://github.com/BaseInfinity/agentic-ai-sdlc-wizard",
9
+ "repository": "https://github.com/BaseInfinity/claude-sdlc-wizard",
10
10
  "license": "MIT",
11
11
  "keywords": ["sdlc", "tdd", "code-quality", "ai-agent", "developer-tools"]
12
12
  }
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.36.1] - 2026-04-23
8
+
9
+ ### Changed
10
+
11
+ - **Repo renamed `agentic-ai-sdlc-wizard` → `claude-sdlc-wizard`.** Matches sibling pattern (`codex-sdlc-wizard`, future `opencode-sdlc-wizard`). GitHub auto-redirects old URLs for git + web. **npm package name unchanged** (`agentic-sdlc-wizard`) — brand-neutral, safer re: Anthropic trademark guidelines, and avoids disruptive npm rename.
12
+ - **Slug migration across docs/tests/configs.** All repo-internal references to the old slug updated: `README.md`, `CLAUDE_CODE_SDLC_WIZARD.md`, `CONTRIBUTING.md`, `ROADMAP.md`, `package.json` `repository.url`, raw GitHub URL fetches in `tests/test-self-update.sh`, CI workflow references. GitHub handles the redirect transparently but keeping internal references in sync prevents future drift.
13
+ - **`npm pkg fix` applied to `package.json`.** Normalizes `bin` path (drops leading `./`), `repository.url` form (`git+https://...`). Resolves `npm warn` messages surfaced during v1.36.0 publish.
14
+
15
+ ### Process
16
+
17
+ - Codex cross-model review on the slug-migration + `npm pkg fix` PR.
18
+ - Release workflow `workflow_dispatch` fallback added in v1.36.0 via PR #221 proved its worth on v1.36.0 publish (tag-push trigger didn't fire; manual dispatch unblocked). Kept as permanent safety net.
19
+
20
+ ## [1.36.0] - 2026-04-23
21
+
22
+ ### Added
23
+
24
+ - **Regression test: every ci.yml `steps.X.outputs.Y` reference must resolve** (#214 / ROADMAP #215). Python+PyYAML test walks ci.yml, builds per-job map of step_id → emitted outputs (handles `NAME=val` and heredoc `NAME<<EOF`), and flags any dead gate. Caught #215's original bug and guards against re-introduction.
25
+ - **Regression test: no `oven-sh/setup-bun` in workflows** (#217 / ROADMAP #210). Defensive guard against Node 20 deprecation reintroduction. Committed negative control writes a tmp fixture with the banned pattern, asserts grep catches it, tears down — proves the regex is live-fire correct.
26
+ - **ROADMAP #218** — evaluate CC 2.1.118 `type: "mcp_tool"` hook capability (Prove-It gated).
27
+ - **ROADMAP #219** — re-verify #198 model-pin guidance against CC 2.1.117 restart-persistence behavior.
28
+ - **ROADMAP #220** — token-spike anomaly detection (from Anthropic 2026-04-23 post-mortem).
29
+ - **ROADMAP #221** — fold post-mortem lessons into wizard docs (explicit effort / extended-thinking+caching+idle gotcha / verbosity-cap audit).
30
+ - **ROADMAP #222** — prompt-compounding audit harness (A/B each of ~40 prompt-injection sites).
31
+ - **ROADMAP #223** — adopt GPT-5.5 in review-tier guidance after calibration (standard $5/$30 is Codex-usable ceiling; Pro $30/$180 is ChatGPT-only, reserve for release-blocker one-offs).
32
+
33
+ ### Fixed
34
+
35
+ - **Tier 2 persist-scores dead gate** (#214 / ROADMAP #215). The Tier 2 "Persist scores to PR branch" step was gated on `steps.check-baseline.outputs.should_simulate`, but the Tier 2 `check-baseline` only emits `has_baseline`. The step had been silently dead, so `score-history.jsonl` never got appended from Tier 2 runs. One-word fix (`should_simulate` → `has_baseline`) plus the new cross-job output-parser regression test.
36
+ - **`score-history.jsonl` `max_score` correctness** (#216 / ROADMAP #211). Both Tier 1 and Tier 2 hardcoded `--argjson max_score 10`, causing UI scenarios (which score out of 11 via design_system bonus) to record `11/10` — nonsensical and breaking downstream analytics. Both sites now read `MAX_SCORE` from the eval result file; shell `case` statement guards non-numeric inputs; regression test grep-asserts no hardcoded literal remains.
37
+ - **CC 2.1.118 `/cost` → `/usage` doc rename** (#209). Claude Code 2.1.118 consolidated `/cost` and `/stats` into `/usage` with aliases preserved. Wizard docs and test-self-update now use `/usage` as canonical (alias note inline).
38
+
39
+ ### Docs
40
+
41
+ - Roadmap entries for all additions above (#218-223), plus minor wording correction to #221(c) post-Codex review (attributes 3% drop to broader length-limit prompt change, not a single sentence).
42
+
43
+ ### Process
44
+
45
+ - Codex cross-model review run on every PR in the v1.36.0 batch (3 code PRs: 10/10 + 10/10 + 8/10; 4 doc/roadmap PRs: 10/10 + 10/10 + 7/10→fixed + 9/10). Shepherd-loop discipline re-enforced after a process miss mid-cycle — logged as feedback memory `feedback_shepherd_loop_per_pr.md`.
46
+
7
47
  ## [1.35.0] - 2026-04-19
8
48
 
9
49
  ### Added
@@ -1,6 +1,6 @@
1
1
  # Claude Code SDLC Setup Wizard
2
2
 
3
- > **Contribute**: This wizard is community-driven. PRs welcome at [github.com/BaseInfinity/agentic-ai-sdlc-wizard](https://github.com/BaseInfinity/agentic-ai-sdlc-wizard) - your discoveries help everyone.
3
+ > **Contribute**: This wizard is community-driven. PRs welcome at [github.com/BaseInfinity/claude-sdlc-wizard](https://github.com/BaseInfinity/claude-sdlc-wizard) - your discoveries help everyone.
4
4
 
5
5
  > **For Humans**: This wizard helps you implement a battle-tested SDLC enforcement system for Claude Code. It will scan your project, ask questions, and walk you through setup step-by-step. Works for solo developers, teams, and organizations alike.
6
6
 
@@ -240,11 +240,13 @@ When Anthropic provides official plugins or tools that handle something:
240
240
 
241
241
  Claude Code's **effort level** controls how much thinking the model does before responding. Higher effort = deeper reasoning but more tokens.
242
242
 
243
+ > ⚠️ **On Opus 4.7, effort below `xhigh` breaks SDLC compliance in practice.** Unlike 4.6, Opus 4.7 respects effort levels *strictly* — at `high` or below it scopes work tighter (shallow reasoning, skipped TDD, no self-review) rather than going above-and-beyond. Treat the table below accordingly: **`max` is the recommended default, `xhigh` is the floor**, `high` or below is for trivial grep/search subagents only.
244
+
243
245
  | Level | When to Use | How to Set |
244
246
  |-------|-------------|------------|
245
- | `high` | Standard SDLC work. Features, bug fixes, refactoring, tests, reviews | `effort: high` in skill frontmatter (already set) |
246
- | `xhigh` | **Recommended default for coding and agentic work (Opus 4.7+).** Long-running tasks, repeated tool calls, deep exploration. Claude Code defaults to this on Opus 4.7 | `/effort xhigh` or set in skill frontmatter |
247
- | `max` | LOW confidence, FAILED 2x, architecture decisions, complex debugging, cross-model reviews. Reserve for genuinely frontier problems — on most workloads `max` adds cost for small quality gains | `/effort max` (session only — resets next session) |
247
+ | `high` or below | **Not for SDLC work on Opus 4.7.** Only for trivial grep/search subagents or one-shot questions that don't require planning | `effort: high` in a specific subagent frontmatter only |
248
+ | `xhigh` | **Floor for SDLC work on Opus 4.7.** Long-running tasks, repeated tool calls, deep exploration. Claude Code defaults to this on Opus 4.7 | `/effort xhigh` or set in skill frontmatter |
249
+ | `max` | **Recommended default for Opus 4.7 SDLC work.** Multi-file changes, architecture decisions, debugging, cross-model reviews, any task touching wizard/skill/CI code | `/effort max` (session only — resets next session) |
248
250
 
249
251
  **Effort level changes in Opus 4.7 (April 2026):**
250
252
  - **`xhigh` is new** — sits between `high` and `max`, designed for coding and agentic work (30+ minute tasks with token budgets in the millions)
@@ -255,7 +257,7 @@ Claude Code's **effort level** controls how much thinking the model does before
255
257
 
256
258
  **Why `high` was the previous default:** Claude Code uses **adaptive thinking** to dynamically allocate reasoning budget per turn. On Pro and Max plans, the default effort level was **medium (85)**, which causes the model to under-allocate reasoning on complex multi-step tasks — leading to shallow analysis, missed edge cases, and "lazy" outputs. This was [confirmed by Anthropic engineer Boris Cherny](https://github.com/anthropics/claude-code/issues/42796) and is documented at [code.claude.com](https://code.claude.com/docs/en/model-config). API, Team, and Enterprise plans default to high effort and are not affected.
257
259
 
258
- The `/sdlc` skill sets `effort: high` in its frontmatter, overriding the medium default on every SDLC invocation. Consider upgrading to `effort: xhigh` on Opus 4.7+ for deeper reasoning on complex tasks.
260
+ The `/sdlc` skill sets `effort: high` in its frontmatter as a baseline, overriding the medium default on every SDLC invocation. **On Opus 4.7, run `/effort max` at session start** the frontmatter is a floor, not a ceiling, and `max` is where SDLC-compliant work actually happens on 4.7.
259
261
 
260
262
  **Nuclear option — disable adaptive thinking entirely:** Set `CLAUDE_CODE_DISABLE_ADAPTIVE_THINKING=1` in your environment or settings.json `env` block. This forces a fixed reasoning budget per turn instead of letting the model dynamically allocate. Use this if you observe persistent quality issues even with `effort: high`. See [Claude Code model config docs](https://code.claude.com/docs/en/model-config) for details.
261
263
 
@@ -934,7 +936,7 @@ Claude Code supports both 200K and 1M context windows. **`opus[1m]` is an opt-in
934
936
 
935
937
  **How to opt out:** remove the `model` line from `.claude/settings.json`, or run `/model` and pick "Default (recommended)".
936
938
 
937
- **Cost awareness:** Larger windows let you consume more tokens in one session, and total cost always scales with tokens consumed regardless of tier. Use `/cost` to monitor — a 900K-token session is meaningfully more expensive than an 80K one even at standard rates.
939
+ **Cost awareness:** Larger windows let you consume more tokens in one session, and total cost always scales with tokens consumed regardless of tier. Use `/usage` to monitor (aliases: `/cost`, `/stats`) — a 900K-token session is meaningfully more expensive than an 80K one even at standard rates.
938
940
 
939
941
  **Autocompact pairing (important):** If you opt into `opus[1m]`, also set `CLAUDE_AUTOCOMPACT_PCT_OVERRIDE=30` — otherwise CC's default autocompact fires at ~76K and destroys the headroom you're paying for. Step 9.5 writes both together when you opt in.
940
942
 
@@ -2711,7 +2713,7 @@ If deployment fails or post-deploy verification catches issues:
2711
2713
 
2712
2714
  **SDLC.md:**
2713
2715
  ```markdown
2714
- <!-- SDLC Wizard Version: 1.35.0 -->
2716
+ <!-- SDLC Wizard Version: 1.36.1 -->
2715
2717
  <!-- Setup Date: [DATE] -->
2716
2718
  <!-- 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 -->
2717
2719
  <!-- Git Workflow: [PRs or Solo] -->
@@ -3361,7 +3363,7 @@ Practical techniques to reduce token consumption without sacrificing quality.
3361
3363
 
3362
3364
  | Tool | What It Shows | When to Use |
3363
3365
  |------|---------------|-------------|
3364
- | `/cost` | Session total: USD, API time, code changes | After a session to review spend |
3366
+ | `/usage` | Session total: USD, API time, code changes (aliases: `/cost`, `/stats`) | After a session to review spend |
3365
3367
  | `/context` | What's consuming context window space | When hitting context limits |
3366
3368
  | Status line | Real-time `cost.total_cost_usd` + token counts | Continuous monitoring |
3367
3369
 
@@ -3706,8 +3708,8 @@ Claude fetches from these URLs (via WebFetch):
3706
3708
 
3707
3709
  | Resource | URL |
3708
3710
  |----------|-----|
3709
- | CHANGELOG | `https://raw.githubusercontent.com/BaseInfinity/agentic-ai-sdlc-wizard/main/CHANGELOG.md` |
3710
- | Wizard | `https://raw.githubusercontent.com/BaseInfinity/agentic-ai-sdlc-wizard/main/CLAUDE_CODE_SDLC_WIZARD.md` |
3711
+ | CHANGELOG | `https://raw.githubusercontent.com/BaseInfinity/claude-sdlc-wizard/main/CHANGELOG.md` |
3712
+ | Wizard | `https://raw.githubusercontent.com/BaseInfinity/claude-sdlc-wizard/main/CLAUDE_CODE_SDLC_WIZARD.md` |
3711
3713
 
3712
3714
  ### What Claude Does (4 Phases)
3713
3715
 
@@ -3772,7 +3774,7 @@ Walk through updates? (y/n)
3772
3774
  Store wizard state in `SDLC.md` as metadata comments (invisible to readers, parseable by Claude):
3773
3775
 
3774
3776
  ```markdown
3775
- <!-- SDLC Wizard Version: 1.35.0 -->
3777
+ <!-- SDLC Wizard Version: 1.36.1 -->
3776
3778
  <!-- Setup Date: 2026-01-24 -->
3777
3779
  <!-- 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 -->
3778
3780
  <!-- Git Workflow: PRs -->
@@ -3889,7 +3891,7 @@ jobs:
3889
3891
  echo "Installed wizard version: $INSTALLED"
3890
3892
 
3891
3893
  # Fetch latest CHANGELOG
3892
- curl -sL https://raw.githubusercontent.com/BaseInfinity/agentic-ai-sdlc-wizard/main/CHANGELOG.md -o /tmp/changelog.md
3894
+ curl -sL https://raw.githubusercontent.com/BaseInfinity/claude-sdlc-wizard/main/CHANGELOG.md -o /tmp/changelog.md
3893
3895
 
3894
3896
  # Extract latest version (first ## [X.X.X] line)
3895
3897
  LATEST=$(grep -m1 -oE '\[[0-9]+\.[0-9]+\.[0-9]+\]' /tmp/changelog.md | tr -d '[]')
package/README.md CHANGED
@@ -19,7 +19,7 @@ Then start (or restart) Claude Code — type `/exit` then `claude` to reload hoo
19
19
 
20
20
  **curl (no npm install needed):**
21
21
  ```bash
22
- curl -fsSL https://raw.githubusercontent.com/BaseInfinity/agentic-ai-sdlc-wizard/main/install.sh | bash
22
+ curl -fsSL https://raw.githubusercontent.com/BaseInfinity/claude-sdlc-wizard/main/install.sh | bash
23
23
  ```
24
24
 
25
25
  **Homebrew:**
@@ -36,7 +36,7 @@ gh sdlc-wizard init
36
36
 
37
37
  **From GitHub (no npm registry needed):**
38
38
  ```bash
39
- npx github:BaseInfinity/agentic-ai-sdlc-wizard init
39
+ npx github:BaseInfinity/claude-sdlc-wizard init
40
40
  ```
41
41
 
42
42
  **Install CLI globally:**
@@ -258,5 +258,5 @@ PRs welcome. See [CONTRIBUTING.md](CONTRIBUTING.md) for evaluation methodology a
258
258
  Three ways to report bugs, request features, or ask questions:
259
259
 
260
260
  - **In-session:** run `/feedback` inside any Claude Code session using this wizard — auto-fills context and redacts secrets before filing
261
- - **Issue templates:** [bug report](https://github.com/BaseInfinity/agentic-ai-sdlc-wizard/issues/new?template=bug_report.md), [feature request](https://github.com/BaseInfinity/agentic-ai-sdlc-wizard/issues/new?template=feature_request.md), [question](https://github.com/BaseInfinity/agentic-ai-sdlc-wizard/issues/new?template=question.md)
262
- - **Discussions:** open-ended conversations at [github.com/BaseInfinity/agentic-ai-sdlc-wizard/discussions](https://github.com/BaseInfinity/agentic-ai-sdlc-wizard/discussions)
261
+ - **Issue templates:** [bug report](https://github.com/BaseInfinity/claude-sdlc-wizard/issues/new?template=bug_report.md), [feature request](https://github.com/BaseInfinity/claude-sdlc-wizard/issues/new?template=feature_request.md), [question](https://github.com/BaseInfinity/claude-sdlc-wizard/issues/new?template=question.md)
262
+ - **Discussions:** open-ended conversations at [github.com/BaseInfinity/claude-sdlc-wizard/discussions](https://github.com/BaseInfinity/claude-sdlc-wizard/discussions)
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "agentic-sdlc-wizard",
3
- "version": "1.35.0",
3
+ "version": "1.36.1",
4
4
  "description": "SDLC enforcement for Claude Code — hooks, skills, and wizard setup in one command",
5
5
  "bin": {
6
- "sdlc-wizard": "./cli/bin/sdlc-wizard.js"
6
+ "sdlc-wizard": "cli/bin/sdlc-wizard.js"
7
7
  },
8
8
  "files": [
9
9
  "cli/",
@@ -24,7 +24,7 @@
24
24
  "license": "MIT",
25
25
  "repository": {
26
26
  "type": "git",
27
- "url": "https://github.com/BaseInfinity/agentic-ai-sdlc-wizard"
27
+ "url": "git+https://github.com/BaseInfinity/claude-sdlc-wizard.git"
28
28
  },
29
29
  "engines": {
30
30
  "node": ">=18.0.0"
@@ -61,7 +61,7 @@ Use `gh issue create` on the wizard repo:
61
61
 
62
62
  ```bash
63
63
  gh issue create \
64
- --repo BaseInfinity/agentic-ai-sdlc-wizard \
64
+ --repo BaseInfinity/claude-sdlc-wizard \
65
65
  --title "[feedback-type]: Brief description" \
66
66
  --body "$(cat <<'EOF'
67
67
  ## Feedback Type
@@ -89,4 +89,4 @@ EOF
89
89
  - **Opt-in only** — if user declines scan, still create the issue with whatever they tell you manually
90
90
  - **No source code** — never include source code snippets in issues
91
91
  - **Be specific** — vague issues waste maintainer time. Ask clarifying questions
92
- - **Check for duplicates** — `gh issue list --repo BaseInfinity/agentic-ai-sdlc-wizard --search "keywords"` before creating
92
+ - **Check for duplicates** — `gh issue list --repo BaseInfinity/claude-sdlc-wizard --search "keywords"` before creating
@@ -35,7 +35,7 @@ Also note the completed steps from `<!-- Completed Steps: ... -->`.
35
35
 
36
36
  Use WebFetch to fetch the CHANGELOG:
37
37
  ```
38
- https://raw.githubusercontent.com/BaseInfinity/agentic-ai-sdlc-wizard/main/CHANGELOG.md
38
+ https://raw.githubusercontent.com/BaseInfinity/claude-sdlc-wizard/main/CHANGELOG.md
39
39
  ```
40
40
 
41
41
  Extract the latest version from the first `## [X.X.X]` line.
@@ -46,9 +46,12 @@ Parse all CHANGELOG entries between the user's installed version and the latest.
46
46
 
47
47
  ```
48
48
  Installed: 1.24.0
49
- Latest: 1.34.0
49
+ Latest: 1.36.1
50
50
 
51
51
  What changed:
52
+ - [1.36.1] Repo renamed `agentic-ai-sdlc-wizard` → `claude-sdlc-wizard` (matches sibling pattern; npm package unchanged); `npm pkg fix` metadata cleanup; slug migration across docs/tests/configs
53
+ - [1.36.0] CC 2.1.118 `/usage` canonical + aliases, Tier 2 dead-gate fix (#215), score-history max_score correctness (#211), setup-bun regression guard (#210), post-mortem learnings (#220-222), GPT-5.5 adoption plan (#223), MCP-tool hooks + #198 re-verify in backlog (#218/#219)
54
+ - [1.35.0] PreCompact seam gate + self-heal (#208/#209), effort auto-bump on LOW/FAILED/CONFUSED (#195), wizard staleness nudge (#196), Codex CI-log audit pattern, ...
52
55
  - [1.34.0] API feature detection shepherd for Claude releases, Memory Audit Protocol with 7 verified lessons (+2 caught-and-retracted), /less-permission-prompts surfaced, ...
53
56
  - [1.33.0] opus[1m] as SDLC default, dual-channel install drift guardrails, model/effort session-start nudge, ...
54
57
  - [1.32.0] Opus 4.7 + xhigh support, model/effort upgrade detection, benchmark ceiling audit, ...
@@ -79,7 +82,7 @@ This reports each managed file as MATCH, CUSTOMIZED, MISSING, or DRIFT. Present
79
82
 
80
83
  Use WebFetch to fetch the latest wizard:
81
84
  ```
82
- https://raw.githubusercontent.com/BaseInfinity/agentic-ai-sdlc-wizard/main/CLAUDE_CODE_SDLC_WIZARD.md
85
+ https://raw.githubusercontent.com/BaseInfinity/claude-sdlc-wizard/main/CLAUDE_CODE_SDLC_WIZARD.md
83
86
  ```
84
87
 
85
88
  This is the source of truth for all templates, hooks, skills, and step registry.