@sema-agent/core 7.3.1 → 7.4.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.
Files changed (56) hide show
  1. package/CHANGELOG.md +35 -0
  2. package/dist/agents/peer-admission.d.ts +18 -3
  3. package/dist/agents/peer-admission.js +79 -4
  4. package/dist/agents/peer-held-queue.d.ts +101 -0
  5. package/dist/agents/peer-held-queue.js +229 -0
  6. package/dist/agents/peer-idle.d.ts +109 -0
  7. package/dist/agents/peer-idle.js +240 -0
  8. package/dist/agents/peer-notice-route.d.ts +33 -0
  9. package/dist/agents/peer-notice-route.js +46 -0
  10. package/dist/agents/peer-notices.d.ts +103 -0
  11. package/dist/agents/peer-notices.js +206 -0
  12. package/dist/agents/peer-session-drain.d.ts +39 -4
  13. package/dist/agents/peer-session-drain.js +248 -42
  14. package/dist/agents/send-message-tool.d.ts +8 -1
  15. package/dist/agents/send-message-tool.js +96 -30
  16. package/dist/agents/subagent.js +1 -0
  17. package/dist/core/auto-mode-defaults.d.ts +11 -0
  18. package/dist/core/auto-mode-defaults.js +2 -0
  19. package/dist/core/auto-mode.d.ts +59 -0
  20. package/dist/core/auto-mode.js +57 -1
  21. package/dist/core/checkpoint-store.js +2 -2
  22. package/dist/core/governance-codes.d.ts +1 -1
  23. package/dist/core/governance-codes.js +8 -0
  24. package/dist/core/hooks.d.ts +30 -0
  25. package/dist/core/hooks.js +43 -8
  26. package/dist/core/mailbox-store.d.ts +33 -1
  27. package/dist/core/mailbox-store.js +42 -2
  28. package/dist/core/runner/assemble-result.d.ts +5 -0
  29. package/dist/core/runner/assemble-result.js +1 -1
  30. package/dist/core/runner/denial-limit-arms.d.ts +149 -0
  31. package/dist/core/runner/denial-limit-arms.js +91 -0
  32. package/dist/core/runner/edited-files-ledger.d.ts +33 -0
  33. package/dist/core/runner/edited-files-ledger.js +14 -0
  34. package/dist/core/runner/prepare-hands-readface.d.ts +5 -0
  35. package/dist/core/runner/prepare-hands-readface.js +1 -0
  36. package/dist/core/runner/prepare-task.d.ts +62 -1
  37. package/dist/core/runner/prepare-task.js +120 -89
  38. package/dist/core/runner/runtask.js +10 -0
  39. package/dist/core/sensitive-path-policy.d.ts +27 -6
  40. package/dist/core/sensitive-path-policy.js +57 -2
  41. package/dist/core/task-notification.d.ts +24 -2
  42. package/dist/core/task-notification.js +6 -1
  43. package/dist/core/tool-policy.d.ts +55 -4
  44. package/dist/core/tool-policy.js +28 -5
  45. package/dist/core/types.d.ts +207 -10
  46. package/dist/index.d.ts +10 -5
  47. package/dist/index.js +8 -3
  48. package/dist/orchestration/workflow.js +7 -3
  49. package/dist/tools/fs/fs-write.d.ts +4 -4
  50. package/dist/tools/fs/fs-write.js +30 -11
  51. package/dist/tools/fs/index.d.ts +7 -1
  52. package/dist/tools/fs/index.js +1 -1
  53. package/dist/tools/fs/safety.d.ts +29 -8
  54. package/dist/tools/fs/safety.js +11 -1
  55. package/package.json +1 -1
  56. package/test/export-surface.snapshot.json +169 -1
@@ -138,6 +138,18 @@ export declare function isAbsolutePathForm(p: string): boolean;
138
138
  * imports are `node:crypto` plus a type, so there is no layering wall between them.
139
139
  */
140
140
  export declare function isWinFormPath(p: string): boolean;
141
+ /**
142
+ * Expand a LEADING `~` (bare, or followed by a separator of either family) against `home`; every other
143
+ * spelling is returned untouched — a `~` anywhere but the front is an ordinary filename character.
144
+ *
145
+ * Lives here for the same reason `isWinFormPath` does: it is a path-FAMILY decision (which characters
146
+ * end the first component), and the domain gate holds this module as the one home for those. Callers
147
+ * that need it: the sensitive-path guard's data-root resolution, and — spelled privately for now —
148
+ * `tool-policy.ts`'s `lexicalPath`. NOT a resolution of relative paths: a caller that also needs that
149
+ * says so with its own `resolve`, because the two consumers of this value disagree about which cwd a
150
+ * relative spelling belongs to and that disagreement is theirs to state, not this helper's to hide.
151
+ */
152
+ export declare function expandHomeTilde(p: string, home: string): string;
141
153
  export declare function isBlockedDevicePath(key: string): boolean;
