instar 1.3.819 → 1.3.821

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.
Files changed (85) hide show
  1. package/dist/commands/server.d.ts.map +1 -1
  2. package/dist/commands/server.js +498 -3
  3. package/dist/commands/server.js.map +1 -1
  4. package/dist/config/ConfigDefaults.d.ts.map +1 -1
  5. package/dist/config/ConfigDefaults.js +69 -0
  6. package/dist/config/ConfigDefaults.js.map +1 -1
  7. package/dist/core/BackupManager.d.ts +10 -0
  8. package/dist/core/BackupManager.d.ts.map +1 -1
  9. package/dist/core/BackupManager.js +16 -0
  10. package/dist/core/BackupManager.js.map +1 -1
  11. package/dist/core/BoundedJsonlAudit.d.ts +37 -0
  12. package/dist/core/BoundedJsonlAudit.d.ts.map +1 -0
  13. package/dist/core/BoundedJsonlAudit.js +87 -0
  14. package/dist/core/BoundedJsonlAudit.js.map +1 -0
  15. package/dist/core/JudgmentProvenanceLog.d.ts +144 -0
  16. package/dist/core/JudgmentProvenanceLog.d.ts.map +1 -0
  17. package/dist/core/JudgmentProvenanceLog.js +301 -0
  18. package/dist/core/JudgmentProvenanceLog.js.map +1 -0
  19. package/dist/core/MachineIdentity.d.ts.map +1 -1
  20. package/dist/core/MachineIdentity.js +2 -0
  21. package/dist/core/MachineIdentity.js.map +1 -1
  22. package/dist/core/OwnerDarkLadder.d.ts +108 -0
  23. package/dist/core/OwnerDarkLadder.d.ts.map +1 -0
  24. package/dist/core/OwnerDarkLadder.js +229 -0
  25. package/dist/core/OwnerDarkLadder.js.map +1 -0
  26. package/dist/core/PostUpdateMigrator.d.ts +10 -0
  27. package/dist/core/PostUpdateMigrator.d.ts.map +1 -1
  28. package/dist/core/PostUpdateMigrator.js +106 -0
  29. package/dist/core/PostUpdateMigrator.js.map +1 -1
  30. package/dist/core/SpawnAdmission.d.ts +218 -0
  31. package/dist/core/SpawnAdmission.d.ts.map +1 -0
  32. package/dist/core/SpawnAdmission.js +440 -0
  33. package/dist/core/SpawnAdmission.js.map +1 -0
  34. package/dist/core/devGatedFeatures.d.ts.map +1 -1
  35. package/dist/core/devGatedFeatures.js +24 -0
  36. package/dist/core/devGatedFeatures.js.map +1 -1
  37. package/dist/core/machineCoherenceManifest.d.ts.map +1 -1
  38. package/dist/core/machineCoherenceManifest.js +30 -0
  39. package/dist/core/machineCoherenceManifest.js.map +1 -1
  40. package/dist/core/types.d.ts +87 -0
  41. package/dist/core/types.d.ts.map +1 -1
  42. package/dist/core/types.js.map +1 -1
  43. package/dist/monitoring/DuplicateSessionReconciler.d.ts +225 -0
  44. package/dist/monitoring/DuplicateSessionReconciler.d.ts.map +1 -0
  45. package/dist/monitoring/DuplicateSessionReconciler.js +544 -0
  46. package/dist/monitoring/DuplicateSessionReconciler.js.map +1 -0
  47. package/dist/monitoring/FailureAnalyzer.d.ts.map +1 -1
  48. package/dist/monitoring/FailureAnalyzer.js +40 -1
  49. package/dist/monitoring/FailureAnalyzer.js.map +1 -1
  50. package/dist/monitoring/FailureLedger.d.ts +9 -0
  51. package/dist/monitoring/FailureLedger.d.ts.map +1 -1
  52. package/dist/monitoring/FailureLedger.js +21 -4
  53. package/dist/monitoring/FailureLedger.js.map +1 -1
  54. package/dist/scaffold/templates.d.ts.map +1 -1
  55. package/dist/scaffold/templates.js +2 -1
  56. package/dist/scaffold/templates.js.map +1 -1
  57. package/dist/server/AgentServer.d.ts +5 -0
  58. package/dist/server/AgentServer.d.ts.map +1 -1
  59. package/dist/server/AgentServer.js +4 -0
  60. package/dist/server/AgentServer.js.map +1 -1
  61. package/dist/server/CapabilityIndex.d.ts.map +1 -1
  62. package/dist/server/CapabilityIndex.js +9 -0
  63. package/dist/server/CapabilityIndex.js.map +1 -1
  64. package/dist/server/fileRoutes.d.ts +16 -0
  65. package/dist/server/fileRoutes.d.ts.map +1 -1
  66. package/dist/server/fileRoutes.js +46 -0
  67. package/dist/server/fileRoutes.js.map +1 -1
  68. package/dist/server/routes.d.ts +7 -0
  69. package/dist/server/routes.d.ts.map +1 -1
  70. package/dist/server/routes.js +99 -0
  71. package/dist/server/routes.js.map +1 -1
  72. package/dist/testing/selfActionRegistry.d.ts.map +1 -1
  73. package/dist/testing/selfActionRegistry.js +89 -0
  74. package/dist/testing/selfActionRegistry.js.map +1 -1
  75. package/package.json +1 -1
  76. package/scripts/lib/self-action-detect.mjs +2 -0
  77. package/skills/instar-dev/templates/side-effects-artifact.md +8 -0
  78. package/skills/spec-converge/SKILL.md +1 -0
  79. package/skills/spec-converge/scripts/write-convergence-tag.mjs +71 -0
  80. package/src/data/builtin-manifest.json +65 -65
  81. package/src/scaffold/templates.ts +2 -1
  82. package/upgrades/1.3.820.md +25 -0
  83. package/upgrades/1.3.821.md +22 -0
  84. package/upgrades/side-effects/ownership-gated-spawn-increment-1.md +166 -0
  85. package/upgrades/side-effects/two-node-harness-increment2-entry-gate.md +64 -0
