valent-pipeline 0.19.36 → 0.19.37

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "valent-pipeline",
3
- "version": "0.19.36",
3
+ "version": "0.19.37",
4
4
  "description": "v3 multi-agent AI pipeline for software development lifecycle",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1875,6 +1875,21 @@ async function runStory(story) {
1875
1875
  await runGitStep(storyId, [
1876
1876
  `node .valent-pipeline/bin/cli.js git start-story --story ${storyId}${gitFlags}`,
1877
1877
  ], 'start', 'QA')
1878
+ // Cross-lane pin coherence on the inline-fix revalidation path (2026-06-19, M-28): the blocking
1879
+ // bug's fix already merged INTO this story branch (ship-story --into) and was CRITIC-approved in
1880
+ // its OWN lane — but that merge advanced the story tip PAST the story's last critic pin. The
1881
+ // revalidation runs no CRITIC (by design — the fix was already reviewed) and `commitAndRepin`
1882
+ // no-ops here (no devTasks), so the STALE story critic pin would trip `pins:critic`
1883
+ // (evidence assert --require-pins critic) against the merged tip and FALSE-VOID a genuine SHIP —
1884
+ // exactly the 2.11 reject. Re-pin critic so the pin records the cross-lane coverage that
1885
+ // genuinely exists (story code @ the old pin + the bug fix @ its lane's own approving pin); the
1886
+ // bug only merged here because it SHIPPED through its own CRITIC+JUDGE gates, and this no-rebuild
1887
+ // path introduces no new source, so the coverage is real. The v3 source-delta check still
1888
+ // fails-closed on any genuine un-reviewed change after this point. This is the "revalidation
1889
+ // legitimately re-pins" case the pin-coherence doctrine already anticipates (evidence.js).
1890
+ await runGitStep(storyId, [
1891
+ `node .valent-pipeline/bin/cli.js evidence pin --story ${storyId} --gate critic`,
1892
+ ], 'reval-repin-critic', 'QA')
1878
1893
  }
1879
1894
  await spawn('QA-B', 'qa-b.md',
1880
1895
  'This is a RE-VALIDATION of a previously-rejected story whose blocking bug has since been fixed and ' +