yadflow 2.12.0 → 2.14.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.
- package/CHANGELOG.md +2 -7
- package/README.md +28 -16
- package/bin/yad.mjs +36 -4
- package/cli/docs.mjs +7 -5
- package/cli/doctor.mjs +21 -1
- package/cli/epic-state.mjs +85 -10
- package/cli/gate.mjs +9 -2
- package/cli/lib.mjs +3 -0
- package/cli/next.mjs +123 -0
- package/cli/repo.mjs +8 -4
- package/cli/setup.mjs +215 -80
- package/package.json +1 -1
- package/skills/sdlc/config.yaml +8 -0
- package/skills/yad-analysis/SKILL.md +6 -3
- package/skills/yad-architecture/SKILL.md +8 -3
- package/skills/yad-docs-overview/SKILL.md +20 -13
- package/skills/yad-epic/SKILL.md +4 -1
- package/skills/yad-stories/SKILL.md +8 -3
- package/skills/yad-test-cases/SKILL.md +10 -5
- package/skills/yad-ui/SKILL.md +8 -3
package/skills/yad-ui/SKILL.md
CHANGED
|
@@ -33,9 +33,14 @@ like Impeccable.
|
|
|
33
33
|
## On Activation
|
|
34
34
|
|
|
35
35
|
### Step 1 — Resolve the epic and check the gate
|
|
36
|
-
Resolve the `EP-<slug>` (ask if not provided).
|
|
37
|
-
|
|
38
|
-
|
|
36
|
+
Resolve the `EP-<slug>` (ask if not provided).
|
|
37
|
+
|
|
38
|
+
**Precondition gate (rail):** run `yad next EP-<slug> --check ui-design` first. If it exits non-zero,
|
|
39
|
+
**STOP** — surface the blocker it prints and point the user at `yad next EP-<slug>`. Do not author until
|
|
40
|
+
it passes.
|
|
41
|
+
|
|
42
|
+
This passes when `ui-design` is the next runnable step per the state sequence — every prior step
|
|
43
|
+
(through the architecture review) is `done` and `ui-design` is not already `done`.
|
|
39
44
|
|
|
40
45
|
### Step 1b — Open the authoring branch
|
|
41
46
|
Open the UI authoring branch `ui-design/EP-<slug>` per the shared procedure
|