@@ -1 +1 @@
1
- {"version":3,"file":"selfActionRegistry.d.ts","sourceRoot":"","sources":["../../src/testing/selfActionRegistry.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAIH,uFAAuF;AACvF,MAAM,WAAW,YAAY;IAC3B,KAAK,IAAI,MAAM,CAAC;IAChB,OAAO,CAAC,EAAE,EAAE,MAAM,GAAG,IAAI,CAAC;CAC3B;AAED;;;;GAIG;AACH,MAAM,WAAW,eAAe;IAC9B,KAAK,EAAE,YAAY,CAAC;IACpB,wEAAwE;IACxE,eAAe,IAAI,OAAO,CAAC;IAC3B,8EAA8E;IAC9E,gBAAgB,IAAI,OAAO,CAAC;IAC5B,qFAAqF;IACrF,mBAAmB,IAAI,OAAO,CAAC;IAC/B,uGAAuG;IACvG,iBAAiB,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM,CAAC;CAC9C;AAED;;;;GAIG;AACH,MAAM,WAAW,UAAU;IACzB,IAAI,CAAC,MAAM,EAAE;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAA;KAAE,GAAG,IAAI,CAAC;IACrD,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAC/B,UAAU,EAAE,MAAM,CAAC;IACnB,4FAA4F;IAC5F,WAAW,EAAE,MAAM,EAAE,CAAC;CACvB;AAED,2BAA2B;AAC3B,wBAAgB,cAAc,IAAI,UAAU,CAY3C;AAED,MAAM,WAAW,oBAAoB;IACnC,iDAAiD;IACjD,EAAE,EAAE,MAAM,CAAC;IACX,iFAAiF;IACjF,UAAU,EAAE,MAAM,CAAC;IACnB,6DAA6D;IAC7D,MAAM,EAAE,MAAM,CAAC;IACf;;;;;;;OAOG;IACH,UAAU,EAAE,MAAM,CAAC;IACnB;;;;;OAKG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,kFAAkF;IAClF,iBAAiB,CAAC,CAAC,EAAE,eAAe,EAAE,IAAI,EAAE,UAAU,GAAG;QAAE,IAAI,IAAI,IAAI,CAAA;KAAE,CAAC;IAC1E,uEAAuE;IACvE,MAAM,EAAE,MAAM,CAAC;IACf,qEAAqE;IACrE,eAAe,EAAE,MAAM,CAAC;IACxB,yDAAyD;IACzD,KAAK,EAAE,MAAM,CAAC;IACd,+CAA+C;IAC/C,MAAM,EAAE,MAAM,CAAC;IACf,sGAAsG;IACtG,eAAe,CAAC,EAAE;QAAE,MAAM,EAAE,MAAM,CAAC;QAAC,WAAW,EAAE,MAAM,CAAA;KAAE,CAAC;CAC3D;AAyeD,eAAO,MAAM,uBAAuB,EAAE,oBAAoB,EAazD,CAAC"}
1
+ {"version":3,"file":"selfActionRegistry.d.ts","sourceRoot":"","sources":["../../src/testing/selfActionRegistry.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAIH,uFAAuF;AACvF,MAAM,WAAW,YAAY;IAC3B,KAAK,IAAI,MAAM,CAAC;IAChB,OAAO,CAAC,EAAE,EAAE,MAAM,GAAG,IAAI,CAAC;CAC3B;AAED;;;;GAIG;AACH,MAAM,WAAW,eAAe;IAC9B,KAAK,EAAE,YAAY,CAAC;IACpB,wEAAwE;IACxE,eAAe,IAAI,OAAO,CAAC;IAC3B,8EAA8E;IAC9E,gBAAgB,IAAI,OAAO,CAAC;IAC5B,qFAAqF;IACrF,mBAAmB,IAAI,OAAO,CAAC;IAC/B,uGAAuG;IACvG,iBAAiB,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM,CAAC;CAC9C;AAED;;;;GAIG;AACH,MAAM,WAAW,UAAU;IACzB,IAAI,CAAC,MAAM,EAAE;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAA;KAAE,GAAG,IAAI,CAAC;IACrD,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAC/B,UAAU,EAAE,MAAM,CAAC;IACnB,4FAA4F;IAC5F,WAAW,EAAE,MAAM,EAAE,CAAC;CACvB;AAED,2BAA2B;AAC3B,wBAAgB,cAAc,IAAI,UAAU,CAY3C;AAED,MAAM,WAAW,oBAAoB;IACnC,iDAAiD;IACjD,EAAE,EAAE,MAAM,CAAC;IACX,iFAAiF;IACjF,UAAU,EAAE,MAAM,CAAC;IACnB,6DAA6D;IAC7D,MAAM,EAAE,MAAM,CAAC;IACf;;;;;;;OAOG;IACH,UAAU,EAAE,MAAM,CAAC;IACnB;;;;;OAKG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,kFAAkF;IAClF,iBAAiB,CAAC,CAAC,EAAE,eAAe,EAAE,IAAI,EAAE,UAAU,GAAG;QAAE,IAAI,IAAI,IAAI,CAAA;KAAE,CAAC;IAC1E,uEAAuE;IACvE,MAAM,EAAE,MAAM,CAAC;IACf,qEAAqE;IACrE,eAAe,EAAE,MAAM,CAAC;IACxB,yDAAyD;IACzD,KAAK,EAAE,MAAM,CAAC;IACd,+CAA+C;IAC/C,MAAM,EAAE,MAAM,CAAC;IACf,sGAAsG;IACtG,eAAe,CAAC,EAAE;QAAE,MAAM,EAAE,MAAM,CAAC;QAAC,WAAW,EAAE,MAAM,CAAA;KAAE,CAAC;CAC3D;AA+jBD,eAAO,MAAM,uBAAuB,EAAE,oBAAoB,EAezD,CAAC"}
@@ -519,6 +519,93 @@ const evolutionActionExpirySweep = {
519
519
  };
520
520
  },
521
521
  };
