instar 1.3.670 → 1.3.672
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/dist/commands/server.d.ts.map +1 -1
- package/dist/commands/server.js +10 -4
- package/dist/commands/server.js.map +1 -1
- package/dist/core/MessagingToneGate.d.ts +92 -0
- package/dist/core/MessagingToneGate.d.ts.map +1 -1
- package/dist/core/MessagingToneGate.js +137 -20
- package/dist/core/MessagingToneGate.js.map +1 -1
- package/dist/server/outboundGateBudget.d.ts +1 -1
- package/dist/server/outboundGateBudget.d.ts.map +1 -1
- package/dist/server/outboundGateBudget.js +24 -2
- package/dist/server/outboundGateBudget.js.map +1 -1
- package/dist/server/routes.d.ts.map +1 -1
- package/dist/server/routes.js +39 -9
- package/dist/server/routes.js.map +1 -1
- package/dist/server/toneRecipientClass.d.ts +25 -0
- package/dist/server/toneRecipientClass.d.ts.map +1 -0
- package/dist/server/toneRecipientClass.js +25 -0
- package/dist/server/toneRecipientClass.js.map +1 -0
- package/package.json +1 -1
- package/src/data/builtin-manifest.json +46 -46
- package/upgrades/1.3.671.md +26 -0
- package/upgrades/1.3.672.md +63 -0
- package/upgrades/side-effects/outbound-gate-tiered-fail-direction.md +26 -0
- package/upgrades/side-effects/tone-gate-graceful-degradation.md +211 -0
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Operator-channel-sacred (outbound) recipient classifier for the tone-gate seam.
|
|
3
|
+
* Spec: outbound-gate-tiered-fail-direction.
|
|
4
|
+
*
|
|
5
|
+
* Returns 'operator' ONLY when BOTH hold:
|
|
6
|
+
* - the topic has a VERIFIED, locally-auth-bound operator (`asVerifiedOperator`
|
|
7
|
+
* is local-auth-only by the TopicOperatorStore invariant — NEVER a replicated
|
|
8
|
+
* record or a content name; Know Your Principal), AND
|
|
9
|
+
* - the agent has a SINGLE distinct human operator across all topics, so no
|
|
10
|
+
* OTHER human could read a topic thread (all topics live in one forum
|
|
11
|
+
* supergroup; there is no per-topic membership API).
|
|
12
|
+
*
|
|
13
|
+
* Returns 'external' (fail-closed — the safe side) on ANY ambiguity: no topicId,
|
|
14
|
+
* no store, no verified binding, a resolution error, or >1 distinct operator (a
|
|
15
|
+
* multi-user agent). The deliver-on-availability-failure direction is only ever
|
|
16
|
+
* the verified operator's own private channel.
|
|
17
|
+
*/
|
|
18
|
+
export interface ToneOperatorStoreLike {
|
|
19
|
+
asVerifiedOperator: (t: number | string) => unknown;
|
|
20
|
+
all: () => Record<string, {
|
|
21
|
+
uid?: string;
|
|
22
|
+
}>;
|
|
23
|
+
}
|
|
24
|
+
export declare function resolveToneRecipientClass(topicOperatorStore: ToneOperatorStoreLike | null | undefined, topicId: number | string | null | undefined): 'operator' | 'external';
|
|
25
|
+
//# sourceMappingURL=toneRecipientClass.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"toneRecipientClass.d.ts","sourceRoot":"","sources":["../../src/server/toneRecipientClass.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;GAgBG;AACH,MAAM,WAAW,qBAAqB;IACpC,kBAAkB,EAAE,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,KAAK,OAAO,CAAC;IACpD,GAAG,EAAE,MAAM,MAAM,CAAC,MAAM,EAAE;QAAE,GAAG,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;CAC7C;AAED,wBAAgB,yBAAyB,CACvC,kBAAkB,EAAE,qBAAqB,GAAG,IAAI,GAAG,SAAS,EAC5D,OAAO,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,GAAG,SAAS,GAC1C,UAAU,GAAG,UAAU,CAoBzB"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export function resolveToneRecipientClass(topicOperatorStore, topicId) {
|
|
2
|
+
if (topicId == null || !topicOperatorStore)
|
|
3
|
+
return 'external';
|
|
4
|
+
let verified;
|
|
5
|
+
try {
|
|
6
|
+
verified = topicOperatorStore.asVerifiedOperator(topicId);
|
|
7
|
+
}
|
|
8
|
+
catch {
|
|
9
|
+
return 'external';
|
|
10
|
+
}
|
|
11
|
+
if (!verified)
|
|
12
|
+
return 'external';
|
|
13
|
+
try {
|
|
14
|
+
const uids = new Set(Object.values(topicOperatorStore.all())
|
|
15
|
+
.map((o) => o?.uid)
|
|
16
|
+
.filter((u) => typeof u === 'string' && u.length > 0));
|
|
17
|
+
if (uids.size > 1)
|
|
18
|
+
return 'external'; // multi-operator agent → fail-closed
|
|
19
|
+
}
|
|
20
|
+
catch {
|
|
21
|
+
return 'external';
|
|
22
|
+
}
|
|
23
|
+
return 'operator';
|
|
24
|
+
}
|
|
25
|
+
//# sourceMappingURL=toneRecipientClass.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"toneRecipientClass.js","sourceRoot":"","sources":["../../src/server/toneRecipientClass.ts"],"names":[],"mappings":"AAsBA,MAAM,UAAU,yBAAyB,CACvC,kBAA4D,EAC5D,OAA2C;IAE3C,IAAI,OAAO,IAAI,IAAI,IAAI,CAAC,kBAAkB;QAAE,OAAO,UAAU,CAAC;IAC9D,IAAI,QAAiB,CAAC;IACtB,IAAI,CAAC;QACH,QAAQ,GAAG,kBAAkB,CAAC,kBAAkB,CAAC,OAAO,CAAC,CAAC;IAC5D,CAAC;IAAC,MAAM,CAAC;QACP,OAAO,UAAU,CAAC;IACpB,CAAC;IACD,IAAI,CAAC,QAAQ;QAAE,OAAO,UAAU,CAAC;IACjC,IAAI,CAAC;QACH,MAAM,IAAI,GAAG,IAAI,GAAG,CAClB,MAAM,CAAC,MAAM,CAAC,kBAAkB,CAAC,GAAG,EAAE,CAAC;aACpC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,GAAG,CAAC;aAClB,MAAM,CAAC,CAAC,CAAC,EAAe,EAAE,CAAC,OAAO,CAAC,KAAK,QAAQ,IAAI,CAAC,CAAC,MAAM,GAAG,CAAC,CAAC,CACrE,CAAC;QACF,IAAI,IAAI,CAAC,IAAI,GAAG,CAAC;YAAE,OAAO,UAAU,CAAC,CAAC,qCAAqC;IAC7E,CAAC;IAAC,MAAM,CAAC;QACP,OAAO,UAAU,CAAC;IACpB,CAAC;IACD,OAAO,UAAU,CAAC;AACpB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "./builtin-manifest.schema.json",
|
|
3
3
|
"schemaVersion": 1,
|
|
4
|
-
"generatedAt": "2026-06-
|
|
5
|
-
"instarVersion": "1.3.
|
|
4
|
+
"generatedAt": "2026-06-26T08:03:29.818Z",
|
|
5
|
+
"instarVersion": "1.3.672",
|
|
6
6
|
"entryCount": 202,
|
|
7
7
|
"entries": {
|
|
8
8
|
"hook:session-start": {
|
|
@@ -418,7 +418,7 @@
|
|
|
418
418
|
"type": "route-group",
|
|
419
419
|
"domain": "monitoring",
|
|
420
420
|
"sourcePath": "src/server/routes.ts",
|
|
421
|
-
"contentHash": "
|
|
421
|
+
"contentHash": "b4db46b3171f84b9c8bc2aa3580c8bd4ac1e98ab36f89470d1cee78dfb4bd9f3",
|
|
422
422
|
"since": "2025-01-01"
|
|
423
423
|
},
|
|
424
424
|
"route-group:agents": {
|
|
@@ -426,7 +426,7 @@
|
|
|
426
426
|
"type": "route-group",
|
|
427
427
|
"domain": "sessions",
|
|
428
428
|
"sourcePath": "src/server/routes.ts",
|
|
429
|
-
"contentHash": "
|
|
429
|
+
"contentHash": "b4db46b3171f84b9c8bc2aa3580c8bd4ac1e98ab36f89470d1cee78dfb4bd9f3",
|
|
430
430
|
"since": "2025-01-01"
|
|
431
431
|
},
|
|
432
432
|
"route-group:backups": {
|
|
@@ -434,7 +434,7 @@
|
|
|
434
434
|
"type": "route-group",
|
|
435
435
|
"domain": "operations",
|
|
436
436
|
"sourcePath": "src/server/routes.ts",
|
|
437
|
-
"contentHash": "
|
|
437
|
+
"contentHash": "b4db46b3171f84b9c8bc2aa3580c8bd4ac1e98ab36f89470d1cee78dfb4bd9f3",
|
|
438
438
|
"since": "2025-01-01"
|
|
439
439
|
},
|
|
440
440
|
"route-group:git": {
|
|
@@ -442,7 +442,7 @@
|
|
|
442
442
|
"type": "route-group",
|
|
443
443
|
"domain": "coordination",
|
|
444
444
|
"sourcePath": "src/server/routes.ts",
|
|
445
|
-
"contentHash": "
|
|
445
|
+
"contentHash": "b4db46b3171f84b9c8bc2aa3580c8bd4ac1e98ab36f89470d1cee78dfb4bd9f3",
|
|
446
446
|
"since": "2025-01-01"
|
|
447
447
|
},
|
|
448
448
|
"route-group:memory": {
|
|
@@ -450,7 +450,7 @@
|
|
|
450
450
|
"type": "route-group",
|
|
451
451
|
"domain": "memory",
|
|
452
452
|
"sourcePath": "src/server/routes.ts",
|
|
453
|
-
"contentHash": "
|
|
453
|
+
"contentHash": "b4db46b3171f84b9c8bc2aa3580c8bd4ac1e98ab36f89470d1cee78dfb4bd9f3",
|
|
454
454
|
"since": "2025-01-01"
|
|
455
455
|
},
|
|
456
456
|
"route-group:semantic": {
|
|
@@ -458,7 +458,7 @@
|
|
|
458
458
|
"type": "route-group",
|
|
459
459
|
"domain": "memory",
|
|
460
460
|
"sourcePath": "src/server/routes.ts",
|
|
461
|
-
"contentHash": "
|
|
461
|
+
"contentHash": "b4db46b3171f84b9c8bc2aa3580c8bd4ac1e98ab36f89470d1cee78dfb4bd9f3",
|
|
462
462
|
"since": "2025-01-01"
|
|
463
463
|
},
|
|
464
464
|
"route-group:status": {
|
|
@@ -466,7 +466,7 @@
|
|
|
466
466
|
"type": "route-group",
|
|
467
467
|
"domain": "monitoring",
|
|
468
468
|
"sourcePath": "src/server/routes.ts",
|
|
469
|
-
"contentHash": "
|
|
469
|
+
"contentHash": "b4db46b3171f84b9c8bc2aa3580c8bd4ac1e98ab36f89470d1cee78dfb4bd9f3",
|
|
470
470
|
"since": "2025-01-01"
|
|
471
471
|
},
|
|
472
472
|
"route-group:capabilities": {
|
|
@@ -474,7 +474,7 @@
|
|
|
474
474
|
"type": "route-group",
|
|
475
475
|
"domain": "mapping",
|
|
476
476
|
"sourcePath": "src/server/routes.ts",
|
|
477
|
-
"contentHash": "
|
|
477
|
+
"contentHash": "b4db46b3171f84b9c8bc2aa3580c8bd4ac1e98ab36f89470d1cee78dfb4bd9f3",
|
|
478
478
|
"since": "2025-01-01"
|
|
479
479
|
},
|
|
480
480
|
"route-group:project-map": {
|
|
@@ -482,7 +482,7 @@
|
|
|
482
482
|
"type": "route-group",
|
|
483
483
|
"domain": "mapping",
|
|
484
484
|
"sourcePath": "src/server/routes.ts",
|
|
485
|
-
"contentHash": "
|
|
485
|
+
"contentHash": "b4db46b3171f84b9c8bc2aa3580c8bd4ac1e98ab36f89470d1cee78dfb4bd9f3",
|
|
486
486
|
"since": "2025-01-01"
|
|
487
487
|
},
|
|
488
488
|
"route-group:coherence": {
|
|
@@ -490,7 +490,7 @@
|
|
|
490
490
|
"type": "route-group",
|
|
491
491
|
"domain": "coherence",
|
|
492
492
|
"sourcePath": "src/server/routes.ts",
|
|
493
|
-
"contentHash": "
|
|
493
|
+
"contentHash": "b4db46b3171f84b9c8bc2aa3580c8bd4ac1e98ab36f89470d1cee78dfb4bd9f3",
|
|
494
494
|
"since": "2025-01-01"
|
|
495
495
|
},
|
|
496
496
|
"route-group:topic-bindings": {
|
|
@@ -498,7 +498,7 @@
|
|
|
498
498
|
"type": "route-group",
|
|
499
499
|
"domain": "sessions",
|
|
500
500
|
"sourcePath": "src/server/routes.ts",
|
|
501
|
-
"contentHash": "
|
|
501
|
+
"contentHash": "b4db46b3171f84b9c8bc2aa3580c8bd4ac1e98ab36f89470d1cee78dfb4bd9f3",
|
|
502
502
|
"since": "2025-01-01"
|
|
503
503
|
},
|
|
504
504
|
"route-group:context": {
|
|
@@ -506,7 +506,7 @@
|
|
|
506
506
|
"type": "route-group",
|
|
507
507
|
"domain": "context",
|
|
508
508
|
"sourcePath": "src/server/routes.ts",
|
|
509
|
-
"contentHash": "
|
|
509
|
+
"contentHash": "b4db46b3171f84b9c8bc2aa3580c8bd4ac1e98ab36f89470d1cee78dfb4bd9f3",
|
|
510
510
|
"since": "2025-01-01"
|
|
511
511
|
},
|
|
512
512
|
"route-group:scope-coherence": {
|
|
@@ -514,7 +514,7 @@
|
|
|
514
514
|
"type": "route-group",
|
|
515
515
|
"domain": "coherence",
|
|
516
516
|
"sourcePath": "src/server/routes.ts",
|
|
517
|
-
"contentHash": "
|
|
517
|
+
"contentHash": "b4db46b3171f84b9c8bc2aa3580c8bd4ac1e98ab36f89470d1cee78dfb4bd9f3",
|
|
518
518
|
"since": "2025-01-01"
|
|
519
519
|
},
|
|
520
520
|
"route-group:canonical-state": {
|
|
@@ -522,7 +522,7 @@
|
|
|
522
522
|
"type": "route-group",
|
|
523
523
|
"domain": "state",
|
|
524
524
|
"sourcePath": "src/server/routes.ts",
|
|
525
|
-
"contentHash": "
|
|
525
|
+
"contentHash": "b4db46b3171f84b9c8bc2aa3580c8bd4ac1e98ab36f89470d1cee78dfb4bd9f3",
|
|
526
526
|
"since": "2025-01-01"
|
|
527
527
|
},
|
|
528
528
|
"route-group:ci": {
|
|
@@ -530,7 +530,7 @@
|
|
|
530
530
|
"type": "route-group",
|
|
531
531
|
"domain": "monitoring",
|
|
532
532
|
"sourcePath": "src/server/routes.ts",
|
|
533
|
-
"contentHash": "
|
|
533
|
+
"contentHash": "b4db46b3171f84b9c8bc2aa3580c8bd4ac1e98ab36f89470d1cee78dfb4bd9f3",
|
|
534
534
|
"since": "2025-01-01"
|
|
535
535
|
},
|
|
536
536
|
"route-group:sessions": {
|
|
@@ -538,7 +538,7 @@
|
|
|
538
538
|
"type": "route-group",
|
|
539
539
|
"domain": "sessions",
|
|
540
540
|
"sourcePath": "src/server/routes.ts",
|
|
541
|
-
"contentHash": "
|
|
541
|
+
"contentHash": "b4db46b3171f84b9c8bc2aa3580c8bd4ac1e98ab36f89470d1cee78dfb4bd9f3",
|
|
542
542
|
"since": "2025-01-01"
|
|
543
543
|
},
|
|
544
544
|
"route-group:jobs": {
|
|
@@ -546,7 +546,7 @@
|
|
|
546
546
|
"type": "route-group",
|
|
547
547
|
"domain": "scheduling",
|
|
548
548
|
"sourcePath": "src/server/routes.ts",
|
|
549
|
-
"contentHash": "
|
|
549
|
+
"contentHash": "b4db46b3171f84b9c8bc2aa3580c8bd4ac1e98ab36f89470d1cee78dfb4bd9f3",
|
|
550
550
|
"since": "2025-01-01"
|
|
551
551
|
},
|
|
552
552
|
"route-group:skip-ledger": {
|
|
@@ -554,7 +554,7 @@
|
|
|
554
554
|
"type": "route-group",
|
|
555
555
|
"domain": "scheduling",
|
|
556
556
|
"sourcePath": "src/server/routes.ts",
|
|
557
|
-
"contentHash": "
|
|
557
|
+
"contentHash": "b4db46b3171f84b9c8bc2aa3580c8bd4ac1e98ab36f89470d1cee78dfb4bd9f3",
|
|
558
558
|
"since": "2025-01-01"
|
|
559
559
|
},
|
|
560
560
|
"route-group:telegram": {
|
|
@@ -562,7 +562,7 @@
|
|
|
562
562
|
"type": "route-group",
|
|
563
563
|
"domain": "communication",
|
|
564
564
|
"sourcePath": "src/server/routes.ts",
|
|
565
|
-
"contentHash": "
|
|
565
|
+
"contentHash": "b4db46b3171f84b9c8bc2aa3580c8bd4ac1e98ab36f89470d1cee78dfb4bd9f3",
|
|
566
566
|
"since": "2025-01-01"
|
|
567
567
|
},
|
|
568
568
|
"route-group:attention": {
|
|
@@ -570,7 +570,7 @@
|
|
|
570
570
|
"type": "route-group",
|
|
571
571
|
"domain": "communication",
|
|
572
572
|
"sourcePath": "src/server/routes.ts",
|
|
573
|
-
"contentHash": "
|
|
573
|
+
"contentHash": "b4db46b3171f84b9c8bc2aa3580c8bd4ac1e98ab36f89470d1cee78dfb4bd9f3",
|
|
574
574
|
"since": "2025-01-01"
|
|
575
575
|
},
|
|
576
576
|
"route-group:relationships": {
|
|
@@ -578,7 +578,7 @@
|
|
|
578
578
|
"type": "route-group",
|
|
579
579
|
"domain": "relationships",
|
|
580
580
|
"sourcePath": "src/server/routes.ts",
|
|
581
|
-
"contentHash": "
|
|
581
|
+
"contentHash": "b4db46b3171f84b9c8bc2aa3580c8bd4ac1e98ab36f89470d1cee78dfb4bd9f3",
|
|
582
582
|
"since": "2025-01-01"
|
|
583
583
|
},
|
|
584
584
|
"route-group:feedback": {
|
|
@@ -586,7 +586,7 @@
|
|
|
586
586
|
"type": "route-group",
|
|
587
587
|
"domain": "feedback",
|
|
588
588
|
"sourcePath": "src/server/routes.ts",
|
|
589
|
-
"contentHash": "
|
|
589
|
+
"contentHash": "b4db46b3171f84b9c8bc2aa3580c8bd4ac1e98ab36f89470d1cee78dfb4bd9f3",
|
|
590
590
|
"since": "2025-01-01"
|
|
591
591
|
},
|
|
592
592
|
"route-group:updates": {
|
|
@@ -594,7 +594,7 @@
|
|
|
594
594
|
"type": "route-group",
|
|
595
595
|
"domain": "updates",
|
|
596
596
|
"sourcePath": "src/server/routes.ts",
|
|
597
|
-
"contentHash": "
|
|
597
|
+
"contentHash": "b4db46b3171f84b9c8bc2aa3580c8bd4ac1e98ab36f89470d1cee78dfb4bd9f3",
|
|
598
598
|
"since": "2025-01-01"
|
|
599
599
|
},
|
|
600
600
|
"route-group:dispatches": {
|
|
@@ -602,7 +602,7 @@
|
|
|
602
602
|
"type": "route-group",
|
|
603
603
|
"domain": "dispatches",
|
|
604
604
|
"sourcePath": "src/server/routes.ts",
|
|
605
|
-
"contentHash": "
|
|
605
|
+
"contentHash": "b4db46b3171f84b9c8bc2aa3580c8bd4ac1e98ab36f89470d1cee78dfb4bd9f3",
|
|
606
606
|
"since": "2025-01-01"
|
|
607
607
|
},
|
|
608
608
|
"route-group:quota": {
|
|
@@ -610,7 +610,7 @@
|
|
|
610
610
|
"type": "route-group",
|
|
611
611
|
"domain": "monitoring",
|
|
612
612
|
"sourcePath": "src/server/routes.ts",
|
|
613
|
-
"contentHash": "
|
|
613
|
+
"contentHash": "b4db46b3171f84b9c8bc2aa3580c8bd4ac1e98ab36f89470d1cee78dfb4bd9f3",
|
|
614
614
|
"since": "2025-01-01"
|
|
615
615
|
},
|
|
616
616
|
"route-group:publishing": {
|
|
@@ -618,7 +618,7 @@
|
|
|
618
618
|
"type": "route-group",
|
|
619
619
|
"domain": "publishing",
|
|
620
620
|
"sourcePath": "src/server/routes.ts",
|
|
621
|
-
"contentHash": "
|
|
621
|
+
"contentHash": "b4db46b3171f84b9c8bc2aa3580c8bd4ac1e98ab36f89470d1cee78dfb4bd9f3",
|
|
622
622
|
"since": "2025-01-01"
|
|
623
623
|
},
|
|
624
624
|
"route-group:private-views": {
|
|
@@ -626,7 +626,7 @@
|
|
|
626
626
|
"type": "route-group",
|
|
627
627
|
"domain": "publishing",
|
|
628
628
|
"sourcePath": "src/server/routes.ts",
|
|
629
|
-
"contentHash": "
|
|
629
|
+
"contentHash": "b4db46b3171f84b9c8bc2aa3580c8bd4ac1e98ab36f89470d1cee78dfb4bd9f3",
|
|
630
630
|
"since": "2025-01-01"
|
|
631
631
|
},
|
|
632
632
|
"route-group:tunnel": {
|
|
@@ -634,7 +634,7 @@
|
|
|
634
634
|
"type": "route-group",
|
|
635
635
|
"domain": "networking",
|
|
636
636
|
"sourcePath": "src/server/routes.ts",
|
|
637
|
-
"contentHash": "
|
|
637
|
+
"contentHash": "b4db46b3171f84b9c8bc2aa3580c8bd4ac1e98ab36f89470d1cee78dfb4bd9f3",
|
|
638
638
|
"since": "2025-01-01"
|
|
639
639
|
},
|
|
640
640
|
"route-group:events": {
|
|
@@ -642,7 +642,7 @@
|
|
|
642
642
|
"type": "route-group",
|
|
643
643
|
"domain": "networking",
|
|
644
644
|
"sourcePath": "src/server/routes.ts",
|
|
645
|
-
"contentHash": "
|
|
645
|
+
"contentHash": "b4db46b3171f84b9c8bc2aa3580c8bd4ac1e98ab36f89470d1cee78dfb4bd9f3",
|
|
646
646
|
"since": "2025-01-01"
|
|
647
647
|
},
|
|
648
648
|
"route-group:evolution": {
|
|
@@ -650,7 +650,7 @@
|
|
|
650
650
|
"type": "route-group",
|
|
651
651
|
"domain": "evolution",
|
|
652
652
|
"sourcePath": "src/server/routes.ts",
|
|
653
|
-
"contentHash": "
|
|
653
|
+
"contentHash": "b4db46b3171f84b9c8bc2aa3580c8bd4ac1e98ab36f89470d1cee78dfb4bd9f3",
|
|
654
654
|
"since": "2025-01-01"
|
|
655
655
|
},
|
|
656
656
|
"route-group:watchdog": {
|
|
@@ -658,7 +658,7 @@
|
|
|
658
658
|
"type": "route-group",
|
|
659
659
|
"domain": "monitoring",
|
|
660
660
|
"sourcePath": "src/server/routes.ts",
|
|
661
|
-
"contentHash": "
|
|
661
|
+
"contentHash": "b4db46b3171f84b9c8bc2aa3580c8bd4ac1e98ab36f89470d1cee78dfb4bd9f3",
|
|
662
662
|
"since": "2025-01-01"
|
|
663
663
|
},
|
|
664
664
|
"route-group:topic-memory": {
|
|
@@ -666,7 +666,7 @@
|
|
|
666
666
|
"type": "route-group",
|
|
667
667
|
"domain": "memory",
|
|
668
668
|
"sourcePath": "src/server/routes.ts",
|
|
669
|
-
"contentHash": "
|
|
669
|
+
"contentHash": "b4db46b3171f84b9c8bc2aa3580c8bd4ac1e98ab36f89470d1cee78dfb4bd9f3",
|
|
670
670
|
"since": "2025-01-01"
|
|
671
671
|
},
|
|
672
672
|
"route-group:state-sync": {
|
|
@@ -674,7 +674,7 @@
|
|
|
674
674
|
"type": "route-group",
|
|
675
675
|
"domain": "coordination",
|
|
676
676
|
"sourcePath": "src/server/routes.ts",
|
|
677
|
-
"contentHash": "
|
|
677
|
+
"contentHash": "b4db46b3171f84b9c8bc2aa3580c8bd4ac1e98ab36f89470d1cee78dfb4bd9f3",
|
|
678
678
|
"since": "2025-01-01"
|
|
679
679
|
},
|
|
680
680
|
"route-group:intent": {
|
|
@@ -682,7 +682,7 @@
|
|
|
682
682
|
"type": "route-group",
|
|
683
683
|
"domain": "intent",
|
|
684
684
|
"sourcePath": "src/server/routes.ts",
|
|
685
|
-
"contentHash": "
|
|
685
|
+
"contentHash": "b4db46b3171f84b9c8bc2aa3580c8bd4ac1e98ab36f89470d1cee78dfb4bd9f3",
|
|
686
686
|
"since": "2025-01-01"
|
|
687
687
|
},
|
|
688
688
|
"route-group:triage": {
|
|
@@ -690,7 +690,7 @@
|
|
|
690
690
|
"type": "route-group",
|
|
691
691
|
"domain": "safety",
|
|
692
692
|
"sourcePath": "src/server/routes.ts",
|
|
693
|
-
"contentHash": "
|
|
693
|
+
"contentHash": "b4db46b3171f84b9c8bc2aa3580c8bd4ac1e98ab36f89470d1cee78dfb4bd9f3",
|
|
694
694
|
"since": "2025-01-01"
|
|
695
695
|
},
|
|
696
696
|
"route-group:operations": {
|
|
@@ -698,7 +698,7 @@
|
|
|
698
698
|
"type": "route-group",
|
|
699
699
|
"domain": "safety",
|
|
700
700
|
"sourcePath": "src/server/routes.ts",
|
|
701
|
-
"contentHash": "
|
|
701
|
+
"contentHash": "b4db46b3171f84b9c8bc2aa3580c8bd4ac1e98ab36f89470d1cee78dfb4bd9f3",
|
|
702
702
|
"since": "2025-01-01"
|
|
703
703
|
},
|
|
704
704
|
"route-group:sentinel": {
|
|
@@ -706,7 +706,7 @@
|
|
|
706
706
|
"type": "route-group",
|
|
707
707
|
"domain": "safety",
|
|
708
708
|
"sourcePath": "src/server/routes.ts",
|
|
709
|
-
"contentHash": "
|
|
709
|
+
"contentHash": "b4db46b3171f84b9c8bc2aa3580c8bd4ac1e98ab36f89470d1cee78dfb4bd9f3",
|
|
710
710
|
"since": "2025-01-01"
|
|
711
711
|
},
|
|
712
712
|
"route-group:trust": {
|
|
@@ -714,7 +714,7 @@
|
|
|
714
714
|
"type": "route-group",
|
|
715
715
|
"domain": "safety",
|
|
716
716
|
"sourcePath": "src/server/routes.ts",
|
|
717
|
-
"contentHash": "
|
|
717
|
+
"contentHash": "b4db46b3171f84b9c8bc2aa3580c8bd4ac1e98ab36f89470d1cee78dfb4bd9f3",
|
|
718
718
|
"since": "2025-01-01"
|
|
719
719
|
},
|
|
720
720
|
"route-group:monitoring": {
|
|
@@ -722,7 +722,7 @@
|
|
|
722
722
|
"type": "route-group",
|
|
723
723
|
"domain": "monitoring",
|
|
724
724
|
"sourcePath": "src/server/routes.ts",
|
|
725
|
-
"contentHash": "
|
|
725
|
+
"contentHash": "b4db46b3171f84b9c8bc2aa3580c8bd4ac1e98ab36f89470d1cee78dfb4bd9f3",
|
|
726
726
|
"since": "2025-01-01"
|
|
727
727
|
},
|
|
728
728
|
"route-group:commitments": {
|
|
@@ -730,7 +730,7 @@
|
|
|
730
730
|
"type": "route-group",
|
|
731
731
|
"domain": "commitments",
|
|
732
732
|
"sourcePath": "src/server/routes.ts",
|
|
733
|
-
"contentHash": "
|
|
733
|
+
"contentHash": "b4db46b3171f84b9c8bc2aa3580c8bd4ac1e98ab36f89470d1cee78dfb4bd9f3",
|
|
734
734
|
"since": "2025-01-01"
|
|
735
735
|
},
|
|
736
736
|
"route-group:episodes": {
|
|
@@ -738,7 +738,7 @@
|
|
|
738
738
|
"type": "route-group",
|
|
739
739
|
"domain": "memory",
|
|
740
740
|
"sourcePath": "src/server/routes.ts",
|
|
741
|
-
"contentHash": "
|
|
741
|
+
"contentHash": "b4db46b3171f84b9c8bc2aa3580c8bd4ac1e98ab36f89470d1cee78dfb4bd9f3",
|
|
742
742
|
"since": "2025-01-01"
|
|
743
743
|
},
|
|
744
744
|
"route-group:messages": {
|
|
@@ -746,7 +746,7 @@
|
|
|
746
746
|
"type": "route-group",
|
|
747
747
|
"domain": "coordination",
|
|
748
748
|
"sourcePath": "src/server/routes.ts",
|
|
749
|
-
"contentHash": "
|
|
749
|
+
"contentHash": "b4db46b3171f84b9c8bc2aa3580c8bd4ac1e98ab36f89470d1cee78dfb4bd9f3",
|
|
750
750
|
"since": "2025-01-01"
|
|
751
751
|
},
|
|
752
752
|
"route-group:system-reviews": {
|
|
@@ -754,7 +754,7 @@
|
|
|
754
754
|
"type": "route-group",
|
|
755
755
|
"domain": "monitoring",
|
|
756
756
|
"sourcePath": "src/server/routes.ts",
|
|
757
|
-
"contentHash": "
|
|
757
|
+
"contentHash": "b4db46b3171f84b9c8bc2aa3580c8bd4ac1e98ab36f89470d1cee78dfb4bd9f3",
|
|
758
758
|
"since": "2025-01-01"
|
|
759
759
|
},
|
|
760
760
|
"route-group:machine-mesh": {
|
|
@@ -770,7 +770,7 @@
|
|
|
770
770
|
"type": "route-group",
|
|
771
771
|
"domain": "security",
|
|
772
772
|
"sourcePath": "src/server/routes.ts",
|
|
773
|
-
"contentHash": "
|
|
773
|
+
"contentHash": "b4db46b3171f84b9c8bc2aa3580c8bd4ac1e98ab36f89470d1cee78dfb4bd9f3",
|
|
774
774
|
"since": "2025-01-01"
|
|
775
775
|
},
|
|
776
776
|
"cli:init": {
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# Upgrade Guide — vNEXT
|
|
2
|
+
|
|
3
|
+
<!-- assembled-by: assemble-next-md -->
|
|
4
|
+
<!-- bump: patch -->
|
|
5
|
+
|
|
6
|
+
## What Changed
|
|
7
|
+
|
|
8
|
+
The outbound tone gate (which screens the agent's replies for leaks like passwords, commands, or file paths) used to do the same thing for everyone when it couldn't get a verdict under load — it HELD the message. That sealed the operator out of their own channel: under heavy load, status replies to the operator were held with "could not produce a verdict within the budget," so the operator saw delivery receipts but no reply.
|
|
9
|
+
|
|
10
|
+
The fix tiers that no-verdict behavior by who the message is going to. On the operator's own verified channel, a no-verdict availability failure now DELIVERS (the operator must never be locked out of their own agent). For anyone external, it still HOLDS, fail-closed (never leak an unreviewed message to a third party). A real "this leaks — block it" verdict still blocks for everyone — only the case where the reviewer couldn't decide is tiered.
|
|
11
|
+
|
|
12
|
+
Who counts as "the operator" is resolved strictly from the verified, locally-authenticated operator binding (never a name in a message, never a spoofable field) AND only when the agent has a single human operator — so a multi-user agent always fails closed. It ships OFF by default (today's hold-everywhere behavior is unchanged) and is an explicit opt-in with a dry-run mode to soak first. This is the outbound twin of the inbound "operator channel is sacred" fix.
|
|
13
|
+
|
|
14
|
+
## What to Tell Your User
|
|
15
|
+
|
|
16
|
+
If you ever saw a delivery receipt but no reply from your agent under heavy load, that was the safety screen holding your own message because it could not finish reviewing it in time. Your own channel will now get the message through in that situation, while messages to anyone else stay held until they can be checked. It is off until you turn it on, with a try-it-safely mode that just logs what it would do first.
|
|
17
|
+
|
|
18
|
+
## Summary of New Capabilities
|
|
19
|
+
|
|
20
|
+
- Operator-channel-sacred outbound: a no-verdict tone-gate failure delivers on the operator's own verified channel and holds for everyone else, instead of sealing the operator out under load.
|
|
21
|
+
- Resolved strictly from the verified operator identity, single-human-operator only, fail-closed on any doubt; off by default with a dry-run soak mode.
|
|
22
|
+
|
|
23
|
+
## Evidence
|
|
24
|
+
|
|
25
|
+
- `tests/unit/messaging-tone-gate-operator-channel-tiering.test.ts` (12) + `tests/unit/tone-recipient-class.test.ts` (10): both sides of every boundary — operator delivers on capacity-shed/provider-error/unparseable/budget-timeout; external + absent-binding + multi-operator + resolution-error all HOLD; a real content block always holds; dry-run holds + logs; legacy modes preserved. 46 existing tone-gate/budget tests still green (no default-behavior change).
|
|
26
|
+
- 3-round convergence caught + fixed a spoofable-leak design: `docs/specs/reports/outbound-gate-tiered-fail-direction-convergence.md`.
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# Upgrade Guide — vNEXT
|
|
2
|
+
|
|
3
|
+
<!-- assembled-by: assemble-next-md -->
|
|
4
|
+
<!-- bump: patch -->
|
|
5
|
+
|
|
6
|
+
## What Changed
|
|
7
|
+
|
|
8
|
+
The outbound message tone gate (`MessagingToneGate.review()`) used to HOLD every
|
|
9
|
+
outbound message when its LLM reviewer was unavailable (provider rate-limited /
|
|
10
|
+
circuit breaker open). During a sustained backend outage that turned the safety
|
|
11
|
+
gate itself into the outage — the user saw delivery receipts but no replies for
|
|
12
|
+
hours. (Postmortem failure F4.)
|
|
13
|
+
|
|
14
|
+
Now, on a sustained provider-outage, the gate degrades to an in-process
|
|
15
|
+
**deterministic leak floor** (the same B1–B7 artifact detectors + internal-id
|
|
16
|
+
leak detector, run with NO LLM and NO subprocess): a clean message SENDS, a
|
|
17
|
+
message carrying a high-stakes artifact (command, path, config key, endpoint,
|
|
18
|
+
internal id) still HOLDS. The same outage has **two manifestations and both
|
|
19
|
+
degrade**: the FAST one (the breaker throws inside `review()`) and the SLOW one
|
|
20
|
+
(the gate stalls past the outbound route budget — the documented 2026-06-08
|
|
21
|
+
failure) — covered via one shared degrade path so the slow stall no longer
|
|
22
|
+
silently holds either. The fix distinguishes these dispositions:
|
|
23
|
+
|
|
24
|
+
- INFRA-unavailable (provider error / breaker open, OR slow-stall budget timeout) → **degrade** to the floor (default).
|
|
25
|
+
- CONTENT-unsafe (the model produced a real block verdict) → still **HOLD** (never degraded).
|
|
26
|
+
- Host spawn-cap shed (transient capacity) → still **fail-closed** (P3 invariant intact).
|
|
27
|
+
|
|
28
|
+
Operator override `messaging.toneGate.failClosedOnExhaustion` (governs both the
|
|
29
|
+
throw and the budget-timeout paths): `true` restores the strict hold-everything
|
|
30
|
+
behavior, `false` is legacy fail-open, unset is the new degrade default.
|
|
31
|
+
|
|
32
|
+
## What to Tell Your User
|
|
33
|
+
|
|
34
|
+
During a sustained AI-backend outage you now stay reachable — your clean replies
|
|
35
|
+
still go through a fast safety check instead of being silently held, while any
|
|
36
|
+
message that would leak a sensitive artifact is still held. You are never again
|
|
37
|
+
silently cut off because the message-safety check lost its AI engine.
|
|
38
|
+
|
|
39
|
+
## Summary of New Capabilities
|
|
40
|
+
|
|
41
|
+
- The outbound tone gate degrades gracefully when its LLM reviewer is unavailable:
|
|
42
|
+
clean replies still send (via a fast in-process safety scan), leaks still hold.
|
|
43
|
+
Covers both the fast (breaker) and slow (budget-timeout) manifestations of an
|
|
44
|
+
LLM-backend outage, so you are not silently cut off during a rate-limit window.
|
|
45
|
+
- New operator control: `messaging.toneGate.failClosedOnExhaustion` is now
|
|
46
|
+
three-valued — unset = degrade (default), `true` = strict hold-everything,
|
|
47
|
+
`false` = legacy fail-open. Read live (no restart).
|
|
48
|
+
|
|
49
|
+
## Evidence
|
|
50
|
+
|
|
51
|
+
- Fixes the 2026-06-25 silent-outbound outage (postmortem F4): a rate-limited
|
|
52
|
+
engine opened the circuit breaker and the gate held every message for hours.
|
|
53
|
+
- 61 unit tests pass (MessagingToneGate + spawn-cap-fail-closed-gates +
|
|
54
|
+
outbound-gate-budget), covering BOTH paths: provider-throw + clean → sends;
|
|
55
|
+
provider-throw + leak → holds; budget-timeout + clean → sends; budget-timeout +
|
|
56
|
+
leak → holds; capacity-shed → fail-closed; content-block verdict → never
|
|
57
|
+
degraded; all three operator-override values.
|
|
58
|
+
- Independent second-pass review concurred and surfaced the slow-path
|
|
59
|
+
(budget-timeout) sibling as a concern — closed in this same change (no deferral)
|
|
60
|
+
rather than shipped partial. The deterministic floor reuses the exact detector
|
|
61
|
+
set the LLM uses and is strictly more conservative (over-blocks, never
|
|
62
|
+
under-blocks); secret values remain handled by the separate unchanged redaction
|
|
63
|
+
pass.
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# Side-effects review — outbound-gate-tiered-fail-direction
|
|
2
|
+
|
|
3
|
+
Change: the MessagingToneGate's AVAILABILITY-failure fail-direction (capacity-shed / provider-error / unparseable-after-retry / route-budget-timeout — the no-verdict branches) is now TIERED by a structurally-resolved recipient class — operator's own channel DELIVERS (so the operator isn't sealed out), external HOLDS (fail-closed). Default OFF (`failClosedMode:'always'` = today's behavior); `tiered` is an explicit opt-in, dryRun-first. Files: `src/core/MessagingToneGate.ts`, `src/server/outboundGateBudget.ts`, `src/server/toneRecipientClass.ts` (new), `src/server/routes.ts`, `src/commands/server.ts`, tests.
|
|
4
|
+
|
|
5
|
+
1. **Over-block:** REDUCES a specific over-block — operator-bound status replies held under capacity/timeout pressure (the confirmed 2026-06-25 live lockout). Only on the operator's own verified channel, only on a no-verdict availability failure, only when `tiered` is opted in.
|
|
6
|
+
|
|
7
|
+
2. **Under-block:** None new. External channels keep today's fail-CLOSED hold verbatim. A real CONTENT/B15 BLOCK verdict ALWAYS holds on every channel (tiering touches ONLY the no-verdict availability branches — `interpret()` verdicts return before the tier). `recipientClass` defaults `external` (fail-closed) on ANY ambiguity.
|
|
8
|
+
|
|
9
|
+
3. **Level-of-abstraction fit:** Correct. Recipient resolution at the route seam (where the verified-operator binding + topicId live); the gate consumes a resolved `recipientClass` (it never sniffs identity). The budget-timeout seam — a SEPARATE fail-point from the in-gate paths — tiers on the SAME resolved value, so they can't disagree.
|
|
10
|
+
|
|
11
|
+
4. **Signal vs authority:** The tone gate remains the single authority for outbound behavioral VERDICTS. This tiers only the DEGRADATION policy (what to do when no verdict could be produced) — not a behavioral verdict. recipientClass is resolved STRUCTURALLY from the verified, locally-auth-bound operator (`asVerifiedOperator` — local-auth-only by the store invariant), NEVER from the launderable `recipientType` and NEVER from content (Know Your Principal). This was the convergence BLOCKER: the first draft keyed on `recipientType` (spoofable, defaults primary-user) — fixed.
|
|
12
|
+
|
|
13
|
+
5. **Interactions:** Reconciles two standards by channel-tiering — No-Silent-Degradation (external still fail-closed) × Operator-Channel-Sacred (operator delivers). The CoherenceReviewer/CoherenceGate half of the same blindspot already shipped (CMT-1794, abstain-tiering) and is untouched. The deliver-on-failure is AUDITED via `failedOpenOperatorChannel` through `logToneGateDecision` (never silent). Capacity-shed delivery for the operator spawns NOTHING (message already composed), so the fork-bomb P3 floor is intact.
|
|
14
|
+
|
|
15
|
+
6. **External surfaces:** No new routes. A new `ToneReviewResult.failedOpenOperatorChannel` disposition + a `[tone-gate]` decision-log field. Behavior change is gated behind `messaging.toneGate.failClosedMode:'tiered'` (default `always`).
|
|
16
|
+
|
|
17
|
+
7. **Multi-machine posture:** Machine-local per send. The verified-operator binding is the LOCAL auth-bound record (the replicated topic-operator store is explicitly never authoritative); the gate runs on whichever machine sends. No new cross-machine surface.
|
|
18
|
+
|
|
19
|
+
8. **Rollback cost:** Low. `failClosedMode` unset / `'always'` = today's behavior (the default — zero change on upgrade). `'never'` restores legacy fail-open. `toneTierDryRun:true` soaks (logs would-deliver, still holds). All live-config (the getter is read per-review). No data migration.
|
|
20
|
+
|
|
21
|
+
## Build-time wiring preconditions honored (convergence confirmation)
|
|
22
|
+
- recipientClass reads the LOCAL auth-bound operator (`asVerifiedOperator`, local-only by store invariant), not the replicated store. ✓
|
|
23
|
+
- 1:1-operator-topic signal is concrete: a SINGLE distinct verified operator uid across `topicOperatorStore.all()` (multi-operator agent → external). Defaults external on any error. ✓
|
|
24
|
+
|
|
25
|
+
## Second-pass review (required — touches an outbound message gate)
|
|
26
|
+
The 3-round convergence (adversarial + lessons-aware reviewers + Standards-Conformance Gate + a confirmation pass) IS the second-pass review: it caught a spoofable-leak design (recipientType→structural), a live-default→dark-default posture fix, a confabulated consistency claim, and 4 other majors — ALL resolved in this implementation and pinned by 22 unit tests (gate boundary + route resolution + budget seam). The confirmation pass verified every blocker resolved. Concur with the implemented design.
|