142
154
  /**
143
155
  * RB-153 — purely LEXICAL path normalization: collapse repeated separators, drop `.` segments, and
@@ -335,16 +347,25 @@ export declare function withinAnyRoot(rootsCanonical: readonly string[], p: stri
335
347
  /**
336
348
  * RB-371 ① — the escape-hatch tail for the `path_not_in_root` refusal: its three sibling hints
337
349
  * below each name a sanctioned next step; this refusal named none, leaving the model to oscillate
338
- * between "the boundary is hard" and discovering by trial that bash is not confined by it.
350
+ * between "the boundary is hard" and hunting for a way around it.
351
+ *
352
+ * The card names the SANCTIONED way out and nothing else: widening the declaration
353
+ * (`additionalDirectories` / read-only `additionalReadDirectories`, design/119), or the
354
+ * deployment-level `readFace: "open"` for reads.
339
355
  *
340
- * Ordering is deliberate (ruled 2026-08-12, fence = the deployment's declared containment
341
- * boundary): the SANCTIONED way out widening the declaration (`additionalDirectories` /
342
- * read-only `additionalReadDirectories`, design/119) leads; the Bash sentence stays as a FACT
343
- * (the shell genuinely is not confined by this fence design/44 §5 and omitting that would
344
- * just let the model discover it by trial), but it is a statement, not a recommendation, and it
345
- * comes last. Every shell call still passes the deployment's approval policy.
356
+ * A trailing sentence naming the shell as unconfined by this fence was REMOVED (it had been kept on
357
+ * the argument that a statement of fact is not a recommendation, and that omitting it would only let
358
+ * the model discover the same thing by trial). A live retest settled that argument the other way: a
359
+ * refused agent read the sentence as the next step, went to the shell, and rewrote through it the
360
+ * very file the fence had just protected. A refusal card is a PROMPT surface naming, at the moment
361
+ * of denial, a second tool that does not enforce the boundary is a recipe whatever its grammar, and
362
+ * the model cannot be relied on to hear "fact, not advice". The underlying fact is unchanged and
363
+ * still documented where humans read it (design/44 §5: the shell is deliberately unconfined by this
364
+ * fence, and every shell call still passes the deployment's approval policy); it is simply no longer
365
+ * handed to the model inside a denial. What the card says now: this is denied, and here is the
366
+ * sanctioned way to be allowed.
346
367
  */
