wdi-method 0.6.18 → 0.6.19
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 +31 -0
- package/README.md +538 -530
- package/kit/.constitution/method/README.md +1 -0
- package/kit/.constitution/method/ci-guide.md +150 -0
- package/kit/skills/wdi-autopilot/SKILL.md +440 -384
- package/kit/skills/wdi-build/SKILL.md +398 -393
- package/kit-overlay/AGENTS.md +1 -0
- package/kit-overlay/README.md +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,37 @@ version contains every fix below it.
|
|
|
10
10
|
|
|
11
11
|
---
|
|
12
12
|
|
|
13
|
+
## 0.6.19 — 2026-09-10
|
|
14
|
+
|
|
15
|
+
- **One autopilot run now costs one cloud CI run, not dozens.** A run over fifteen tickets pushed often
|
|
16
|
+
enough to start GitHub Actions at every ticket commit and every spec close, and spent most of a month's
|
|
17
|
+
Actions allowance in two days — a Windows runner bills at 2x the minutes and macOS at 10x, and on a
|
|
18
|
+
private repository every one of those comes out of the allowance. **The fix is not fewer commits**: they
|
|
19
|
+
stay granular, one per ticket, plus the memlog and the registry catch-up. What changed is what a push
|
|
20
|
+
triggers.
|
|
21
|
+
- `wdi-autopilot` gains **§ Cycle-end CI**. Every intermediate push starts nothing; the cloud runner
|
|
22
|
+
fires **once**, at § Finish, when the final head is pushed and the one PR is marked ready for review.
|
|
23
|
+
§ Door 2 says an iteration MUST NOT dispatch a workflow or mark a PR ready mid-ticket, and § Finish
|
|
24
|
+
says how the run is triggered at the end — ready-for-review, `workflow_dispatch`, or a final push with
|
|
25
|
+
no `[skip ci]`, in that order of preference.
|
|
26
|
+
- What a spec close is judged on until then is the run branch's **own full suite, run locally** — the
|
|
27
|
+
check that used to be "the last pushed head is green in CI". Nothing closes over red; only the place
|
|
28
|
+
the red is seen has moved to where it costs nothing.
|
|
29
|
+
- Preflight gains a row: **no workflow may fire on an intermediate push.** It is red when one does, and
|
|
30
|
+
it is checked at minute one rather than discovered on the invoice.
|
|
31
|
+
- `wdi-build` Step 5 says the same thing for a supervised run: one unit of work earns one cloud run.
|
|
32
|
+
- **New guide — `.constitution/method/ci-guide.md`.** The trigger shape (`workflow_dispatch` always;
|
|
33
|
+
`pull_request` `types: [ready_for_review]` as the one automatic trigger; never a bare `on: push`),
|
|
34
|
+
`paths-ignore` for the prose and corpus layers, `concurrency` with `cancel-in-progress`, and two
|
|
35
|
+
copy-paste templates: `ci.yml` for the product's build and test, and `korpus.yml` for the corpus
|
|
36
|
+
validators, kept separate so the cheap one can still run when the expensive one is ignored.
|
|
37
|
+
|
|
38
|
+
**What a repo that already has the method installed does about it.** `npx wdi-method@latest update` brings
|
|
39
|
+
the guide and the two skills. The workflows themselves are yours and the installer does not write them:
|
|
40
|
+
open `.constitution/method/ci-guide.md` and compare your `.github/workflows/` against § Trigger shape. A
|
|
41
|
+
workflow with a bare `on: push` is the one that spends the allowance, and it is what the new preflight row
|
|
42
|
+
will refuse to start a mandate over.
|
|
43
|
+
|
|
13
44
|
## 0.6.18 — 2026-09-08
|
|
14
45
|
|
|
15
46
|
- **This file.** The version history was only readable as `git log`, which is the wrong place to look for
|