522
+ /**
523
+ * owner-dark-notice — the OwnerDarkLadder rung-3 notice under sustained
524
+ * pressure (ownership-gated-spawn §3.3/§5 Capacity Safety): an owner machine
525
+ * dark FOREVER while inbound messages keep arriving for 3 topics every tick.
526
+ * Convergence shape: ONE notice per (topic, outage-episode) + the per-topic
527
+ * cooldown — sustained pressure converges to exactly one emit per topic, and a
528
+ * longer horizon adds NOTHING while the episode persists (the episode set is
529
+ * the latch; owner recovery is the only re-arm).
530
+ */
531
+ const ownerDarkNotice = {
532
+ id: 'owner-dark-notice',
533
+ actionVerb: 'owner-dark-notify',
534
+ models: 'src/core/OwnerDarkLadder.ts (handleOwnerDark — episode dedupe + noticeCooldownMs)',
535
+ modelsPath: 'src/core/OwnerDarkLadder.ts',
536
+ boundK: 3, // 3 topics → at most one notice each while the episode persists
537
+ perTargetBoundK: 1,
538
+ ticks: 120,
539
+ tickMs: 60_000, // 2h of sustained inbound while the owner stays dark
540
+ makeUnderPressure(f, sink) {
541
+ const noticed = new Set();
542
+ return {
543
+ tick() {
544
+ sink.considered += 1;
545
+ // The pressure: every tick, a message arrives for each of 3 topics
546
+ // whose owner is dark. The episode never closes (owner never recovers).
547
+ for (const topic of ['t1', 't2', 't3']) {
548
+ if (noticed.has(topic))
549
+ continue; // ONE per (topic, episode) — the latch
550
+ noticed.add(topic);
551
+ sink.emit({ verb: 'owner-dark-notify', target: topic });
552
+ }
553
+ },
554
+ };
555
+ },
556
+ };
557
+ /**
558
+ * duplicate-converge-write — the DuplicateSessionReconciler's convergence CAS
559
+ * under sustained pressure (ownership-gated-spawn §3.2/§5 Capacity Safety): a
560
+ * topic that RE-duplicates immediately after every repair (the pathological
561
+ * flap). Convergence shape: 3 convergence attempts per episode (then escalate,
562
+ * not retry) × the P19 breaker (3 episodes per 24h window → the topic stops
563
+ * being auto-reconciled entirely) — sustained flap converges to ≤9 writes and
564
+ * then silence + ONE attention item, never an unbounded repair loop.
565
+ */
566
+ const duplicateConvergeWrite = {
567
+ id: 'duplicate-converge-write',
568
+ actionVerb: 'record-converge',
569
+ models: 'src/monitoring/DuplicateSessionReconciler.ts (convergenceAttempts cap + breakerThreshold/breakerWindowMs clamp)',
570
+ modelsPath: 'src/monitoring/DuplicateSessionReconciler.ts',
571
+ boundK: 9, // 3 episodes × 3 attempts, then the breaker clamps the topic
572
+ perTargetBoundK: 9,
573
+ ticks: 90,
574
+ tickMs: 60_000, // 1.5h of sustained flap — well inside the 24h breaker window
575
+ makeUnderPressure(f, sink) {
576
+ const BREAKER_THRESHOLD = 3;
577
+ const ATTEMPTS_PER_EPISODE = 3;
578
+ let episodes = 0;
579
+ let attempts = 0;
580
+ let episodeOpen = false;
581
+ return {
582
+ tick() {
583
+ sink.considered += 1;
584
+ // The pressure: the duplicate re-forms EVERY tick. Episode counting
585
+ // mirrors bumpBreaker (episodes bump at open); attempts mirror the
586
+ // per-episode convergence cap; the breaker clamps at the threshold.
587
+ if (episodes >= BREAKER_THRESHOLD && !episodeOpen)
588
+ return; // clamped — the brake
589
+ if (!episodeOpen) {
590
+ episodes += 1;
591
+ episodeOpen = true;
592
+ attempts = 0;
593
+ }
594
+ if (attempts >= ATTEMPTS_PER_EPISODE) {
595
+ // attempts exhausted → escalate (not modeled as an emit) + episode closes
596
+ episodeOpen = false;
597
+ return;
598
+ }
599
+ attempts += 1;
600
+ sink.emit({ verb: 'record-converge', target: 'topic-flap' });
601
+ // The repair "succeeds" then the duplicate re-forms → episode closes,
602
+ // a fresh one opens next tick (until the breaker clamps).
603
+ if (attempts >= ATTEMPTS_PER_EPISODE)
604
+ episodeOpen = false;
605
+ },
606
+ };
607
+ },
608
+ };
522
609
  export const SELF_ACTION_CONTROLLERS = [
523
610
  evolutionActionExpirySweep,
524
611
  spendReconSweep,
@@ -532,5 +619,7 @@ export const SELF_ACTION_CONTROLLERS = [
532
619
  externalHogKillBreaker,
533
620
  meteredReserveExpirySweep,
534
621
  spendStalePriceAlert,
622
+ ownerDarkNotice,
623
+ duplicateConvergeWrite,
535
624
  ];
536
625
  //# sourceMappingURL=selfActionRegistry.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"selfActionRegistry.js","sourceRoot":"","sources":["../../src/testing/selfActionRegistry.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,OAAO,EAAE,iBAAiB,EAAE,gBAAgB,EAAE,UAAU,EAAE,MAAM,wCAAwC,CAAC;AAuCzG,2BAA2B;AAC3B,MAAM,UAAU,cAAc;IAC5B,MAAM,IAAI,GAAe;QACvB,KAAK,EAAE,CAAC;QACR,UAAU,EAAE,CAAC;QACb,SAAS,EAAE,IAAI,GAAG,EAAkB;QACpC,WAAW,EAAE,EAAE;QACf,IAAI,CAAC,MAAwC;YAC3C,IAAI,CAAC,KAAK,IAAI,CAAC,CAAC;YAChB,IAAI,CAAC,SAAS,CAAC,GAAG,CAAC,MAAM,CAAC,MAAM,EAAE,CAAC,IAAI,CAAC,SAAS,CAAC,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;QAClF,CAAC;KACF,CAAC;IACF,OAAO,IAAI,CAAC;AACd,CAAC;AAuCD,8EAA8E;AAE9E;;;;;;;;;GASG;AACH,MAAM,oBAAoB,GAAyB;IACjD,EAAE,EAAE,wBAAwB;IAC5B,UAAU,EAAE,cAAc;IAC1B,MAAM,EAAE,0GAA0G;IAClH,UAAU,EAAE,kCAAkC;IAC9C,MAAM,EAAE,CAAC;IACT,eAAe,EAAE,CAAC;IAClB,KAAK,EAAE,EAAE;IACT,MAAM,EAAE,CAAC,GAAG,MAAM,EAAE,8DAA8D;IAClF,iBAAiB,CAAC,CAAC,EAAE,IAAI;QACvB,MAAM,UAAU,GAAG,CAAC,QAAQ,EAAE,QAAQ,CAAC,CAAC;QACxC,MAAM,qBAAqB,GAAG,EAAE,CAAC,CAAC,wDAAwD;QAC1F,OAAO;YACL,IAAI;gBACF,IAAI,CAAC,UAAU,IAAI,CAAC,CAAC;gBACrB,uEAAuE;gBACvE,mEAAmE;gBACnE,6DAA6D;gBAC7D,IAAI,CAAC,CAAC,eAAe,EAAE;oBAAE,OAAO;gBAChC,qEAAqE;gBACrE,sEAAsE;gBACtE,sEAAsE;gBACtE,uEAAuE;gBACvE,MAAM,MAAM,GAAG,UAAU,CAAC,IAAI,CAAC,CAAC,EAAE,EAAE,EAAE;oBACpC,MAAM,SAAS,GAAG,CAAC,CAAC,iBAAiB,CAAC,EAAE,CAAC,GAAG,qBAAqB,CAAC;oBAClE,OAAO,SAAS,GAAG,EAAE,CAAC;gBACxB,CAAC,CAAC,CAAC;gBACH,IAAI,CAAC,MAAM;oBAAE,OAAO,CAAC,+CAA+C;gBACpE,IAAI,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,cAAc,EAAE,MAAM,EAAE,CAAC,CAAC;YAC9C,CAAC;SACF,CAAC;IACJ,CAAC;CACF,CAAC;AAEF;;;;;;;GAOG;AACH,MAAM,cAAc,GAAyB;IAC3C,EAAE,EAAE,kBAAkB;IACtB,UAAU,EAAE,UAAU;IACtB,MAAM,EAAE,kGAAkG;IAC1G,UAAU,EAAE,4BAA4B;IACxC,MAAM,EAAE,CAAC;IACT,eAAe,EAAE,CAAC,EAAE,0EAA0E;IAC9F,sEAAsE;IACtE,wEAAwE;IACxE,uEAAuE;IACvE,KAAK,EAAE,EAAE;IACT,MAAM,EAAE,KAAK,EAAE,4CAA4C;IAC3D,eAAe,EAAE,SAAS;IAC1B,iBAAiB,CAAC,CAAC,EAAE,IAAI;QACvB,MAAM,YAAY,GAAG,CAAC,CAAC;QACvB,MAAM,eAAe,GAAG,KAAK,CAAC;QAC9B,MAAM,MAAM,GAAG,kBAAkB,CAAC;QAClC,IAAI,QAAQ,GAAG,CAAC,CAAC;QACjB,IAAI,eAAe,GAAG,CAAC,CAAC;QACxB,IAAI,WAAW,GAAG,KAAK,CAAC;QACxB,OAAO;YACL,IAAI;gBACF,IAAI,CAAC,UAAU,IAAI,CAAC,CAAC;gBACrB,IAAI,WAAW;oBAAE,OAAO,CAAC,6EAA6E;gBACtG,IAAI,CAAC,CAAC,KAAK,CAAC,KAAK,EAAE,GAAG,eAAe;oBAAE,OAAO,CAAC,kCAAkC;gBACjF,IAAI,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,aAAa,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC,CAAC;gBACnD,QAAQ,IAAI,CAAC,CAAC;gBACd,IAAI,CAAC,CAAC,mBAAmB,EAAE,EAAE,CAAC;oBAC5B,yDAAyD;oBACzD,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,KAAK,EAAE,GAAG,eAAe,GAAG,CAAC,IAAI,QAAQ,CAAC;oBACpE,IAAI,QAAQ,IAAI,YAAY;wBAAE,WAAW,GAAG,IAAI,CAAC;gBACnD,CAAC;YACH,CAAC;SACF,CAAC;IACJ,CAAC;CACF,CAAC;AAEF;;;;;;;;GAQG;AACH,MAAM,mBAAmB,GAAyB;IAChD,EAAE,EAAE,uBAAuB;IAC3B,UAAU,EAAE,eAAe;IAC3B,MAAM,EAAE,yFAAyF;IACjG,UAAU,EAAE,iCAAiC;IAC7C,MAAM,EAAE,CAAC;IACT,eAAe,EAAE,CAAC;IAClB,KAAK,EAAE,EAAE;IACT,MAAM,EAAE,EAAE,GAAG,MAAM,EAAE,yCAAyC;IAC9D,iBAAiB,CAAC,CAAC,EAAE,IAAI;QACvB,OAAO;YACL,IAAI;gBACF,IAAI,CAAC,UAAU,IAAI,CAAC,CAAC;gBACrB,wEAAwE;gBACxE,uEAAuE;gBACvE,yEAAyE;gBACzE,oEAAoE;gBACpE,MAAM,qBAAqB,GAAG,KAAK,CAAC;gBACpC,IAAI,qBAAqB,EAAE,CAAC;oBAC1B,IAAI,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,gBAAgB,EAAE,CAAC,CAAC;gBAC1D,CAAC;YACH,CAAC;SACF,CAAC;IACJ,CAAC;CACF,CAAC;AAEF;;;;;;;;GAQG;AACH,MAAM,iBAAiB,GAAyB;IAC9C,EAAE,EAAE,oBAAoB;IACxB,UAAU,EAAE,iBAAiB;IAC7B,MAAM,EAAE,qGAAqG;IAC7G,UAAU,EAAE,iCAAiC;IAC7C,eAAe,EAAE,4EAA4E;IAC7F,MAAM,EAAE,MAAM,CAAC,iBAAiB,EAAE,wDAAwD;IAC1F,eAAe,EAAE,MAAM,CAAC,iBAAiB;IACzC,KAAK,EAAE,EAAE;IACT,MAAM,EAAE,EAAE,GAAG,MAAM,EAAE,cAAc;IACnC,eAAe,EAAE,EAAE,MAAM,EAAE,yCAAyC,EAAE,WAAW,EAAE,EAAE,GAAG,MAAM,EAAE;IAChG,iBAAiB,CAAC,CAAC,EAAE,IAAI;QACvB,MAAM,aAAa,GAAG,EAAE,GAAG,MAAM,CAAC;QAClC,IAAI,YAAY,GAAG,MAAM,CAAC,iBAAiB,CAAC;QAC5C,OAAO;YACL,IAAI;gBACF,IAAI,CAAC,UAAU,IAAI,CAAC,CAAC;gBACrB,uEAAuE;gBACvE,uEAAuE;gBACvE,IAAI,CAAC,CAAC,KAAK,CAAC,KAAK,EAAE,GAAG,YAAY,IAAI,aAAa,EAAE,CAAC;oBACpD,IAAI,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,gBAAgB,EAAE,CAAC,CAAC;oBACxD,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,EAAE,CAAC,CAAC;oBACvC,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,KAAK,EAAE,CAAC;gBACjC,CAAC;YACH,CAAC;SACF,CAAC;IACJ,CAAC;CACF,CAAC;AAEF;;;;;;;;;;;;;;;;;GAiBG;AACH,MAAM,sBAAsB,GAAyB;IACnD,EAAE,EAAE,2BAA2B;IAC/B,UAAU,EAAE,MAAM;IAClB,MAAM,EAAE,6IAA6I;IACrJ,UAAU,EAAE,uCAAuC;IACnD,MAAM,EAAE,CAAC;IACT,eAAe,EAAE,CAAC,EAAE,8FAA8F;IAClH,KAAK,EAAE,EAAE;IACT,MAAM,EAAE,MAAM,EAAE,kGAAkG;IAClH,iBAAiB,CAAC,CAAC,EAAE,IAAI;QACvB,MAAM,SAAS,GAAG,SAAS,CAAC,CAAC,gEAAgE;QAC7F,MAAM,cAAc,GAAG,CAAC,CAAC,CAAC,wBAAwB;QAClD,MAAM,YAAY,GAAG,SAAS,CAAC,CAAC,6DAA6D;QAC7F,MAAM,GAAG,GAAG,qFAAqF,CAAC;QAClG,MAAM,QAAQ,GAAG,uBAAuB,CAAC;QACzC,IAAI,MAAM,GAAG,iBAAiB,CAAC;QAC/B,OAAO;YACL,IAAI;gBACF,IAAI,CAAC,UAAU,IAAI,CAAC,CAAC;gBACrB,yEAAyE;gBACzE,IAAI,CAAC,CAAC,CAAC,mBAAmB,EAAE;oBAAE,OAAO;gBACrC,MAAM,KAAK,GAAG,CAAC,CAAC,KAAK,CAAC,KAAK,EAAE,CAAC;gBAC9B,MAAM,IAAI,GAAG,EAAE,KAAK,EAAE,QAAQ,EAAE,SAAS,EAAE,YAAY,EAAE,cAAc,EAAE,aAAa,EAAE,KAAK,EAAE,CAAC;gBAChG,IAAI,gBAAgB,CAAC,MAAM,EAAE,GAAG,EAAE,QAAQ,EAAE,IAAI,CAAC;oBAAE,OAAO,CAAC,yCAAyC;gBACpG,IAAI,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAE,CAAC,CAAC;gBACzC,MAAM,GAAG,UAAU,CAAC,MAAM,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,OAAO,EAAE,QAAQ,EAAE,IAAI,EAAE,KAAK,EAAE,EAAE,YAAY,EAAE,KAAK,CAAC,CAAC;YACjG,CAAC;SACF,CAAC;IACJ,CAAC;CACF,CAAC;AAEF;;;;;;;;;GASG;AACH,MAAM,yBAAyB,GAAyB;IACtD,EAAE,EAAE,8BAA8B;IAClC,UAAU,EAAE,qBAAqB,EAAE,gEAAgE;IACnG,MAAM,EAAE,8HAA8H;IACtI,UAAU,EAAE,gCAAgC;IAC5C,MAAM,EAAE,CAAC,EAAE,2DAA2D;IACtE,eAAe,EAAE,CAAC,EAAE,2CAA2C;IAC/D,KAAK,EAAE,EAAE;IACT,MAAM,EAAE,CAAC,GAAG,MAAM,EAAE,yBAAyB;IAC7C,iBAAiB,CAAC,CAAC,EAAE,IAAI;QACvB,MAAM,MAAM,GAAG,EAAE,GAAG,MAAM,CAAC;QAC3B,iFAAiF;QACjF,MAAM,QAAQ,GAAG;YACf,EAAE,EAAE,EAAE,OAAO,EAAE,YAAY,EAAE,CAAC,EAAE,KAAK,EAAE,UAAoC,EAAE;YAC7E,EAAE,EAAE,EAAE,OAAO,EAAE,YAAY,EAAE,CAAC,EAAE,KAAK,EAAE,UAAoC,EAAE;YAC7E,EAAE,EAAE,EAAE,OAAO,EAAE,YAAY,EAAE,CAAC,EAAE,KAAK,EAAE,UAAoC,EAAE;SAC9E,CAAC;QACF,OAAO;YACL,IAAI;gBACF,IAAI,CAAC,UAAU,IAAI,CAAC,CAAC;gBACrB,KAAK,MAAM,CAAC,IAAI,QAAQ,EAAE,CAAC;oBACzB,IAAI,CAAC,CAAC,KAAK,KAAK,UAAU;wBAAE,SAAS,CAAC,uBAAuB;oBAC7D,IAAI,CAAC,CAAC,KAAK,CAAC,KAAK,EAAE,GAAG,CAAC,CAAC,YAAY,IAAI,MAAM;wBAAE,SAAS;oBACzD,CAAC,CAAC,KAAK,GAAG,SAAS,CAAC;oBACpB,IAAI,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,qBAAqB,EAAE,MAAM,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;gBAC3D,CAAC;YACH,CAAC;SACF,CAAC;IACJ,CAAC;CACF,CAAC;AAEF;;;;;;;GAOG;AACH,MAAM,oBAAoB,GAAyB;IACjD,EAAE,EAAE,yBAAyB;IAC7B,UAAU,EAAE,oBAAoB;IAChC,MAAM,EAAE,wIAAwI;IAChJ,UAAU,EAAE,gCAAgC;IAC5C,eAAe,EAAE,kEAAkE;IACnF,MAAM,EAAE,CAAC,EAAE,oFAAoF;IAC/F,eAAe,EAAE,CAAC;IAClB,KAAK,EAAE,CAAC,EAAE,sFAAsF;IAChG,MAAM,EAAE,CAAC,GAAG,EAAE,GAAG,MAAM,EAAE,sBAAsB;IAC/C,eAAe,EAAE;QACf,MAAM,EACJ,uMAAuM;QACzM,WAAW,EAAE,EAAE,GAAG,EAAE,GAAG,MAAM;KAC9B;IACD,iBAAiB,CAAC,CAAC,EAAE,IAAI;QACvB,MAAM,QAAQ,GAAG,EAAE,GAAG,EAAE,GAAG,MAAM,CAAC;QAClC,IAAI,iBAAiB,GAAG,CAAC,QAAQ,CAAC;QAClC,OAAO;YACL,IAAI;gBACF,IAAI,CAAC,UAAU,IAAI,CAAC,CAAC;gBACrB,kEAAkE;gBAClE,IAAI,CAAC,CAAC,KAAK,CAAC,KAAK,EAAE,GAAG,iBAAiB,GAAG,QAAQ;oBAAE,OAAO,CAAC,yBAAyB;gBACrF,IAAI,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,oBAAoB,EAAE,MAAM,EAAE,gBAAgB,EAAE,CAAC,CAAC;gBACpE,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,KAAK,EAAE,CAAC,CAAC,mCAAmC;YAC1E,CAAC;SACF,CAAC;IACJ,CAAC;CACF,CAAC;AAEF;;;;;;;GAOG;AACH,MAAM,mBAAmB,GAAyB;IAChD,EAAE,EAAE,wBAAwB;IAC5B,UAAU,EAAE,kBAAkB;IAC9B,MAAM,EAAE,uHAAuH;IAC/H,UAAU,EAAE,gCAAgC;IAC5C,eAAe,EAAE,2EAA2E;IAC5F,MAAM,EAAE,CAAC,EAAE,sDAAsD;IACjE,eAAe,EAAE,CAAC,EAAE,yEAAyE;IAC7F,KAAK,EAAE,GAAG,EAAE,8DAA8D;IAC1E,MAAM,EAAE,CAAC,GAAG,MAAM;IAClB,eAAe,EAAE;QACf,MAAM,EACJ,sLAAsL;QACxL,WAAW,EAAE,CAAC,GAAG,EAAE,GAAG,MAAM,EAAE,sDAAsD;KACrF;IACD,iBAAiB,CAAC,CAAC,EAAE,IAAI;QACvB,MAAM,YAAY,GAAG,CAAC,CAAC;QACvB,MAAM,eAAe,GAAG,CAAC,GAAG,MAAM,CAAC;QACnC,MAAM,SAAS,GAAG,CAAC,GAAG,EAAE,GAAG,MAAM,CAAC;QAClC,IAAI,MAAM,GAAG,CAAC,CAAC,CAAC;QAChB,IAAI,QAAQ,GAAG,CAAC,CAAC;QACjB,IAAI,eAAe,GAAG,CAAC,CAAC;QACxB,OAAO;YACL,IAAI;gBACF,IAAI,CAAC,UAAU,IAAI,CAAC,CAAC;gBACrB,yEAAyE;gBACzE,MAAM,KAAK,GAAG,CAAC,CAAC,KAAK,CAAC,KAAK,EAAE,CAAC;gBAC9B,MAAM,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,GAAG,SAAS,CAAC,CAAC;gBACxC,IAAI,CAAC,KAAK,MAAM,EAAE,CAAC;oBACjB,MAAM,GAAG,CAAC,CAAC;oBACX,QAAQ,GAAG,CAAC,CAAC;oBACb,eAAe,GAAG,CAAC,CAAC;gBACtB,CAAC;gBACD,IAAI,QAAQ,IAAI,YAAY;oBAAE,OAAO,CAAC,mCAAmC;gBACzE,IAAI,KAAK,GAAG,eAAe;oBAAE,OAAO,CAAC,uCAAuC;gBAC5E,QAAQ,IAAI,CAAC,CAAC;gBACd,eAAe,GAAG,KAAK,GAAG,eAAe,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,QAAQ,GAAG,CAAC,CAAC,CAAC;gBACtE,IAAI,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,kBAAkB,EAAE,MAAM,EAAE,aAAa,EAAE,CAAC,CAAC;YACjE,CAAC;SACF,CAAC;IACJ,CAAC;CACF,CAAC;AAEF;;;;;;GAMG;AACH,MAAM,kBAAkB,GAAyB;IAC/C,EAAE,EAAE,sBAAsB;IAC1B,UAAU,EAAE,uBAAuB;IACnC,MAAM,EAAE,8FAA8F;IACtG,UAAU,EAAE,gCAAgC;IAC5C,eAAe,EAAE,2EAA2E;IAC5F,MAAM,EAAE,CAAC,EAAE,qDAAqD;IAChE,eAAe,EAAE,CAAC;IAClB,KAAK,EAAE,GAAG,EAAE,qCAAqC;IACjD,MAAM,EAAE,MAAM;IACd,eAAe,EAAE;QACf,MAAM,EACJ,kLAAkL;QACpL,WAAW,EAAE,EAAE,GAAG,MAAM;KACzB;IACD,iBAAiB,CAAC,CAAC,EAAE,IAAI;QACvB,MAAM,OAAO,GAAG,EAAE,CAAC;QACnB,IAAI,IAAI,GAAG,CAAC,CAAC,CAAC;QACd,IAAI,KAAK,GAAG,CAAC,CAAC;QACd,OAAO;YACL,IAAI;gBACF,IAAI,CAAC,UAAU,IAAI,CAAC,CAAC;gBACrB,0EAA0E;gBAC1E,MAAM,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,EAAE,GAAG,SAAS,CAAC,CAAC;gBAClD,IAAI,CAAC,KAAK,IAAI,EAAE,CAAC;oBACf,IAAI,GAAG,CAAC,CAAC;oBACT,KAAK,GAAG,CAAC,CAAC;gBACZ,CAAC;gBACD,KAAK,IAAI,CAAC,CAAC;gBACX,IAAI,KAAK,KAAK,OAAO;oBAAE,IAAI,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,uBAAuB,EAAE,MAAM,EAAE,QAAQ,CAAC,EAAE,EAAE,CAAC,CAAC;YAC3F,CAAC;SACF,CAAC;IACJ,CAAC;CACF,CAAC;AAEF;;;;;;GAMG;AACH,MAAM,gBAAgB,GAAyB;IAC7C,EAAE,EAAE,oBAAoB;IACxB,UAAU,EAAE,qBAAqB;IACjC,MAAM,EACJ,sHAAsH;QACtH,mHAAmH;QACnH,yHAAyH;IAC3H,UAAU,EAAE,gCAAgC;IAC5C,MAAM,EAAE,CAAC,EAAE,gEAAgE;IAC3E,eAAe,EAAE,CAAC,EAAE,sDAAsD;IAC1E,KAAK,EAAE,EAAE,EAAE,0EAA0E;IACrF,MAAM,EAAE,CAAC,GAAG,MAAM;IAClB,iBAAiB,CAAC,CAAC,EAAE,IAAI;QACvB,MAAM,OAAO,GAAG,IAAI,GAAG,EAAU,CAAC;QAClC,OAAO;YACL,IAAI;gBACF,IAAI,CAAC,UAAU,IAAI,CAAC,CAAC;gBACrB,sEAAsE;gBACtE,oEAAoE;gBACpE,KAAK,MAAM,OAAO,IAAI,CAAC,OAAO,EAAE,UAAU,CAAU,EAAE,CAAC;oBACrD,KAAK,MAAM,SAAS,IAAI,CAAC,GAAG,EAAE,GAAG,CAAC,EAAE,CAAC;wBACnC,MAAM,GAAG,GAAG,qBAAqB,OAAO,IAAI,SAAS,KAAK,CAAC;wBAC3D,IAAI,OAAO,CAAC,GAAG,CAAC,GAAG,CAAC;4BAAE,SAAS,CAAC,0CAA0C;wBAC1E,OAAO,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;wBACjB,IAAI,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,qBAAqB,EAAE,MAAM,EAAE,GAAG,EAAE,CAAC,CAAC;oBAC1D,CAAC;gBACH,CAAC;YACH,CAAC;SACF,CAAC;IACJ,CAAC;CACF,CAAC;AAEF;;;;;;;;;GASG;AACH,MAAM,eAAe,GAAyB;IAC5C,EAAE,EAAE,mBAAmB;IACvB,UAAU,EAAE,oBAAoB;IAChC,MAAM,EAAE,+JAA+J;IACvK,UAAU,EAAE,+CAA+C;IAC3D,eAAe,EAAE,0DAA0D;IAC3E,MAAM,EAAE,CAAC,EAAE,+CAA+C;IAC1D,eAAe,EAAE,CAAC;IAClB,KAAK,EAAE,EAAE,EAAE,oDAAoD;IAC/D,MAAM,EAAE,CAAC,GAAG,EAAE,GAAG,MAAM;IACvB,eAAe,EAAE;QACf,MAAM,EACJ,uLAAuL;QACzL,WAAW,EAAE,EAAE,GAAG,EAAE,GAAG,MAAM;KAC9B;IACD,iBAAiB,CAAC,CAAC,EAAE,IAAI;QACvB,MAAM,QAAQ,GAAG,EAAE,GAAG,EAAE,GAAG,MAAM,CAAC;QAClC,IAAI,YAAY,GAAG,CAAC,QAAQ,CAAC;QAC7B,OAAO;YACL,IAAI;gBACF,IAAI,CAAC,UAAU,IAAI,CAAC,CAAC;gBACrB,qEAAqE;gBACrE,IAAI,CAAC,CAAC,KAAK,CAAC,KAAK,EAAE,GAAG,YAAY,GAAG,QAAQ;oBAAE,OAAO,CAAC,uBAAuB;gBAC9E,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,KAAK,EAAE,CAAC;gBAC/B,IAAI,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,oBAAoB,EAAE,MAAM,EAAE,yCAAyC,EAAE,CAAC,CAAC;YAC/F,CAAC;SACF,CAAC;IACJ,CAAC;CACF,CAAC;AAEF,MAAM,0BAA0B,GAAyB;IACvD,EAAE,EAAE,+BAA+B;IACnC,UAAU,EAAE,sBAAsB;IAClC,MAAM,EAAE,0FAA0F;IAClG,UAAU,EAAE,8BAA8B;IAC1C,MAAM,EAAE,CAAC;IACT,eAAe,EAAE,CAAC;IAClB,KAAK,EAAE,EAAE;IACT,MAAM,EAAE,CAAC,GAAG,EAAE,GAAG,MAAM;IACvB,iBAAiB,CAAC,EAAE,EAAE,IAAI;QACxB,MAAM,QAAQ,GAAG,IAAI,GAAG,CAAC,CAAC,SAAS,EAAE,SAAS,EAAE,SAAS,CAAC,CAAC,CAAC;QAC5D,OAAO;YACL,IAAI;gBACF,IAAI,CAAC,UAAU,IAAI,CAAC,CAAC;gBACrB,KAAK,MAAM,MAAM,IAAI,QAAQ,EAAE,CAAC;oBAC9B,IAAI,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,sBAAsB,EAAE,MAAM,EAAE,CAAC,CAAC;gBACtD,CAAC;gBACD,QAAQ,CAAC,KAAK,EAAE,CAAC,CAAC,+DAA+D;YACnF,CAAC;SACF,CAAC;IACJ,CAAC;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,uBAAuB,GAA2B;IAC7D,0BAA0B;IAC1B,eAAe;IACf,mBAAmB;IACnB,kBAAkB;IAClB,gBAAgB;IAChB,oBAAoB;IACpB,cAAc;IACd,mBAAmB;IACnB,iBAAiB;IACjB,sBAAsB;IACtB,yBAAyB;IACzB,oBAAoB;CACrB,CAAC"}
1
+ {"version":3,"file":"selfActionRegistry.js","sourceRoot":"","sources":["../../src/testing/selfActionRegistry.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "instar",
3
- "version": "1.3.819",
3
+ "version": "1.3.821",
4
4
  "description": "Coherence infrastructure for self-evolving AI agents — on the Claude Code or Codex subscription you already have.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -40,6 +40,8 @@ export const SELF_ACTION_VERB_TOKENS = Object.freeze([
40
40
  'notify', 'createForumTopic', 'createAttentionItem', 'sendToTopic',
41
41
  // re-drive / re-pin family
42
42
  'reDrive', 'redrive', 'rePin', 'repin',
43
+ // record-repair family (ownership-gated-spawn §3.2 — the reconciler's fenced CAS)
44
+ 'converge',
43
45
  // retry / nudge / escalate family
44
46
  'retry', 'nudge', 'escalate',
45
47
  ]);
@@ -73,6 +73,14 @@
73
73
 
74
74
  ---
75
75
 
76
+ ## 4b. Judgment-point check (Judgment Within Floors standard)
77
+
78
+ **Does this change add a static heuristic at a competing-signals decision point? If yes: why is it not a judgment point within a floor?**
79
+
80
+ [A "competing-signals decision point" is one where multiple live signals (work evidence, liveness, recency, ownership, urgency) can genuinely conflict and the right answer is not statically enumerable. Per the **Judgment Within Floors** standard (`docs/STANDARDS-REGISTRY.md`), a new static heuristic at such a point must state why it is not a judgment point — valid answers include: the domain is enumerable (it's an invariant, name it), the choice is a safety guard on an irreversible action (deterministic by design), or a floor + arbiter is declared in the driving spec's `## Decision points touched` section. "No new static heuristic at a competing-signals decision point" is a valid answer and must be stated explicitly.]
81
+
82
+ ---
83
+
76
84
  ## 5. Interactions
77
85
 
78
86
  **Does this interact with existing checks, recovery paths, or infrastructure?**
@@ -92,6 +92,7 @@ The skill spawns reviewers in parallel:
92
92
  - **Scalability/performance.** Hot-path cost, concurrent writes, memory churn, fail-open semantics, hook latency.
93
93
  - **Adversarial.** Misbehaving-session scenarios — bad-entry poisoning, self-reinforcing loops, stale claims, authority ambiguity, kind gaming.
94
94
  - **Integration/deployment.** Migration, backup/restore, multi-machine, config knobs, dashboard surface, rollback. **Multi-machine posture (Cross-Machine Coherence — mandatory check):** every feature/state surface the spec introduces must declare its posture when the agent runs on more than one machine — replicated (named replication path) / proxied-on-read (named merged read) / machine-local BY DESIGN (with the reason). A spec whose features silently assume a single machine is a MATERIAL finding: ~20 features shipped machine-blind before this check existed (2026-06-12 audit, topic 13481; MULTI-MACHINE-SEAMLESSNESS-SPEC is the cleanup bill). Probe specifically: user-facing notices (one-voice gating?), durable state (strands on topic transfer?), generated URLs (survive machine boundaries?). **Standard A — reject an UNDEFENDED machine-local (default is `unified`):** a *declared* posture is no longer enough — the DEFAULT posture is `unified`, and an undefended `machine-local` is itself a **MATERIAL FINDING** (this is the upgrade from "accepts a declaration" to "requires the correct default"; the tiered-intelligence consult-memory shipped machine-local-by-design and survived seven rounds because the check only tested for an *answer*). A machine-local surface is allowed ONLY with a `machine-local-justification: <key>` marker — one labeled `key: value` line per machine-local surface inside the spec's `## Multi-machine posture` section — whose `<key>` is drawn from a **CLOSED taxonomy**: `physical-credential-locality` (a login / key / token / service-binding that physically lives on one disk — e.g. a Claude OAuth login, a browser profile's cookies, a Telegram bot token + the forum/topic ids it namespaces), `hardware-bound-resource` (bound to specific physical hardware), or `operator-ratified-exception` (the operator explicitly ratified it — this key MUST cite a machine-verifiable, existence-checkable artifact ref: a commit SHA, a registry key, or a resolvable URL, NEVER a bare topic+date). Other locality reasons (availability, privacy/data-residency, cost/latency, an intentional per-machine cache) are DENIED by default — each is either not a real locality *requirement* or must be routed through `operator-ratified-exception`; a fourth key is a constitution-bound operator decision, never an author's convenience. The check is **BIDIRECTIONAL**: an *infeasible* `unified` (a surface that is inherently credential/hardware-bound but declared — or left to default — `unified`) is EQUALLY a MATERIAL FINDING, because "just claim unified" would otherwise be the trivial dodge (and invites an unsafe attempt to replicate a credential). The reviewer INDEPENDENTLY CONTESTS correctness in BOTH directions: a marker whose key is *present* but substantively *wrong* is still a finding — the marker's PRESENCE never satisfies the CORRECTNESS check (this spec's own first draft mislabeled its per-machine hub `hardware-bound-resource`; the correct key was `physical-credential-locality`, and this rule is what catches it). `operator-ratified-exception` is the escape hatch — treat each use as worth surfacing for operator visibility so the hatch can't quietly become the path of least resistance. (Signal vs. Authority: the `machine-local-justification` marker is the cheap deterministic signal; THIS reviewer holds the semantic authority. The purely-deterministic marker LINT lands with the registry ship, hard-sequenced — until then this reviewer + the per-spec `POST /spec/conformance-check` gate surface a missing/wrong marker; do NOT claim a no-LLM deterministic parse exists yet.)
95
+ - **Decision-point classification (Judgment Within Floors — structurally-checked question).** *"Does `## Decision points touched` classify every decision point as `invariant` (with justification) or `judgment-candidate` (floor + arbiter declared, or an argued exemption)? Refuse the tag if the section or a classification is missing."* Every spec that touches a decision point — anything that gates information flow, blocks actions, constrains agent behavior, or chooses among competing signals — MUST carry a `## Decision points touched` section classifying each one: `invariant` (deterministic by design, with the justification stated) or `judgment-candidate` (the deterministic floor + arbiter are declared per the **Judgment Within Floors** standard in `docs/STANDARDS-REGISTRY.md`, or an argued exemption is recorded). The reviewer INDEPENDENTLY CONTESTS correctness in BOTH directions (symmetric to Standard A's marker-correctness rule): an `invariant` label on a genuinely competing-signals point is a MATERIAL FINDING — static rules at those points are the proven failure class (the 2026-07-10 duplicate-session incident's `open-commitment`/`not-lease-holder` heuristics); a `judgment-candidate` without a complete floor (bounded action space, conservative default, fallback ladder ending at a deterministic rung) is EQUALLY a finding. The deterministic half is enforced STRUCTURALLY: `write-convergence-tag.mjs` refuses to stamp the convergence tag when the section or a per-row classification is missing (Structure > Willpower; the section's presence is the cheap signal, THIS reviewer holds the semantic authority). Grandfathering: specs already past round 1 when this gate landed are exempt via the script's `GRANDFATHERED_SLUGS` allowlist (hardcoded in source, extended only by PR — never config). A spec with genuinely NO decision-point surface satisfies the gate with a section stating `*(none)*`.
95
96
  - **Self-Heal Before Notify (Standard B — escalation-gate review-check).** A spec that adds a **monitor / watcher / recurring-or-automated notice source** which raises operator notices MUST place its operator-facing attention-raise DOWNSTREAM of a `selfHealAttempted && selfHealExhausted` signal — the escalation path is UNREACHABLE on first detection. A first-detection escalation on a `recoverable` degradation is a **MATERIAL FINDING**. (Scope: a one-shot conversational reply is NOT a watcher and pays no self-heal cost.) The watcher MUST DECLARE, and the reviewer INDEPENDENTLY CONTESTS: (a) its self-heal step + `remediation-actions` — the concrete operations it invokes (re-register / restart / re-deliver); a no-op that merely flips `selfHealAttempted = true` to unlock escalation is a MATERIAL FINDING, and each side-effecting action MUST carry an idempotency guard + a compensation/rollback (a heal retried over a half-completed action is how these loops corrupt state); (b) that step's P19 brakes (per *No Unbounded Loops*) — `max-attempts`, `max-wall-clock`, `backoff`, `dedupe-key`, `breaker` (INCLUDING flapping: N heals of the same break within a window auto-reclassify to critical and escalate — a structural backstop a `recoverable` label can NEVER waive, per *Distrust Temporary Success*), `max-notification-latency` (an explicit duration WITH units, e.g. `120s`, and ≤ the constitutional ceiling at the registry key `standards.selfHealBeforeNotify.recoverableLatencyCeiling` — a recoverable watcher MUST tell the operator even while self-heal is still running once this ceiling passes; a missing/unitless value is a MATERIAL FINDING and a missing ceiling fails CLOSED = escalate-sooner), `audit-location` (a scrubbed, metadata-only trail — never raw secrets); (c) the severity `class` of each degradation — an **irreversible / data-loss / security** class escalates IMMEDIATELY (on the SAME detection tick, no heal-gate delay interposed) and self-heals CONCURRENTLY (notify-and-heal), while everything else is `recoverable`; a critical degradation MISLABELED `recoverable` to unlock the heal-first path is a MATERIAL FINDING (presence of a class field never satisfies the CORRECTNESS check — symmetric to Standard A's marker-correctness rule). Composes with *No Silent Degradation*: routing to self-heal is NEVER swallowing — every detection + heal attempt is audited, the audit trail IS the report, and the operator is the last resort, not the silent-drop alternative. The FIRST runtime application MUST extract the pattern into a reusable `SelfHealGate` — a THIN declaration + assertion layer over Instar's EXISTING in-process P19 breaker primitives (CrashLoopPauser and the breakers already threaded through the monitors), NEVER a new external workflow engine — plus a shared conformance fixture that exercises the stateful paths (unreachable-before-exhaustion, observable remediation evidence, flapping auto-escalation, and the latency backstop firing mid-heal). That runtime application is a downstream build task registered under Close the Loop, deliberately outside this review-check's own boundary — this bullet ships the review lens + the pattern, the code application follows.
96
97
  - **Decision-Completeness.** (Autonomy Principle 2 — `docs/specs/AUTONOMY-PRINCIPLES-ENFORCEMENT-SPEC.md` Piece 2.) Enumerates every point where the building agent would have to **stop mid-run and ask the user**. Each must be either **frontloaded** into a `## Frontloaded Decisions` section or explicitly tagged **cheap-to-change-after** because the work ships behind a named dark/dry-run/read-only phase. The reviewer **CONTESTS every cheap tag** — it independently asserts reversibility, and a closed non-cheap taxonomy overrides any tag: anything touching **durable external side-effects, money, identity, or a published/user-visible interface is NEVER cheap**, regardless of a "ships dark" label. A contested tag the reviewer rejects is a **material finding that blocks convergence**. Prompt: `templates/reviewer-decision-completeness.md`. Applies to ALL specs through this skill (D7) — no size gate, no per-spec override (D11; the rejected `disposition: override` escape hatch would reopen the exact skip-hatch Principle 2 closes).
97
98
  - **Lessons-aware.** Loads the canonical Instar Design Principles + Lessons Learned index (`docs/INSTAR-DESIGN-PRINCIPLES-AND-LESSONS.md`) plus the running agent's local `.instar/memory/feedback_*.md` entries, then checks the spec for (a) direct contradictions of documented principles/lessons, (b) applicable lessons the spec fails to engage with, (c) behavioral lessons violated by agent-facing surfaces the spec proposes, and **(d) FOUNDATION/SUBSYSTEM AUDIT — the design the spec TESTS, EXTENDS, or BUILDS ON, not just the spec's own surface: does that foundation violate a known standard or repeat a known mistake?** The audit MUST reach one layer below the spec boundary. A spec can be internally clean while faithfully testing or extending a flawed foundation — e.g. a test-harness spec that correctly proves a permission gate which *itself* holds brittle blocking authority in violation of Signal-vs-Authority, or an extension spec built on a subsystem with an unaddressed gap. Taking the underlying subsystem "as given" is exactly how a standards violation survives review: the spec passes, the foundation's flaw is never weighed. When the foundation is flawed, the finding is "this spec is sound but the subsystem it depends on violates standard X / repeats mistake Y — surface it before building on/around it." Catches the "Phase 2" anti-pattern, the spec-converge-pre-auth-circular failure mode (see `feedback_spec_converge_pre_auth_circular`), and the foundation-not-audited gap (the Slack-permission-gate brittle-enum-as-authority that the harness convergence cleared because it audited only the harness, 2026-06-09).
@@ -121,6 +121,52 @@ export function findOpenQuestions(specBody) {
121
121
  .filter((l) => !NONE_RE.test(l));
122
122
  }
123
123
 
124
+ /**
125
+ * Decision-point classification gate (Judgment Within Floors standard,
126
+ * docs/specs/ownership-gated-spawn-and-judgment-within-floors.md §3.6 / FD12):
127
+ * a spec cannot converge unless `## Decision points touched` exists and every
128
+ * row/bullet in it carries a classification — `invariant` or
129
+ * `judgment-candidate`. The section's PRESENCE + per-row token is the cheap
130
+ * deterministic signal; the semantic correctness of each classification is the
131
+ * lessons-aware reviewer's authority (Signal vs. Authority).
132
+ *
133
+ * Grandfathering: specs already past round 1 when this gate landed are exempt
134
+ * via GRANDFATHERED_SLUGS — hardcoded in source, extended only by PR (the
135
+ * emergency-allowlist precedent: code can't add to it at runtime).
136
+ *
137
+ * Returns { ok: true } | { ok: false, reason: 'missing-section' } |
138
+ * { ok: false, reason: 'unclassified', rows: string[] }.
139
+ */
140
+ export const GRANDFATHERED_SLUGS = [
141
+ // Specs mid-review (past round 1) at gate-land time. Extend only by PR.
142
+ ];
143
+
144
+ export function findDecisionPointGaps(specBody, slug) {
145
+ if (slug && GRANDFATHERED_SLUGS.includes(slug)) return { ok: true };
146
+ const m = specBody.match(/^##\s+Decision points touched\b[^\n]*$/im);
147
+ if (!m) return { ok: false, reason: 'missing-section' };
148
+ const start = m.index + m[0].length;
149
+ const restAfter = specBody.slice(start);
150
+ const nextHeading = restAfter.search(/^##\s+/m);
151
+ const section = nextHeading === -1 ? restAfter : restAfter.slice(0, nextHeading);
152
+ const NONE_RE = /^\s*[*_]*\(?\s*(none|n\/a)\s*\.?\)?[*_]*\s*$/i;
153
+ const CLASSIFIED_RE = /\binvariant\b|\bjudgment-candidate\b/i;
154
+ const lines = section
155
+ .split('\n')
156
+ .map((l) => l.trim())
157
+ .filter((l) => l.length > 0)
158
+ .filter((l) => !l.startsWith('>')) // blockquote commentary
159
+ .filter((l) => !/^-{3,}$/.test(l)) // horizontal rule
160
+ // table header + separator rows carry no classification by design
161
+ .filter((l) => !/^\|[\s|:-]*$/.test(l))
162
+ .filter((l) => !/^\|\s*Decision\b/i.test(l));
163
+ if (lines.length === 0) return { ok: false, reason: 'missing-section' };
164
+ if (lines.length === 1 && NONE_RE.test(lines[0])) return { ok: true };
165
+ const unclassified = lines.filter((l) => !NONE_RE.test(l)).filter((l) => !CLASSIFIED_RE.test(l));
166
+ if (unclassified.length > 0) return { ok: false, reason: 'unclassified', rows: unclassified };
167
+ return { ok: true };
168
+ }
169
+
124
170
  // ─── main (guarded so the module is importable for tests) ────────────────
125
171
  // fileURLToPath (not URL.pathname) so %-encoded paths (spaces) compare correctly,
126
172
  // and realpathSync so a symlinked invocation still matches — a mismatch here
@@ -211,6 +257,31 @@ if (openQuestions.length > 0) {
211
257
  process.exit(1);
212
258
  }
213
259
 
260
+ // ─── Decision-point classification gate (Judgment Within Floors, FD12) ────
261
+ // Convergence cannot be stamped while `## Decision points touched` is missing
262
+ // or carries an unclassified row. Structural — prose can't skip it.
263
+ const specSlug = path.basename(specPath, '.md');
264
+ const dpGate = findDecisionPointGaps(content, specSlug);
265
+ if (!dpGate.ok) {
266
+ if (dpGate.reason === 'missing-section') {
267
+ console.error(
268
+ `Spec ${specArg} has no \`## Decision points touched\` section (or it is empty).\n` +
269
+ `Per the Judgment Within Floors standard, every spec must classify each decision\n` +
270
+ `point it touches as \`invariant\` (with justification) or \`judgment-candidate\`\n` +
271
+ `(floor + arbiter declared, or an argued exemption). A spec with no decision-point\n` +
272
+ `surface satisfies this with a section reading "*(none)*". Then re-run.`,
273
+ );
274
+ } else {
275
+ console.error(
276
+ `Spec ${specArg} has ${dpGate.rows.length} unclassified row(s) in ## Decision points touched:\n` +
277
+ dpGate.rows.map((r) => ` • ${r.slice(0, 120)}`).join('\n') +
278
+ `\n\nEach row must carry \`invariant\` or \`judgment-candidate\` (Judgment Within Floors).\n` +
279
+ `Classify each, then re-run.`,
280
+ );
281
+ }
282
+ process.exit(1);
283
+ }
284
+
214
285
  // Parse YAML frontmatter manually (no dependency).
215
286
  // Expect: /^---\n<body>\n---\n<rest>/
216
287
  const FM_RE = /^---\n([\s\S]*?)\n---\n([\s\S]*)$/;