347
- export declare const PATH_NOT_IN_ROOT_ESCAPE_HINT = "(This boundary applies to the structured file tools. If you genuinely need content outside the allowed root(s), ask for the directory to be added to the deployment's additionalDirectories \u2014 or additionalReadDirectories for read-only access; a deployment that wants reads open everywhere can declare readFace: \"open\" instead of listing directories. For completeness: the Bash tool is not confined by this fence, and every Bash call remains subject to the deployment's approval policy.)";
368
+ export declare const PATH_NOT_IN_ROOT_ESCAPE_HINT = "(This boundary applies to the structured file tools. If you genuinely need content outside the allowed root(s), ask for the directory to be added to the deployment's additionalDirectories \u2014 or additionalReadDirectories for read-only access; a deployment that wants reads open everywhere can declare readFace: \"open\" instead of listing directories.)";
348
369
  /** inv 1 (read-before-edit): a file must have been read this task before it can be edited/overwritten.
349
370
  * Message is CC 2.1.198 live-verbatim (all-tools-live-probe 2026-07-08 §2.1/§3.1/§5.1 — one message for
350
371
  * Edit/Write/NotebookEdit: "before writing to it", not the old sema "before editing").
@@ -53,6 +53,16 @@ const WIN_RESERVED_RE = /^(CON|PRN|AUX|NUL|COM[0-9¹²³]|LPT[0-9¹²³]|CONIN\$
53
53
  export function isWinFormPath(p) {
54
54
  return /^[A-Za-z]:[\\/]/.test(p) || p.startsWith("\\\\") || (!p.startsWith("/") && p.includes("\\"));
55
55
  }
56
+ export function expandHomeTilde(p, home) {
57
+ if (p === "~")
58
+ return home;
59
+ if (!p.startsWith("~"))
60
+ return p;
61
+ const next = p[1];
62
+ if (next !== "/" && next !== "\\")
63
+ return p;
64
+ return home + "/" + p.slice(2);
65
+ }
56
66
  function isWinReservedDeviceKey(key) {
57
67
  if (!isWinFormPath(key))
58
68
  return false;
@@ -493,7 +503,7 @@ export function violationDetails(v) {
493
503
  export function withinAnyRoot(rootsCanonical, p) {
494
504
  return rootsCanonical.some((r) => within(r, p));
495
505
  }
496
- export const PATH_NOT_IN_ROOT_ESCAPE_HINT = "(This boundary applies to the structured file tools. If you genuinely need content outside the allowed root(s), ask for the directory to be added to the deployment's additionalDirectories — or additionalReadDirectories for read-only access; a deployment that wants reads open everywhere can declare readFace: \"open\" instead of listing directories. For completeness: the Bash tool is not confined by this fence, and every Bash call remains subject to the deployment's approval policy.)";
506
+ export const PATH_NOT_IN_ROOT_ESCAPE_HINT = "(This boundary applies to the structured file tools. If you genuinely need content outside the allowed root(s), ask for the directory to be added to the deployment's additionalDirectories — or additionalReadDirectories for read-only access; a deployment that wants reads open everywhere can declare readFace: \"open\" instead of listing directories.)";
497
507
  export function requireRead(state, key) {
498
508
  const entry = state.get(key);
499
509
  if (entry === undefined || entry.isPartialView) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sema-agent/core",
3
- "version": "7.3.1",
3
+ "version": "7.4.0",
4
4
  "description": "Stateless, task-oriented AI agent core",
5
5
  "type": "module",
6
6
  "license": "BUSL-1.1",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "_comment": "design/87 L3 — frozen public export surface of src/index.ts (name -> kind). DO NOT edit by hand to silence a red test. A removed/changed entry = a SemVer-BREAKING change; bump MAJOR and update this fixture in the SAME commit (design/87 §4.2 / §5.2). Regenerate via REGEN in test/export-surface.test.ts.",
3
3
  "_tierComment": "#435 v1 — machine-readable layering of the public surface: stable = demonstrated by README.md / src/examples; internal = an `Internal`-marked name or a runner/engine deep-subtree declaration (the model seam src/engine/llm is excluded — it is the BYOM contract, not an engine internal); advanced = a supported export the front door does not walk you through. THIS IS AN INITIAL HEURISTIC, derived mechanically and expected to be refined ticket by ticket: no human reviewed these 1700+ entries one by one, and nothing here claims otherwise. Known bias: a short or English-word export name (ok, err, Result, Usage) can match ordinary prose in README.md and land `stable` on a coincidence. Every export MUST carry a tier — a new export with no row fails the gate in export-surface.test.ts.",
4
- "count": 1964,
4
+ "count": 2048,
5
5
  "exports": {
6
6
  "A2ATaskState": "type",
7
7
  "A2ATaskStateReversal": "type",
@@ -33,6 +33,8 @@
33
33
  "AUTO_MODE_ARM_REASONS": "variable",
34
34
  "AUTO_MODE_BASE_PROMPT": "variable",
35
35
  "AUTO_MODE_DEFAULTS_SENTINEL": "variable",
36
+ "AUTO_MODE_DENIAL_AUTO_DENY_DEFAULT_MS": "variable",
37
+ "AUTO_MODE_DENIAL_LIMIT_DEFAULTS": "variable",
36
38
  "AUTO_MODE_PERMISSIONS_EXTERNAL": "variable",
37
39
  "AcquiredSession": "interface",
38
40
  "ActiveWorktreeSession": "interface",
@@ -88,6 +90,8 @@
88
90
  "AutoModeClassifyInput": "interface",
89
91
  "AutoModeDecider": "interface",
90
92
  "AutoModeDeciderOptions": "interface",
93
+ "AutoModeDenialLimitOptions": "interface",
94
+ "AutoModeDenialTracker": "interface",
91
95
  "AutoModeRebuildOptions": "interface",
92
96
  "AutoModeRebuildRefusal": "type",
93
97
  "AutoModeRebuildResult": "type",
@@ -158,6 +162,8 @@
158
162
  "CONTRACT_KIT_ENGINE_VERSION": "variable",
159
163
  "COORDINATOR_ROLE_PROMPT": "variable",
160
164
  "CROSS_SESSION_CLASSIFIER_RULE": "variable",
165
+ "CROSS_SESSION_DIALOG_EXPIRY_DEFAULT": "variable",
166
+ "CROSS_SESSION_DIALOG_EXPIRY_VALUES": "variable",
161
167
  "CROSS_SESSION_HOLD_CAUSES": "variable",
162
168
  "CROSS_SESSION_INBOUND_SETTINGS": "variable",
163
169
  "CROSS_SESSION_MESSAGE_NOTICE": "variable",
@@ -259,6 +265,7 @@
259
265
  "ControlPlaneRebuildReceipt": "interface",
260
266
  "CoreCompatRange": "interface",
261
267
  "CrossSessionCodecError": "class",
268
+ "CrossSessionDialogExpiry": "type",
262
269
  "CrossSessionEnvelopeFields": "interface",
263
270
  "CrossSessionEnvelopeParse": "type",
264
271
  "CrossSessionEnvelopeRefusal": "type",
@@ -304,6 +311,8 @@
304
311
  "DegradingBrainOptions": "type",
305
312
  "DelegationLifecycleEvent": "type",
306
313
  "DelegationTaskType": "type",
314
+ "DenialLimitFallback": "interface",
315
+ "DenialLimitVerdict": "type",
307
316
  "DeveloperTaskConfig": "interface",
308
317
  "DistillerCandidate": "interface",
309
318
  "DistillerChatAnswer": "interface",
@@ -366,6 +375,8 @@
366
375
  "FileBackupCapture": "type",
367
376
  "FileCheckpointStore": "class",
368
377
  "FileCheckpointStoreOptions": "interface",
378
+ "FileEditedHook": "type",
379
+ "FileEditedNotice": "interface",
369
380
  "FileError": "class",
370
381
  "FileErrorCode": "type",
371
382
  "FileFileHistoryStore": "class",
@@ -521,6 +532,7 @@
521
532
  "MAILBOX_CROSS_PROCESS_UNSAFE_CODE": "variable",
522
533
  "MAILBOX_INVALID_PEER_META_CODE": "variable",
523
534
  "MAILBOX_PEER_FROM_MODES": "variable",
535
+ "MAILBOX_PEER_NOTICE_STATES": "variable",
524
536
  "MAILBOX_PEER_RECORD_KINDS": "variable",
525
537
  "MAILBOX_TOMBSTONED_RECIPIENT_CODE": "variable",
526
538
  "MASS_DELETION_FUSE_RATIO": "variable",
@@ -572,6 +584,8 @@
572
584
  "MailboxMessage": "interface",
573
585
  "MailboxPeerFromMode": "type",
574
586
  "MailboxPeerMeta": "interface",
587
+ "MailboxPeerNoticeMeta": "interface",
588
+ "MailboxPeerNoticeState": "type",
575
589
  "MailboxPeerRecordKind": "type",
576
590
  "MailboxStore": "interface",
577
591
  "MailboxStoreError": "class",
@@ -714,9 +728,22 @@
714
728
  "PARK_SELFCHECK_SCOPE_PREFIX": "variable",
715
729
  "PEER_ADDRESS_PREFIXES": "variable",
716
730
  "PEER_ADMISSION_DEFAULTS": "variable",
731
+ "PEER_DELIVERY_RECEIPT_STATES": "variable",
732
+ "PEER_DROP_REASONS": "variable",
733
+ "PEER_HELD_QUEUE_CAP": "variable",
734
+ "PEER_HELD_REVIEW_CAUSES": "variable",
717
735
  "PEER_HOP_CHAIN_CARRY_WINDOW": "variable",
718
736
  "PEER_HOP_CHAIN_WINDOW": "variable",
719
737
  "PEER_HOP_TOKEN_HEX": "variable",
738
+ "PEER_IDLE_FIRE_DEBOUNCE_MS": "variable",
739
+ "PEER_IDLE_HELD_BACKOFF_MS": "variable",
740
+ "PEER_IDLE_LABEL_MAX": "variable",
741
+ "PEER_IDLE_NOTICE_KINDS": "variable",
742
+ "PEER_IDLE_OUTSTANDING_CAP": "variable",
743
+ "PEER_IDLE_PRIORS_KEPT": "variable",
744
+ "PEER_IDLE_SUBSCRIBER_TABLE_CAP": "variable",
745
+ "PEER_IDLE_SUBSCRIPTION_TTL_MS": "variable",
746
+ "PEER_IDLE_UNAVAILABLE_CAUSES": "variable",
720
747
  "PEER_MESSAGE_NOTICE": "variable",
721
748
  "PEER_REF_MAX": "variable",
722
749
  "PEER_REF_MIN": "variable",
@@ -758,12 +785,36 @@
758
785
  "PeerAdmissionStage": "type",
759
786
  "PeerAdmissionVerdict": "type",
760
787
  "PeerAxisTag": "type",
788
+ "PeerClock": "interface",
789
+ "PeerDeliveryReceiptState": "type",
761
790
  "PeerDirectory": "interface",
762
791
  "PeerDirectoryAccess": "interface",
792
+ "PeerDropReason": "type",
793
+ "PeerHeldEntry": "interface",
794
+ "PeerHeldQueue": "interface",
795
+ "PeerHeldQueueConfig": "interface",
796
+ "PeerHeldQueueSink": "interface",
797
+ "PeerHeldSettleOutcome": "type",
798
+ "PeerHeldSettleReason": "type",
799
+ "PeerHeldSettlement": "type",
763
800
  "PeerIdentity": "interface",
801
+ "PeerIdleMachine": "interface",
802
+ "PeerIdleNoticeFields": "interface",
803
+ "PeerIdleNoticeKind": "type",
804
+ "PeerIdleOutstanding": "interface",
805
+ "PeerIdleRequester": "interface",
806
+ "PeerIdleRequesterSink": "interface",
807
+ "PeerIdleSubscribeOutcome": "type",
808
+ "PeerIdleSubscriber": "interface",
809
+ "PeerIdleTarget": "interface",
810
+ "PeerIdleTargetNotice": "interface",
811
+ "PeerIdleTargetSink": "interface",
764
812
  "PeerInboundChainRef": "interface",
813
+ "PeerInboundDisposition": "type",
814
+ "PeerInboundHoldCause": "type",
765
815
  "PeerLaneMountVerdict": "type",
766
816
  "PeerLivenessProbe": "interface",
817
+ "PeerNoticeRoute": "interface",
767
818
  "PeerRefEntry": "interface",
768
819
  "PeerRefusalCode": "type",
769
820
  "PeerRegistryDirectoryRefusal": "type",
@@ -921,6 +972,7 @@
921
972
  "ReportedFinding": "interface",
922
973
  "ResolveExpectation": "interface",
923
974
  "ResolvedAsk": "type",
975
+ "ResolvedCrossSessionDialogExpiry": "interface",
924
976
  "ResolvedCrossSessionInboundSetting": "interface",
925
977
  "ResolvedDelegationEntryCaps": "interface",
926
978
  "ResolvedOutcome": "interface",
@@ -1452,6 +1504,7 @@
1452
1504
  "createAskUserQuestionTool": "function",
1453
1505
  "createAssistantMessageEventStream": "function",
1454
1506
  "createAutoModeDecider": "function",
1507
+ "createAutoModeDenialTracker": "function",
1455
1508
  "createCcFileMailboxStore": "function",
1456
1509
  "createCcFileTaskListStore": "function",
1457
1510
  "createCcTeamsRosterAdapter": "function",
@@ -1476,6 +1529,9 @@
1476
1529
  "createOpenResponsesBrain": "function",
1477
1530
  "createOrgRuleOverlay": "function",
1478
1531
  "createPeerAdmission": "function",
1532
+ "createPeerHeldQueue": "function",
1533
+ "createPeerIdleRequester": "function",
1534
+ "createPeerIdleTarget": "function",
1479
1535
  "createPeerInboundChainRef": "function",
1480
1536
  "createPeerSelfRef": "function",
1481
1537
  "createPermissionRulePolicy": "function",
@@ -1514,6 +1570,8 @@
1514
1570
  "defineAgent": "function",
1515
1571
  "defineTool": "function",
1516
1572
  "delimitUntrusted": "function",
1573
+ "denialLimitFallbackMessage": "function",
1574
+ "denialLimitSentence": "function",
1517
1575
  "deploymentReadFaceClampNotice": "function",
1518
1576
  "deriveAgentDisplayStatus": "function",
1519
1577
  "deriveAskEffective": "function",
@@ -1530,6 +1588,9 @@
1530
1588
  "describeConfigCatalog": "function",
1531
1589
  "describeCrossSessionHoldCause": "function",
1532
1590
  "describeDefaultPack": "function",
1591
+ "describePeerDeliveryReceipt": "function",
1592
+ "describePeerDropReasons": "function",
1593
+ "describePeerIdleSubscription": "function",
1533
1594
  "describeStaticWiring": "function",
1534
1595
  "detectCleanArmVerbatimLeak": "function",
1535
1596
  "detectSecret": "function",
@@ -1592,6 +1653,7 @@
1592
1653
  "formatOrgScope": "function",
1593
1654
  "formatOutOfRootReadApprovalOption": "function",
1594
1655
  "formatPeerNameRef": "function",
1656
+ "formatPeerNoticeClock": "function",
1595
1657
  "formatProjScope": "function",
1596
1658
  "formatProjectMarker": "function",
1597
1659
  "formatToolError": "function",
@@ -1628,6 +1690,8 @@
1628
1690
  "isIsolated": "function",
1629
1691
  "isModelGatedForClass": "function",
1630
1692
  "isNamespacedCoveringRuleName": "function",
1693
+ "isPeerDeliveryReceiptState": "function",
1694
+ "isPeerIdleNoticeKind": "function",
1631
1695
  "isPeerSessionId": "function",
1632
1696
  "isPeerSessionProcessAlive": "function",
1633
1697
  "isPermissionModeClass": "function",
@@ -1750,6 +1814,17 @@
1750
1814
  "peekMemoryAnnouncements": "function",
1751
1815
  "peerAdmissionFor": "function",
1752
1816
  "peerAxisToken": "function",
1817
+ "peerDeliveryReceiptLabel": "function",
1818
+ "peerHeldQueueFor": "function",
1819
+ "peerHeldQueueIfAny": "function",
1820
+ "peerHeldQueueKey": "function",
1821
+ "peerIdleDetailOf": "function",
1822
+ "peerIdleMachineFor": "function",
1823
+ "peerIdleMachineIfAny": "function",
1824
+ "peerIdleMachineKey": "function",
1825
+ "peerIdleNoticeLabel": "function",
1826
+ "peerIdleNoticeSummary": "function",
1827
+ "peerRecipientSuffix": "function",
1753
1828
  "peerSendVerdictSeverity": "function",
1754
1829
  "peerSessionBoxHandle": "function",
1755
1830
  "permissionRuleSyncContract": "function",
@@ -1783,6 +1858,7 @@
1783
1858
  "readSessionCaptureOptOut": "function",
1784
1859
  "readUsageRecord": "function",
1785
1860
  "readV2HeaderHints": "function",
1861
+ "realPeerClock": "variable",
1786
1862
  "reasoningBudgetShare": "function",
1787
1863
  "rebuildAutoModeDecider": "function",
1788
1864
  "rebuildStrictControlPlaneLedger": "function",
@@ -1803,7 +1879,11 @@
1803
1879
  "renderAnnouncements": "function",
1804
1880
  "renderAutoModeAction": "function",
1805
1881
  "renderAutoModeWindow": "function",
1882
+ "renderCrossSessionDeliveryNotice": "function",
1883
+ "renderCrossSessionDroppedNotice": "function",
1884
+ "renderCrossSessionIdleNotice": "function",
1806
1885
  "renderCrossSessionMessageFrame": "function",
1886
+ "renderCrossSessionNoticeLine": "function",
1807
1887
  "renderNamedWorkflowListing": "function",
1808
1888
  "renderTaskNotificationXml": "function",
1809
1889
  "renderUntrustedCommandText": "function",
@@ -1817,6 +1897,7 @@
1817
1897
  "resolveBinary": "function",
1818
1898
  "resolveBuiltinWorkflow": "function",
1819
1899
  "resolveComplianceDenies": "function",
1900
+ "resolveCrossSessionDialogExpiry": "function",
1820
1901
  "resolveCrossSessionInboundSetting": "function",
1821
1902
  "resolveDataRoot": "function",
1822
1903
  "resolveDeclaredDurability": "function",
@@ -1850,6 +1931,9 @@
1850
1931
  "retryBackoffMs": "function",
1851
1932
  "riskSeverity": "function",
1852
1933
  "routePairingStatus": "function",
1934
+ "routePeerDeliveryReceipt": "function",
1935
+ "routePeerDroppedReceipt": "function",
1936
+ "routePeerIdleNotice": "function",
1853
1937
  "routeRefusalText": "function",
1854
1938
  "ruleAdmitsCommand": "function",
1855
1939
  "ruleOffersOfRecord": "function",
@@ -1999,6 +2083,8 @@
1999
2083
  "AUTO_MODE_ARM_REASONS": "advanced",
2000
2084
  "AUTO_MODE_BASE_PROMPT": "advanced",
2001
2085
  "AUTO_MODE_DEFAULTS_SENTINEL": "advanced",
2086
+ "AUTO_MODE_DENIAL_AUTO_DENY_DEFAULT_MS": "advanced",
2087
+ "AUTO_MODE_DENIAL_LIMIT_DEFAULTS": "advanced",
2002
2088
  "AUTO_MODE_PERMISSIONS_EXTERNAL": "advanced",
2003
2089
  "AcquiredSession": "advanced",
2004
2090
  "ActiveWorktreeSession": "internal",
@@ -2054,6 +2140,8 @@
2054
2140
  "AutoModeClassifyInput": "advanced",
2055
2141
  "AutoModeDecider": "advanced",
2056
2142
  "AutoModeDeciderOptions": "advanced",
2143
+ "AutoModeDenialLimitOptions": "advanced",
2144
+ "AutoModeDenialTracker": "advanced",
2057
2145
  "AutoModeRebuildOptions": "advanced",
2058
2146
  "AutoModeRebuildRefusal": "advanced",
2059
2147
  "AutoModeRebuildResult": "advanced",
@@ -2124,6 +2212,8 @@
2124
2212
  "CONTRACT_KIT_ENGINE_VERSION": "advanced",
2125
2213
  "COORDINATOR_ROLE_PROMPT": "advanced",
2126
2214
  "CROSS_SESSION_CLASSIFIER_RULE": "advanced",
2215
+ "CROSS_SESSION_DIALOG_EXPIRY_DEFAULT": "advanced",
2216
+ "CROSS_SESSION_DIALOG_EXPIRY_VALUES": "advanced",
2127
2217
  "CROSS_SESSION_HOLD_CAUSES": "advanced",
2128
2218
  "CROSS_SESSION_INBOUND_SETTINGS": "advanced",
2129
2219
  "CROSS_SESSION_MESSAGE_NOTICE": "advanced",
@@ -2225,6 +2315,7 @@
2225
2315
  "ControlPlaneRebuildReceipt": "advanced",
2226
2316
  "CoreCompatRange": "advanced",
2227
2317
  "CrossSessionCodecError": "advanced",
2318
+ "CrossSessionDialogExpiry": "advanced",
2228
2319
  "CrossSessionEnvelopeFields": "advanced",
2229
2320
  "CrossSessionEnvelopeParse": "advanced",
2230
2321
  "CrossSessionEnvelopeRefusal": "advanced",
@@ -2270,6 +2361,8 @@
2270
2361
  "DegradingBrainOptions": "advanced",
2271
2362
  "DelegationLifecycleEvent": "advanced",
2272
2363
  "DelegationTaskType": "advanced",
2364
+ "DenialLimitFallback": "advanced",
2365
+ "DenialLimitVerdict": "advanced",
2273
2366
  "DeveloperTaskConfig": "advanced",
2274
2367
  "DistillerCandidate": "advanced",
2275
2368
  "DistillerChatAnswer": "advanced",
@@ -2332,6 +2425,8 @@
2332
2425
  "FileBackupCapture": "advanced",
2333
2426
  "FileCheckpointStore": "stable",
2334
2427
  "FileCheckpointStoreOptions": "advanced",
2428
+ "FileEditedHook": "advanced",
2429
+ "FileEditedNotice": "advanced",
2335
2430
  "FileError": "stable",
2336
2431
  "FileErrorCode": "internal",
2337
2432
  "FileFileHistoryStore": "advanced",
@@ -2487,6 +2582,7 @@
2487
2582
  "MAILBOX_CROSS_PROCESS_UNSAFE_CODE": "advanced",
2488
2583
  "MAILBOX_INVALID_PEER_META_CODE": "advanced",
2489
2584
  "MAILBOX_PEER_FROM_MODES": "advanced",
2585
+ "MAILBOX_PEER_NOTICE_STATES": "advanced",
2490
2586
  "MAILBOX_PEER_RECORD_KINDS": "advanced",
2491
2587
  "MAILBOX_TOMBSTONED_RECIPIENT_CODE": "advanced",
2492
2588
  "MASS_DELETION_FUSE_RATIO": "advanced",
@@ -2538,6 +2634,8 @@
2538
2634
  "MailboxMessage": "advanced",
2539
2635
  "MailboxPeerFromMode": "advanced",
2540
2636
  "MailboxPeerMeta": "advanced",
2637
+ "MailboxPeerNoticeMeta": "advanced",
2638
+ "MailboxPeerNoticeState": "advanced",
2541
2639
  "MailboxPeerRecordKind": "advanced",
2542
2640
  "MailboxStore": "advanced",
2543
2641
  "MailboxStoreError": "advanced",
@@ -2680,9 +2778,22 @@
2680
2778
  "PARK_SELFCHECK_SCOPE_PREFIX": "advanced",
2681
2779
  "PEER_ADDRESS_PREFIXES": "advanced",
2682
2780
  "PEER_ADMISSION_DEFAULTS": "advanced",
2781
+ "PEER_DELIVERY_RECEIPT_STATES": "advanced",
2782
+ "PEER_DROP_REASONS": "advanced",
2783
+ "PEER_HELD_QUEUE_CAP": "advanced",
2784
+ "PEER_HELD_REVIEW_CAUSES": "advanced",
2683
2785
  "PEER_HOP_CHAIN_CARRY_WINDOW": "advanced",
2684
2786
  "PEER_HOP_CHAIN_WINDOW": "advanced",
2685
2787
  "PEER_HOP_TOKEN_HEX": "advanced",
2788
+ "PEER_IDLE_FIRE_DEBOUNCE_MS": "advanced",
2789
+ "PEER_IDLE_HELD_BACKOFF_MS": "advanced",
2790
+ "PEER_IDLE_LABEL_MAX": "advanced",
2791
+ "PEER_IDLE_NOTICE_KINDS": "advanced",
2792
+ "PEER_IDLE_OUTSTANDING_CAP": "advanced",
2793
+ "PEER_IDLE_PRIORS_KEPT": "advanced",
2794
+ "PEER_IDLE_SUBSCRIBER_TABLE_CAP": "advanced",
2795
+ "PEER_IDLE_SUBSCRIPTION_TTL_MS": "advanced",
2796
+ "PEER_IDLE_UNAVAILABLE_CAUSES": "advanced",
2686
2797
  "PEER_MESSAGE_NOTICE": "advanced",
2687
2798
  "PEER_REF_MAX": "advanced",
2688
2799
  "PEER_REF_MIN": "advanced",
@@ -2724,12 +2835,36 @@
2724
2835
  "PeerAdmissionStage": "advanced",
2725
2836
  "PeerAdmissionVerdict": "advanced",
2726
2837
  "PeerAxisTag": "advanced",
2838
+ "PeerClock": "advanced",
2839
+ "PeerDeliveryReceiptState": "advanced",
2727
2840
  "PeerDirectory": "advanced",
2728
2841
  "PeerDirectoryAccess": "advanced",
2842
+ "PeerDropReason": "advanced",
2843
+ "PeerHeldEntry": "advanced",
2844
+ "PeerHeldQueue": "advanced",
2845
+ "PeerHeldQueueConfig": "advanced",
2846
+ "PeerHeldQueueSink": "advanced",
2847
+ "PeerHeldSettleOutcome": "advanced",
2848
+ "PeerHeldSettleReason": "advanced",
2849
+ "PeerHeldSettlement": "advanced",
2729
2850
  "PeerIdentity": "advanced",
2851
+ "PeerIdleMachine": "advanced",
2852
+ "PeerIdleNoticeFields": "advanced",
2853
+ "PeerIdleNoticeKind": "advanced",
2854
+ "PeerIdleOutstanding": "advanced",
2855
+ "PeerIdleRequester": "advanced",
2856
+ "PeerIdleRequesterSink": "advanced",
2857
+ "PeerIdleSubscribeOutcome": "advanced",
2858
+ "PeerIdleSubscriber": "advanced",
2859
+ "PeerIdleTarget": "advanced",
2860
+ "PeerIdleTargetNotice": "advanced",
2861
+ "PeerIdleTargetSink": "advanced",
2730
2862
  "PeerInboundChainRef": "advanced",
2863
+ "PeerInboundDisposition": "advanced",
2864
+ "PeerInboundHoldCause": "advanced",
2731
2865
  "PeerLaneMountVerdict": "advanced",
2732
2866
  "PeerLivenessProbe": "advanced",
2867
+ "PeerNoticeRoute": "advanced",
2733
2868
  "PeerRefEntry": "advanced",
2734
2869
  "PeerRefusalCode": "advanced",
2735
2870
  "PeerRegistryDirectoryRefusal": "advanced",
@@ -2887,6 +3022,7 @@
2887
3022
  "ReportedFinding": "internal",
2888
3023
  "ResolveExpectation": "stable",
2889
3024
  "ResolvedAsk": "advanced",
3025
+ "ResolvedCrossSessionDialogExpiry": "advanced",
2890
3026
  "ResolvedCrossSessionInboundSetting": "advanced",
2891
3027
  "ResolvedDelegationEntryCaps": "advanced",
2892
3028
  "ResolvedOutcome": "stable",
@@ -3418,6 +3554,7 @@
3418
3554
  "createAskUserQuestionTool": "advanced",
3419
3555
  "createAssistantMessageEventStream": "stable",
3420
3556
  "createAutoModeDecider": "advanced",
3557
+ "createAutoModeDenialTracker": "advanced",
3421
3558
  "createCcFileMailboxStore": "advanced",
3422
3559
  "createCcFileTaskListStore": "advanced",
3423
3560
  "createCcTeamsRosterAdapter": "advanced",
@@ -3442,6 +3579,9 @@
3442
3579
  "createOpenResponsesBrain": "advanced",
3443
3580
  "createOrgRuleOverlay": "stable",
3444
3581
  "createPeerAdmission": "advanced",
3582
+ "createPeerHeldQueue": "advanced",
3583
+ "createPeerIdleRequester": "advanced",
3584
+ "createPeerIdleTarget": "advanced",
3445
3585
  "createPeerInboundChainRef": "advanced",
3446
3586
  "createPeerSelfRef": "advanced",
3447
3587
  "createPermissionRulePolicy": "advanced",
@@ -3480,6 +3620,8 @@
3480
3620
  "defineAgent": "stable",
3481
3621
  "defineTool": "stable",
3482
3622
  "delimitUntrusted": "advanced",
3623
+ "denialLimitFallbackMessage": "advanced",
3624
+ "denialLimitSentence": "advanced",
3483
3625
  "deploymentReadFaceClampNotice": "advanced",
3484
3626
  "deriveAgentDisplayStatus": "advanced",
3485
3627
  "deriveAskEffective": "advanced",
@@ -3496,6 +3638,9 @@
3496
3638
  "describeConfigCatalog": "advanced",
3497
3639
  "describeCrossSessionHoldCause": "advanced",
3498
3640
  "describeDefaultPack": "advanced",
3641
+ "describePeerDeliveryReceipt": "advanced",
3642
+ "describePeerDropReasons": "advanced",
3643
+ "describePeerIdleSubscription": "advanced",
3499
3644
  "describeStaticWiring": "stable",
3500
3645
  "detectCleanArmVerbatimLeak": "advanced",
3501
3646
  "detectSecret": "advanced",
@@ -3558,6 +3703,7 @@
3558
3703
  "formatOrgScope": "advanced",
3559
3704
  "formatOutOfRootReadApprovalOption": "advanced",
3560
3705
  "formatPeerNameRef": "advanced",
3706
+ "formatPeerNoticeClock": "advanced",
3561
3707
  "formatProjScope": "stable",
3562
3708
  "formatProjectMarker": "stable",
3563
3709
  "formatToolError": "advanced",
@@ -3594,6 +3740,8 @@
3594
3740
  "isIsolated": "advanced",
3595
3741
  "isModelGatedForClass": "advanced",
3596
3742
  "isNamespacedCoveringRuleName": "advanced",
3743
+ "isPeerDeliveryReceiptState": "advanced",
3744
+ "isPeerIdleNoticeKind": "advanced",
3597
3745
  "isPeerSessionId": "advanced",
3598
3746
  "isPeerSessionProcessAlive": "advanced",
3599
3747
  "isPermissionModeClass": "advanced",
@@ -3716,6 +3864,17 @@
3716
3864
  "peekMemoryAnnouncements": "advanced",
3717
3865
  "peerAdmissionFor": "advanced",
3718
3866
  "peerAxisToken": "advanced",
3867
+ "peerDeliveryReceiptLabel": "advanced",
3868
+ "peerHeldQueueFor": "advanced",
3869
+ "peerHeldQueueIfAny": "advanced",
3870
+ "peerHeldQueueKey": "advanced",
3871
+ "peerIdleDetailOf": "advanced",
3872
+ "peerIdleMachineFor": "advanced",
3873
+ "peerIdleMachineIfAny": "advanced",
3874
+ "peerIdleMachineKey": "advanced",
3875
+ "peerIdleNoticeLabel": "advanced",
3876
+ "peerIdleNoticeSummary": "advanced",
3877
+ "peerRecipientSuffix": "advanced",
3719
3878
  "peerSendVerdictSeverity": "advanced",
3720
3879
  "peerSessionBoxHandle": "advanced",
3721
3880
  "permissionRuleSyncContract": "advanced",
@@ -3749,6 +3908,7 @@
3749
3908
  "readSessionCaptureOptOut": "advanced",
3750
3909
  "readUsageRecord": "advanced",
3751
3910
  "readV2HeaderHints": "advanced",
3911
+ "realPeerClock": "advanced",
3752
3912
  "reasoningBudgetShare": "advanced",
3753
3913
  "rebuildAutoModeDecider": "advanced",
3754
3914
  "rebuildStrictControlPlaneLedger": "advanced",
@@ -3769,7 +3929,11 @@
3769
3929
  "renderAnnouncements": "advanced",
3770
3930
  "renderAutoModeAction": "advanced",
3771
3931
  "renderAutoModeWindow": "advanced",
3932
+ "renderCrossSessionDeliveryNotice": "advanced",
3933
+ "renderCrossSessionDroppedNotice": "advanced",
3934
+ "renderCrossSessionIdleNotice": "advanced",
3772
3935
  "renderCrossSessionMessageFrame": "advanced",
3936
+ "renderCrossSessionNoticeLine": "advanced",
3773
3937
  "renderNamedWorkflowListing": "advanced",
3774
3938
  "renderTaskNotificationXml": "advanced",
3775
3939
  "renderUntrustedCommandText": "advanced",
@@ -3783,6 +3947,7 @@
3783
3947
  "resolveBinary": "advanced",
3784
3948
  "resolveBuiltinWorkflow": "advanced",
3785
3949
  "resolveComplianceDenies": "advanced",
3950
+ "resolveCrossSessionDialogExpiry": "advanced",
3786
3951
  "resolveCrossSessionInboundSetting": "advanced",
3787
3952
  "resolveDataRoot": "advanced",
3788
3953
  "resolveDeclaredDurability": "advanced",
@@ -3816,6 +3981,9 @@
3816
3981
  "retryBackoffMs": "advanced",
3817
3982
  "riskSeverity": "advanced",
3818
3983
  "routePairingStatus": "advanced",
3984
+ "routePeerDeliveryReceipt": "advanced",
3985
+ "routePeerDroppedReceipt": "advanced",
3986
+ "routePeerIdleNotice": "advanced",
3819
3987
  "routeRefusalText": "advanced",
3820
3988
  "ruleAdmitsCommand": "advanced",
3821
3989
  "ruleOffersOfRecord": "advanced",