yadflow 3.6.0 → 3.6.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.
package/CHANGELOG.md CHANGED
@@ -1,10 +1,9 @@
1
- # [3.6.0](https://github.com/abdelrahmannasr/yadflow/compare/v3.5.3...v3.6.0) (2026-07-03)
1
+ ## [3.6.1](https://github.com/abdelrahmannasr/yadflow/compare/v3.6.0...v3.6.1) (2026-07-04)
2
2
 
3
3
 
4
- ### Features
4
+ ### Bug Fixes
5
5
 
6
- * wire stub anchors into change/backfill/reconcile flows ([54d20f1](https://github.com/abdelrahmannasr/yadflow/commit/54d20f10340831bca503f4246606b0181c74a2b0))
7
- * **yad-stub:** mint stub genesis epics for brownfield defect intake ([7e6c4cd](https://github.com/abdelrahmannasr/yadflow/commit/7e6c4cd74f5a6e7f886115f7b9e5c0a571c2e408))
6
+ * **gate:** include the Checklist section in the hub review-PR body ([3134f89](https://github.com/abdelrahmannasr/yadflow/commit/3134f89658a172a3a346cf0945f62e6fa63bac74)), closes [#103](https://github.com/abdelrahmannasr/yadflow/issues/103)
8
7
 
9
8
  # [2.2.0](https://github.com/abdelrahmannasr/yadflow/compare/v2.1.0...v2.2.0) (2026-06-14)
10
9
 
package/cli/gate.mjs CHANGED
@@ -645,7 +645,7 @@ export async function gateTrailer(root, { epic, artifact, body, number, getBody
645
645
  // ---- helpers ------------------------------------------------------------------------------------
646
646
  const base = (artifact) => artifactBase(artifact);
647
647
 
648
- function fillHubTemplate({ epic, artifact, step, owner, domains }) {
648
+ export function fillHubTemplate({ epic, artifact, step, owner, domains }) {
649
649
  return [
650
650
  '## Artifact under review',
651
651
  `- Epic: \`${epic}\``,
@@ -660,6 +660,15 @@ function fillHubTemplate({ epic, artifact, step, owner, domains }) {
660
660
  '## How to review (this drives the gate)',
661
661
  '- **Approve** to record your approval; **comment / request changes** to hold the gate.',
662
662
  '- This step advances when approvals are satisfied, all threads are resolved, and this PR is merged.',
663
+ '',
664
+ // Required by the hub `pr-template` gate (check_hub_body). Mirrors the Checklist block of the
665
+ // committed static template (yad-pr-template/templates/hub/<platform>/) so the generated body
666
+ // passes on the first CI run.
667
+ '## Checklist',
668
+ '- [ ] `owner` set in the artifact frontmatter (inherited from `epic.md`)',
669
+ '- [ ] Contract re-locked (`.sdlc/contract-lock.json`) if the surface changed (architecture only)',
670
+ '- [ ] Risk tags reflect the real surface touched (contract/auth/payments escalate)',
671
+ '- [ ] No secrets or tokens in the artifact or this description',
663
672
  ].join('\n');
664
673
  }
665
674
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yadflow",
3
- "version": "3.6.0",
3
+ "version": "3.6.1",
4
4
  "description": "Yadflow — the gated, team, multi-repo SDLC: author → review → build with a PR-driven review gate and a zero-dependency `yad` CLI (setup, gate, commit, open-pr, ship, repo, thread, reconcile). A BMAD module + 38 yad-* skills.",
5
5
  "type": "module",
6
6
  "author": "AbdelRahman Nasr",