wdi-method 0.6.5 → 0.6.7
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 +495 -495
- package/bin/wdi-method.js +1641 -1636
- package/kit/.constitution/method/constitution.md +2 -2
- package/kit/.constitution/method/repo-guide.md +5 -0
- package/kit/.constitution/method/scripts/validate.py +2700 -2561
- package/kit-overlay/constitution.md +2 -2
- package/kit-overlay/repo-guide.md +5 -0
- package/package.json +1 -1
|
@@ -24,8 +24,8 @@ The repo layout is governed by `corpus-guide.md` and mapped by
|
|
|
24
24
|
| `.what/` | What is promised |
|
|
25
25
|
| `.how/` | How it is built |
|
|
26
26
|
| `.what-rendered/` · `.how-rendered/` | The two above, assembled for a human to read — one page per gate, at the mirror path. Regenerated by `validate.py`, never edited, never read by a skill |
|
|
27
|
-
| `_bmad-output/` | Run workspace;
|
|
28
|
-
| `.work/` | Scratch;
|
|
27
|
+
| `_bmad-output/` | Run workspace; MUST be in git, not curated |
|
|
28
|
+
| `.work/` | Scratch; MUST be in git, emptied when a task closes |
|
|
29
29
|
| *(application roots)* | Application code — named and mapped in `.control/structure-codebase.md` |
|
|
30
30
|
|
|
31
31
|
The method does not use a `docs/` layer for corpus or rules. A leftover `docs/`
|
|
@@ -48,6 +48,11 @@ drafts, exploratory output, a working paper for a change spanning several sessio
|
|
|
48
48
|
It is **committed**, so that a session picked up on another machine finds it, and so a reviewer can
|
|
49
49
|
see what a change was actually reasoning about.
|
|
50
50
|
|
|
51
|
+
`.work/` MUST NOT be excluded from git, and neither MUST `_bmad-output/` or any corpus layer.
|
|
52
|
+
`corpus-in-git` reports it and names the file and line. A pattern that excludes one noisy artifact
|
|
53
|
+
INSIDE `.work/` — a vendored checkout, a tool's raw dumps, logs — is allowed and stays green; a
|
|
54
|
+
pattern that drops the folder is not, because it leaves the material on one machine and in no clone.
|
|
55
|
+
|
|
51
56
|
It is **ephemeral**, and the two together are what make its rules matter:
|
|
52
57
|
|
|
53
58
|
- Any durable outcome MUST be moved out before the task closes — to the corpus if it is truth, to
|