wdi-method 0.6.7 → 0.6.15

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/README.md CHANGED
@@ -29,11 +29,10 @@ page it is on.
29
29
 
30
30
  ## Install
31
31
 
32
- Three steps, in this order. The first is required before step 3 will run; the second can wait until
33
- **Both are required, and the installer refuses without either.** BMad has always been checked; the ticket
34
- engines are checked too, because every repo that learned they were missing learned it inside `wdi-build`
35
- with a spec already open. `--skip-engines-check` is the escape for the two cases that earn it: CI, and a
36
- repo that will never reach G5.
32
+ Three steps, in this order, and **step 3 refuses until steps 1 and 2 are done** through the TUI and
33
+ through `--yes` alike. BMad has always been checked; the engines are checked too, because every repo that
34
+ learned they were missing learned it inside `wdi-build` with a spec already open. `--skip-engines-check`
35
+ is the escape for the two cases that earn it: CI, and a repo that will never reach G5.
37
36
 
38
37
  **1. BMad Method** — in the product repo, picking the same agents you will give this installer:
39
38
 
@@ -42,16 +41,26 @@ cd /path/to/your/product-repo
42
41
  npx bmad-method install
43
42
  ```
44
43
 
45
- **2. mattpocock/skills** — one of the two paths, not both (both leaves every skill twice):
44
+ **2. mattpocock/skills** — **into this repo**, on every agent:
46
45
 
47
46
  ```bash
48
- # Claude Code — a managed bundle that updates when its author ships
49
- claude plugins install mattpocock-skills # or, inside a session: /plugin install mattpocock-skills
50
-
51
- # Codex, Cursor, OpenCode, other agents — copies the skills into this repo; keep setup-matt-pocock-skills selected
52
47
  npx skills@latest add mattpocock/skills
53
48
  ```
54
49
 
50
+ Take all six the method drives: `to-spec`, `to-tickets`, `implement`, `tdd`, `code-review`, and
51
+ `domain-modeling`. Either install mode works — "copy" or "symlink".
52
+
53
+ **The Claude Code plugin is not an alternative here, and the reason is mechanical.** `to-spec`,
54
+ `to-tickets` and `implement` ship with `disable-model-invocation: true`, so no skill can invoke them;
55
+ nothing outside the file lifts that flag, and a plugin's files are not this repo's to edit. WDI Method
56
+ strips it from the copies the repo owns — which is what lets `wdi-build` invoke an engine and
57
+ `wdi-autopilot` run an iteration with nobody watching — and re-applies that on every update, because
58
+ `npx skills update` restores the author's file. The installer refuses without the six, and
59
+ `--skip-engines-check` is the escape for CI and for a repo that will never reach G5.
60
+
61
+ If you also have the plugin installed for your user, the repo's copies are what run; removing the
62
+ plugin keeps `/to-spec` unambiguous.
63
+
55
64
  **You do not need to run `/setup-matt-pocock-skills` to get started.** Step 3 seeds `docs/agents/` with
56
65
  the two answers WDI Method actually has a requirement on, so the engines are aligned from the first
57
66
  install. Run the setup skill only to *change* something — to point at GitHub or Jira instead of local
@@ -450,6 +459,24 @@ English, whatever the settings say — it travels to every repo through this pac
450
459
 
451
460
  It prints the version it replaced, what it wrote, what it kept, and what to do next.
452
461
 
462
+ ### Moving a repo from 0.6.7 or earlier to 0.6.8
463
+
464
+ Four things change for a repo already running the method. The first is the only one that can stop an
465
+ update, and all four are mechanical.
466
+
467
+ | What changed | What it means for your repo |
468
+ |---|---|
469
+ | **The engines must be in the repo** | `install` and `update` refuse until `to-spec`, `to-tickets`, `implement`, `tdd`, `code-review` and `domain-modeling` are here — `npx skills@latest add mattpocock/skills`. The Claude Code plugin no longer counts: three of the six ship locked against skill invocation, nothing outside the file unlocks them, and a plugin's files are not yours to edit. `--skip-engines-check` still installs without them |
470
+ | **The engines are invoked, not handed to you** | `wdi-build` calls `to-spec`, `to-tickets`, `implement`, `tdd` and `code-review` itself, so `wdi-autopilot` can finish a spec with nobody watching. Every `update` re-unlocks the repo's copies, because `npx skills update` puts the author's lock back — and `engines-invocable` in `validate.py` goes red when it has |
471
+ | **Thirteen BMad skills are retired at G5, and now enforced** | `bmad-spec`, `bmad-build`, `bmad-build-auto`, `bmad-code-review`, `bmad-retrospective`, `bmad-agent-dev`, `bmad-create-epics-and-stories`, `bmad-create-story`, `bmad-dev-story`, `bmad-dev-auto`, `bmad-quick-dev`, `bmad-sprint-planning`, `bmad-sprint-status`. Each is locked out of model invocation and denied in `.claude/settings.json`; typing the slash command yourself still works. `bmad-skill-register.md` carries the list and the criterion — retired only where this method has a named replacement, which is why `bmad-qa-generate-e2e-tests` and `bmad-checkpoint-preview` are not on it |
472
+ | **A spec has one predefined home** | `.scratch/<spec-id>-<slug>/`, with `SPEC.md` and `issues/<NN>-<slug>.md` inside it. Left free, that folder name gets written a different way in every repo and traces back to nothing. A row in `specs.yaml` is now what makes an effort a spec rather than ad hoc work — the path no longer says |
473
+
474
+ Run the `wdi-upgrade` skill after updating: it names what is still in the old shape, including a
475
+ `docs/agents/issue-tracker.md` that still carries `/setup-matt-pocock-skills`' own answer, and the spec
476
+ folders that need moving. `npx wdi-method engines` reports the engine state on its own, and
477
+ `npx wdi-method engines --fix` repairs what can be repaired without touching anything you wrote — the
478
+ previous config is kept as `.bak`.
479
+
453
480
  ---
454
481
 
455
482
  ## Changing the method