@sema-agent/core 7.1.0 → 7.2.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 (34) hide show
  1. package/CHANGELOG.md +36 -0
  2. package/dist/agents/cross-session-envelope.d.ts +138 -0
  3. package/dist/agents/cross-session-envelope.js +191 -0
  4. package/dist/agents/cross-session-judge.d.ts +119 -0
  5. package/dist/agents/cross-session-judge.js +184 -0
  6. package/dist/agents/cross-session-ref.d.ts +52 -0
  7. package/dist/agents/cross-session-ref.js +64 -0
  8. package/dist/agents/send-message-tool.d.ts +13 -0
  9. package/dist/agents/send-message-tool.js +36 -12
  10. package/dist/core/checkpoint-store.d.ts +189 -3
  11. package/dist/core/checkpoint-store.js +56 -16
  12. package/dist/core/hooks.d.ts +15 -8
  13. package/dist/core/hooks.js +6 -3
  14. package/dist/core/permission-rule-consent.d.ts +72 -23
  15. package/dist/core/permission-rule-consent.js +115 -26
  16. package/dist/core/permission-rule-model.d.ts +245 -51
  17. package/dist/core/permission-rule-model.js +312 -54
  18. package/dist/core/permission-rule-org.js +13 -6
  19. package/dist/core/remote-env.d.ts +8 -1
  20. package/dist/core/runner/assemble-result.js +2 -1
  21. package/dist/core/runner/prepare-task.d.ts +39 -1
  22. package/dist/core/runner/prepare-task.js +278 -113
  23. package/dist/core/runner/prepare-workspace-restore.d.ts +6 -1
  24. package/dist/core/runner/prepare-workspace-restore.js +2 -1
  25. package/dist/core/runner/runtask.js +13 -3
  26. package/dist/core/task-notification.d.ts +64 -5
  27. package/dist/core/task-notification.js +25 -4
  28. package/dist/core/tool-policy.d.ts +11 -0
  29. package/dist/core/types.d.ts +23 -0
  30. package/dist/core/untrusted-text.js +17 -1
  31. package/dist/index.d.ts +6 -3
  32. package/dist/index.js +5 -2
  33. package/package.json +1 -1
  34. package/test/export-surface.snapshot.json +125 -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": 1842,
4
+ "count": 1904,
5
5
  "exports": {
6
6
  "A2ATaskState": "type",
7
7
  "A2ATaskStateReversal": "type",
@@ -15,6 +15,7 @@
15
15
  "A2aServerSpec": "interface",
16
16
  "A2aToolAxis": "interface",
17
17
  "ACTOR_ASSERTION_FROZEN_FIELDS": "variable",
18
+ "AGENT_MESSAGE_TAG": "variable",
18
19
  "AGENT_TRANSCRIPT_TOOL_NAME": "variable",
19
20
  "AGGREGATE_MEDIA_BUDGET_BYTES": "variable",
20
21
  "AGGREGATE_TOOL_RESULT_BUDGET_CHARS": "variable",
@@ -154,6 +155,10 @@
154
155
  "CONSOLIDATION_SYSTEM_PROMPT": "variable",
155
156
  "CONTRACT_KIT_ENGINE_VERSION": "variable",
156
157
  "COORDINATOR_ROLE_PROMPT": "variable",
158
+ "CROSS_SESSION_HOLD_CAUSES": "variable",
159
+ "CROSS_SESSION_INBOUND_SETTINGS": "variable",
160
+ "CROSS_SESSION_MESSAGE_NOTICE": "variable",
161
+ "CROSS_SESSION_MESSAGE_TAG": "variable",
157
162
  "CURRENT_CHECKPOINT_VERSION": "variable",
158
163
  "CYBER_RISK": "variable",
159
164
  "CacheBreakDetector": "class",
@@ -166,6 +171,8 @@
166
171
  "CascadeRung": "interface",
167
172
  "CcFileMailboxStoreOptions": "interface",
168
173
  "CcImportLayer": "interface",
174
+ "CcPeerFrameFields": "interface",
175
+ "CcPeerFrameParse": "type",
169
176
  "CcSidecarHandle": "interface",
170
177
  "CcSidecarLine": "interface",
171
178
  "CcSidecarMessages": "interface",
@@ -248,6 +255,16 @@
248
255
  "ControlPlaneCorruptError": "class",
249
256
  "ControlPlaneRebuildReceipt": "interface",
250
257
  "CoreCompatRange": "interface",
258
+ "CrossSessionCodecError": "class",
259
+ "CrossSessionEnvelopeFields": "interface",
260
+ "CrossSessionEnvelopeParse": "type",
261
+ "CrossSessionEnvelopeRefusal": "type",
262
+ "CrossSessionHoldCause": "type",
263
+ "CrossSessionInboundInput": "interface",
264
+ "CrossSessionInboundSetting": "type",
265
+ "CrossSessionInboundSettingLayers": "interface",
266
+ "CrossSessionInboundVerdict": "type",
267
+ "CrossSessionSettingSource": "type",
251
268
  "DECLARE_DONE_TOOL_NAME": "variable",
252
269
  "DEFAULT_BUDGET_EXEMPT_TOOLS": "variable",
253
270
  "DEFAULT_COMPACTION_INSTRUCTIONS": "variable",
@@ -301,6 +318,7 @@
301
318
  "EXPLORE_SYSTEM_PROMPT": "variable",
302
319
  "EXPLORE_WHEN_TO_USE": "variable",
303
320
  "EXPLORE_WHEN_TO_USE_LEAN": "variable",
321
+ "EditedRuleBreadthWarning": "interface",
304
322
  "EditedRuleTextPrecheck": "type",
305
323
  "EffectiveConfigField": "interface",
306
324
  "EffectiveMemoryScopes": "type",
@@ -674,11 +692,19 @@
674
692
  "OutputChunk": "type",
675
693
  "OwnOrgAdmissionVerdict": "interface",
676
694
  "PARK_SELFCHECK_SCOPE_PREFIX": "variable",
695
+ "PEER_ADDRESS_PREFIXES": "variable",
677
696
  "PEER_ADMISSION_DEFAULTS": "variable",
697
+ "PEER_HOP_CHAIN_CARRY_WINDOW": "variable",
678
698
  "PEER_HOP_CHAIN_WINDOW": "variable",
699
+ "PEER_HOP_TOKEN_HEX": "variable",
679
700
  "PEER_MESSAGE_NOTICE": "variable",
701
+ "PEER_REF_MAX": "variable",
702
+ "PEER_REF_MIN": "variable",
703
+ "PEER_REF_RE": "variable",
704
+ "PEER_SEND_VERDICT_CODES": "variable",
680
705
  "PENDING_STEER_FROZEN_FIELDS": "variable",
681
706
  "PENDING_STEER_QUEUE_BYTE_BUDGET_BYTES": "variable",
707
+ "PERMISSION_MODE_CLASSES": "variable",
682
708
  "PERMISSION_RULE_SYNC_PATH": "variable",
683
709
  "PERMISSION_RULE_WRITER": "variable",
684
710
  "PLAN_SYSTEM_PROMPT": "variable",
@@ -709,13 +735,17 @@
709
735
  "PeerAxisTag": "type",
710
736
  "PeerIdentity": "interface",
711
737
  "PeerInboundChainRef": "interface",
738
+ "PeerRefEntry": "interface",
712
739
  "PeerRefusalCode": "type",
713
740
  "PeerSelfRef": "interface",
741
+ "PeerSendVerdict": "type",
742
+ "PeerSendVerdictCode": "type",
714
743
  "PendingAction": "type",
715
744
  "PendingSteerEntry": "interface",
716
745
  "PendingSteerInput": "interface",
717
746
  "PermissionDeniedPayload": "interface",
718
747
  "PermissionDeniedSource": "type",
748
+ "PermissionModeClass": "type",
719
749
  "PermissionResult": "type",
720
750
  "PermissionRule": "interface",
721
751
  "PermissionRuleCaps": "interface",
@@ -804,6 +834,7 @@
804
834
  "ROLE_TIER_DEFAULTS": "variable",
805
835
  "ROOT_ADOPTION_FILE": "variable",
806
836
  "ROUTE_ADJUDICATION_CONFORMANCE_CORPUS": "variable",
837
+ "RULE_OFFERS_ABSENCE_BASELINE": "variable",
807
838
  "RULE_SYNC_DROP_CODES": "variable",
808
839
  "RUN_WORKFLOW_TOOL_NAME": "variable",
809
840
  "RawPrefixInputs": "interface",
@@ -852,6 +883,7 @@
852
883
  "ReportedFinding": "interface",
853
884
  "ResolveExpectation": "interface",
854
885
  "ResolvedAsk": "type",
886
+ "ResolvedCrossSessionInboundSetting": "interface",
855
887
  "ResolvedDelegationEntryCaps": "interface",
856
888
  "ResolvedOutcome": "interface",
857
889
  "ResolvedReasoning": "interface",
@@ -901,6 +933,7 @@
901
933
  "RuleDot": "interface",
902
934
  "RuleOffer": "type",
903
935
  "RuleOffer2": "type",
936
+ "RuleOfferBatchMember": "type",
904
937
  "RuleOwner": "type",
905
938
  "RuleQuarantineReason": "type",
906
939
  "RuleReject": "interface",
@@ -986,6 +1019,7 @@
986
1019
  "SegmentRuleSuggestion": "interface",
987
1020
  "SelectiveRecallOptions": "interface",
988
1021
  "SelectiveRecallResult": "type",
1022
+ "SemaProvenance": "interface",
989
1023
  "SemaTaskHandle": "interface",
990
1024
  "SemaTaskStatus": "type",
991
1025
  "SemaTaskType": "type",
@@ -1113,6 +1147,8 @@
1113
1147
  "TeamMember": "interface",
1114
1148
  "TeamResult": "interface",
1115
1149
  "TeamTurn": "interface",
1150
+ "TerminalClaimIntent": "type",
1151
+ "TerminalClaimOutcome": "type",
1116
1152
  "TextContent": "interface",
1117
1153
  "ThinkingContent": "interface",
1118
1154
  "ThinkingLevel": "type",
@@ -1152,8 +1188,10 @@
1152
1188
  "TtlSessionStoreOptions": "interface",
1153
1189
  "TurnPromptSnapshot": "interface",
1154
1190
  "Type": "namespace",
1191
+ "UNCOVERED_SEGMENT_REASON_BASELINE": "variable",
1155
1192
  "URL_SAFETY": "variable",
1156
1193
  "USAGE_WINDOW_REAP_MARGIN_MS": "variable",
1194
+ "UncoveredSegmentDetail": "interface",
1157
1195
  "UnifiedTaskOutput": "interface",
1158
1196
  "UnifiedTaskResult": "type",
1159
1197
  "UnverifiedReason": "type",
@@ -1292,6 +1330,7 @@
1292
1330
  "brandLspFailure": "function",
1293
1331
  "buildAgentPollDetails": "function",
1294
1332
  "buildAutoModePrompt": "function",
1333
+ "buildCrossSessionEnvelope": "function",
1295
1334
  "buildEnvironmentContext": "function",
1296
1335
  "buildGitSnapshot": "function",
1297
1336
  "buildHumanInputEvent": "function",
@@ -1312,6 +1351,7 @@
1312
1351
  "callKeyOrdinal": "function",
1313
1352
  "canAccessAgentRecord": "function",
1314
1353
  "canAccessWorkflowRun": "function",
1354
+ "canonicalPeerDisplayName": "function",
1315
1355
  "canonicalWorkflowName": "function",
1316
1356
  "capAggregateMediaBytes": "function",
1317
1357
  "capAggregateToolResults": "function",
@@ -1323,6 +1363,7 @@
1323
1363
  "checkToolPolicyProjection": "function",
1324
1364
  "checkpointStoreContract": "function",
1325
1365
  "checkpointVersionOf": "function",
1366
+ "clampHopChain": "function",
1326
1367
  "classifyCompoundReadonly": "function",
1327
1368
  "classifyCompoundReadonlyDetailed": "function",
1328
1369
  "classifyHttp": "function",
@@ -1418,6 +1459,8 @@
1418
1459
  "debitLedger": "function",
1419
1460
  "decideAutoPromote": "function",
1420
1461
  "decisionText": "function",
1462
+ "decodeCcPeerFrame": "function",
1463
+ "decodeScopeAttribute": "function",
1421
1464
  "decodeScopeSegment": "function",
1422
1465
  "defaultLspSpawn": "variable",
1423
1466
  "defaultPromptProvider": "variable",
@@ -1439,11 +1482,13 @@
1439
1482
  "deriveTripwire": "function",
1440
1483
  "deriveWiringManifest": "function",
1441
1484
  "describeConfigCatalog": "function",
1485
+ "describeCrossSessionHoldCause": "function",
1442
1486
  "describeDefaultPack": "function",
1443
1487
  "describeStaticWiring": "function",
1444
1488
  "detectCleanArmVerbatimLeak": "function",
1445
1489
  "detectSecret": "function",
1446
1490
  "devWorkflowScriptRunner": "variable",
1491
+ "directoryRuleAdmits": "function",
1447
1492
  "distilledEquals": "function",
1448
1493
  "dotAtOrBelowFrontier": "function",
1449
1494
  "drainMemoryAnnouncements": "function",
@@ -1454,7 +1499,10 @@
1454
1499
  "effectivePermissionRules": "function",
1455
1500
  "emitTaskOutcome": "function",
1456
1501
  "emitTrace": "function",
1502
+ "encodeCcPeerFrame": "function",
1457
1503
  "encodeFrame": "function",
1504
+ "encodePeerAddress": "function",
1505
+ "encodeScopeAttribute": "function",
1458
1506
  "encodeScopeSegment": "function",
1459
1507
  "encodeSurfacedKey": "function",
1460
1508
  "enforcePromotableWriteGate": "function",
@@ -1488,6 +1536,7 @@
1488
1536
  "foldAdmissionFreeze": "function",
1489
1537
  "foldAutoModeArming": "function",
1490
1538
  "foldDelta": "function",
1539
+ "foldPermissionModeClass": "function",
1491
1540
  "formatAllowRuleText": "function",
1492
1541
  "formatDiagnosticsBlock": "function",
1493
1542
  "formatDiagnosticsSummary": "function",
@@ -1496,6 +1545,7 @@
1496
1545
  "formatMemoryAge": "function",
1497
1546
  "formatOrgScope": "function",
1498
1547
  "formatOutOfRootReadApprovalOption": "function",
1548
+ "formatPeerNameRef": "function",
1499
1549
  "formatProjScope": "function",
1500
1550
  "formatProjectMarker": "function",
1501
1551
  "formatToolError": "function",
@@ -1525,11 +1575,14 @@
1525
1575
  "isAliasModelId": "function",
1526
1576
  "isApprovalSettledBy": "function",
1527
1577
  "isAskDenyResolution": "function",
1578
+ "isCanonicalPeerAddress": "function",
1579
+ "isCrossSessionInboundSetting": "function",
1528
1580
  "isDelegatedAgentTerminal": "function",
1529
1581
  "isInstructionEntry": "function",
1530
1582
  "isIsolated": "function",
1531
1583
  "isModelGatedForClass": "function",
1532
1584
  "isNamespacedCoveringRuleName": "function",
1585
+ "isPermissionModeClass": "function",
1533
1586
  "isPersonalScope": "function",
1534
1587
  "isQuestionUnavailable": "function",
1535
1588
  "isRemoteExecutionEnv": "function",
@@ -1552,6 +1605,7 @@
1552
1605
  "jaccardDistance": "function",
1553
1606
  "joinFrontiers": "function",
1554
1607
  "joinRuleStates": "function",
1608
+ "judgeCrossSessionInbound": "function",
1555
1609
  "judgePeerAdmission": "function",
1556
1610
  "killProcessTree": "function",
1557
1611
  "languageFor": "function",
@@ -1596,6 +1650,7 @@
1596
1650
  "mintCheckpointToken": "function",
1597
1651
  "mintExposurePartitionedPlan": "function",
1598
1652
  "mintLlmConsolidationPlan": "function",
1653
+ "mintPeerRef": "function",
1599
1654
  "mintReminderMark": "function",
1600
1655
  "mintRuleTicket": "function",
1601
1656
  "mintSystemReminder": "function",
@@ -1608,6 +1663,7 @@
1608
1663
  "normalizeBaseUrl": "function",
1609
1664
  "normalizeForExactMatch": "function",
1610
1665
  "normalizeMemorySpec": "function",
1666
+ "normalizePeerName": "function",
1611
1667
  "normalizePersistedRuleHit": "function",
1612
1668
  "normalizePromptEpoch": "function",
1613
1669
  "normalizeRules": "function",
@@ -1622,10 +1678,12 @@
1622
1678
  "oversizeJournalResult": "function",
1623
1679
  "parseAllowRuleText": "function",
1624
1680
  "parseAutoModeResponse": "function",
1681
+ "parseCrossSessionEnvelope": "function",
1625
1682
  "parseEntryFile": "function",
1626
1683
  "parseJsonAnswer": "function",
1627
1684
  "parseLeadingCommandName": "function",
1628
1685
  "parseModelMention": "function",
1686
+ "parsePeerNameRef": "function",
1629
1687
  "parsePermissionRule": "function",
1630
1688
  "parseProjectMarker": "function",
1631
1689
  "parseResult": "function",
@@ -1639,6 +1697,7 @@
1639
1697
  "peekMemoryAnnouncements": "function",
1640
1698
  "peerAdmissionFor": "function",
1641
1699
  "peerAxisToken": "function",
1700
+ "peerSendVerdictSeverity": "function",
1642
1701
  "permissionRuleSyncContract": "function",
1643
1702
  "pgQuery": "function",
1644
1703
  "planParseRepairs": "function",
@@ -1684,6 +1743,7 @@
1684
1743
  "remainingTokens": "function",
1685
1744
  "reminderMarkDeclaration": "function",
1686
1745
  "removePersistedRule": "function",
1746
+ "renderAgentMessageFrame": "function",
1687
1747
  "renderAnnouncements": "function",
1688
1748
  "renderAutoModeAction": "function",
1689
1749
  "renderAutoModeWindow": "function",
@@ -1692,6 +1752,7 @@
1692
1752
  "renderUntrustedCommandText": "function",
1693
1753
  "repairBundleFromCheckpoint": "function",
1694
1754
  "repairTextToolCalls": "function",
1755
+ "reservedPeerNameReason": "function",
1695
1756
  "resolveAsk": "function",
1696
1757
  "resolveAskSeamForm": "function",
1697
1758
  "resolveAutonomousLoopPrompt": "function",
@@ -1699,6 +1760,7 @@
1699
1760
  "resolveBinary": "function",
1700
1761
  "resolveBuiltinWorkflow": "function",
1701
1762
  "resolveComplianceDenies": "function",
1763
+ "resolveCrossSessionInboundSetting": "function",
1702
1764
  "resolveDataRoot": "function",
1703
1765
  "resolveDeclaredDurability": "function",
1704
1766
  "resolveDelegationEntryCaps": "function",
@@ -1859,6 +1921,7 @@
1859
1921
  "A2aServerSpec": "advanced",
1860
1922
  "A2aToolAxis": "advanced",
1861
1923
  "ACTOR_ASSERTION_FROZEN_FIELDS": "advanced",
1924
+ "AGENT_MESSAGE_TAG": "advanced",
1862
1925
  "AGENT_TRANSCRIPT_TOOL_NAME": "advanced",
1863
1926
  "AGGREGATE_MEDIA_BUDGET_BYTES": "advanced",
1864
1927
  "AGGREGATE_TOOL_RESULT_BUDGET_CHARS": "advanced",
@@ -1998,6 +2061,10 @@
1998
2061
  "CONSOLIDATION_SYSTEM_PROMPT": "internal",
1999
2062
  "CONTRACT_KIT_ENGINE_VERSION": "advanced",
2000
2063
  "COORDINATOR_ROLE_PROMPT": "advanced",
2064
+ "CROSS_SESSION_HOLD_CAUSES": "advanced",
2065
+ "CROSS_SESSION_INBOUND_SETTINGS": "advanced",
2066
+ "CROSS_SESSION_MESSAGE_NOTICE": "advanced",
2067
+ "CROSS_SESSION_MESSAGE_TAG": "advanced",
2001
2068
  "CURRENT_CHECKPOINT_VERSION": "advanced",
2002
2069
  "CYBER_RISK": "advanced",
2003
2070
  "CacheBreakDetector": "advanced",
@@ -2010,6 +2077,8 @@
2010
2077
  "CascadeRung": "advanced",
2011
2078
  "CcFileMailboxStoreOptions": "advanced",
2012
2079
  "CcImportLayer": "advanced",
2080
+ "CcPeerFrameFields": "advanced",
2081
+ "CcPeerFrameParse": "advanced",
2013
2082
  "CcSidecarHandle": "advanced",
2014
2083
  "CcSidecarLine": "advanced",
2015
2084
  "CcSidecarMessages": "advanced",
@@ -2092,6 +2161,16 @@
2092
2161
  "ControlPlaneCorruptError": "advanced",
2093
2162
  "ControlPlaneRebuildReceipt": "advanced",
2094
2163
  "CoreCompatRange": "advanced",
2164
+ "CrossSessionCodecError": "advanced",
2165
+ "CrossSessionEnvelopeFields": "advanced",
2166
+ "CrossSessionEnvelopeParse": "advanced",
2167
+ "CrossSessionEnvelopeRefusal": "advanced",
2168
+ "CrossSessionHoldCause": "advanced",
2169
+ "CrossSessionInboundInput": "advanced",
2170
+ "CrossSessionInboundSetting": "advanced",
2171
+ "CrossSessionInboundSettingLayers": "advanced",
2172
+ "CrossSessionInboundVerdict": "advanced",
2173
+ "CrossSessionSettingSource": "advanced",
2095
2174
  "DECLARE_DONE_TOOL_NAME": "advanced",
2096
2175
  "DEFAULT_BUDGET_EXEMPT_TOOLS": "advanced",
2097
2176
  "DEFAULT_COMPACTION_INSTRUCTIONS": "advanced",
@@ -2145,6 +2224,7 @@
2145
2224
  "EXPLORE_SYSTEM_PROMPT": "advanced",
2146
2225
  "EXPLORE_WHEN_TO_USE": "advanced",
2147
2226
  "EXPLORE_WHEN_TO_USE_LEAN": "advanced",
2227
+ "EditedRuleBreadthWarning": "advanced",
2148
2228
  "EditedRuleTextPrecheck": "advanced",
2149
2229
  "EffectiveConfigField": "advanced",
2150
2230
  "EffectiveMemoryScopes": "advanced",
@@ -2518,11 +2598,19 @@
2518
2598
  "OutputChunk": "advanced",
2519
2599
  "OwnOrgAdmissionVerdict": "advanced",
2520
2600
  "PARK_SELFCHECK_SCOPE_PREFIX": "advanced",
2601
+ "PEER_ADDRESS_PREFIXES": "advanced",
2521
2602
  "PEER_ADMISSION_DEFAULTS": "advanced",
2603
+ "PEER_HOP_CHAIN_CARRY_WINDOW": "advanced",
2522
2604
  "PEER_HOP_CHAIN_WINDOW": "advanced",
2605
+ "PEER_HOP_TOKEN_HEX": "advanced",
2523
2606
  "PEER_MESSAGE_NOTICE": "advanced",
2607
+ "PEER_REF_MAX": "advanced",
2608
+ "PEER_REF_MIN": "advanced",
2609
+ "PEER_REF_RE": "advanced",
2610
+ "PEER_SEND_VERDICT_CODES": "advanced",
2524
2611
  "PENDING_STEER_FROZEN_FIELDS": "advanced",
2525
2612
  "PENDING_STEER_QUEUE_BYTE_BUDGET_BYTES": "advanced",
2613
+ "PERMISSION_MODE_CLASSES": "advanced",
2526
2614
  "PERMISSION_RULE_SYNC_PATH": "advanced",
2527
2615
  "PERMISSION_RULE_WRITER": "advanced",
2528
2616
  "PLAN_SYSTEM_PROMPT": "advanced",
@@ -2553,13 +2641,17 @@
2553
2641
  "PeerAxisTag": "advanced",
2554
2642
  "PeerIdentity": "advanced",
2555
2643
  "PeerInboundChainRef": "advanced",
2644
+ "PeerRefEntry": "advanced",
2556
2645
  "PeerRefusalCode": "advanced",
2557
2646
  "PeerSelfRef": "advanced",
2647
+ "PeerSendVerdict": "advanced",
2648
+ "PeerSendVerdictCode": "advanced",
2558
2649
  "PendingAction": "advanced",
2559
2650
  "PendingSteerEntry": "stable",
2560
2651
  "PendingSteerInput": "stable",
2561
2652
  "PermissionDeniedPayload": "advanced",
2562
2653
  "PermissionDeniedSource": "advanced",
2654
+ "PermissionModeClass": "advanced",
2563
2655
  "PermissionResult": "advanced",
2564
2656
  "PermissionRule": "advanced",
2565
2657
  "PermissionRuleCaps": "advanced",
@@ -2648,6 +2740,7 @@
2648
2740
  "ROLE_TIER_DEFAULTS": "advanced",
2649
2741
  "ROOT_ADOPTION_FILE": "advanced",
2650
2742
  "ROUTE_ADJUDICATION_CONFORMANCE_CORPUS": "advanced",
2743
+ "RULE_OFFERS_ABSENCE_BASELINE": "advanced",
2651
2744
  "RULE_SYNC_DROP_CODES": "advanced",
2652
2745
  "RUN_WORKFLOW_TOOL_NAME": "stable",
2653
2746
  "RawPrefixInputs": "advanced",
@@ -2696,6 +2789,7 @@
2696
2789
  "ReportedFinding": "internal",
2697
2790
  "ResolveExpectation": "stable",
2698
2791
  "ResolvedAsk": "advanced",
2792
+ "ResolvedCrossSessionInboundSetting": "advanced",
2699
2793
  "ResolvedDelegationEntryCaps": "advanced",
2700
2794
  "ResolvedOutcome": "stable",
2701
2795
  "ResolvedReasoning": "advanced",
@@ -2745,6 +2839,7 @@
2745
2839
  "RuleDot": "advanced",
2746
2840
  "RuleOffer": "advanced",
2747
2841
  "RuleOffer2": "advanced",
2842
+ "RuleOfferBatchMember": "advanced",
2748
2843
  "RuleOwner": "advanced",
2749
2844
  "RuleQuarantineReason": "advanced",
2750
2845
  "RuleReject": "advanced",
@@ -2830,6 +2925,7 @@
2830
2925
  "SegmentRuleSuggestion": "advanced",
2831
2926
  "SelectiveRecallOptions": "advanced",
2832
2927
  "SelectiveRecallResult": "advanced",
2928
+ "SemaProvenance": "advanced",
2833
2929
  "SemaTaskHandle": "advanced",
2834
2930
  "SemaTaskStatus": "advanced",
2835
2931
  "SemaTaskType": "advanced",
@@ -2957,6 +3053,8 @@
2957
3053
  "TeamMember": "advanced",
2958
3054
  "TeamResult": "advanced",
2959
3055
  "TeamTurn": "advanced",
3056
+ "TerminalClaimIntent": "advanced",
3057
+ "TerminalClaimOutcome": "advanced",
2960
3058
  "TextContent": "advanced",
2961
3059
  "ThinkingContent": "advanced",
2962
3060
  "ThinkingLevel": "internal",
@@ -2996,8 +3094,10 @@
2996
3094
  "TtlSessionStoreOptions": "advanced",
2997
3095
  "TurnPromptSnapshot": "advanced",
2998
3096
  "Type": "stable",
3097
+ "UNCOVERED_SEGMENT_REASON_BASELINE": "advanced",
2999
3098
  "URL_SAFETY": "advanced",
3000
3099
  "USAGE_WINDOW_REAP_MARGIN_MS": "internal",
3100
+ "UncoveredSegmentDetail": "advanced",
3001
3101
  "UnifiedTaskOutput": "advanced",
3002
3102
  "UnifiedTaskResult": "advanced",
3003
3103
  "UnverifiedReason": "advanced",
@@ -3136,6 +3236,7 @@
3136
3236
  "brandLspFailure": "advanced",
3137
3237
  "buildAgentPollDetails": "advanced",
3138
3238
  "buildAutoModePrompt": "advanced",
3239
+ "buildCrossSessionEnvelope": "advanced",
3139
3240
  "buildEnvironmentContext": "advanced",
3140
3241
  "buildGitSnapshot": "advanced",
3141
3242
  "buildHumanInputEvent": "advanced",
@@ -3156,6 +3257,7 @@
3156
3257
  "callKeyOrdinal": "advanced",
3157
3258
  "canAccessAgentRecord": "advanced",
3158
3259
  "canAccessWorkflowRun": "advanced",
3260
+ "canonicalPeerDisplayName": "advanced",
3159
3261
  "canonicalWorkflowName": "advanced",
3160
3262
  "capAggregateMediaBytes": "advanced",
3161
3263
  "capAggregateToolResults": "advanced",
@@ -3167,6 +3269,7 @@
3167
3269
  "checkToolPolicyProjection": "advanced",
3168
3270
  "checkpointStoreContract": "advanced",
3169
3271
  "checkpointVersionOf": "advanced",
3272
+ "clampHopChain": "advanced",
3170
3273
  "classifyCompoundReadonly": "advanced",
3171
3274
  "classifyCompoundReadonlyDetailed": "advanced",
3172
3275
  "classifyHttp": "advanced",
@@ -3262,6 +3365,8 @@
3262
3365
  "debitLedger": "advanced",
3263
3366
  "decideAutoPromote": "advanced",
3264
3367
  "decisionText": "advanced",
3368
+ "decodeCcPeerFrame": "advanced",
3369
+ "decodeScopeAttribute": "advanced",
3265
3370
  "decodeScopeSegment": "advanced",
3266
3371
  "defaultLspSpawn": "internal",
3267
3372
  "defaultPromptProvider": "advanced",
@@ -3283,11 +3388,13 @@
3283
3388
  "deriveTripwire": "advanced",
3284
3389
  "deriveWiringManifest": "advanced",
3285
3390
  "describeConfigCatalog": "advanced",
3391
+ "describeCrossSessionHoldCause": "advanced",
3286
3392
  "describeDefaultPack": "advanced",
3287
3393
  "describeStaticWiring": "stable",
3288
3394
  "detectCleanArmVerbatimLeak": "advanced",
3289
3395
  "detectSecret": "advanced",
3290
3396
  "devWorkflowScriptRunner": "stable",
3397
+ "directoryRuleAdmits": "advanced",
3291
3398
  "distilledEquals": "stable",
3292
3399
  "dotAtOrBelowFrontier": "advanced",
3293
3400
  "drainMemoryAnnouncements": "advanced",
@@ -3298,7 +3405,10 @@
3298
3405
  "effectivePermissionRules": "advanced",
3299
3406
  "emitTaskOutcome": "advanced",
3300
3407
  "emitTrace": "advanced",
3408
+ "encodeCcPeerFrame": "advanced",
3301
3409
  "encodeFrame": "internal",
3410
+ "encodePeerAddress": "advanced",
3411
+ "encodeScopeAttribute": "advanced",
3302
3412
  "encodeScopeSegment": "advanced",
3303
3413
  "encodeSurfacedKey": "advanced",
3304
3414
  "enforcePromotableWriteGate": "advanced",
@@ -3332,6 +3442,7 @@
3332
3442
  "foldAdmissionFreeze": "advanced",
3333
3443
  "foldAutoModeArming": "advanced",
3334
3444
  "foldDelta": "advanced",
3445
+ "foldPermissionModeClass": "advanced",
3335
3446
  "formatAllowRuleText": "advanced",
3336
3447
  "formatDiagnosticsBlock": "advanced",
3337
3448
  "formatDiagnosticsSummary": "advanced",
@@ -3340,6 +3451,7 @@
3340
3451
  "formatMemoryAge": "advanced",
3341
3452
  "formatOrgScope": "advanced",
3342
3453
  "formatOutOfRootReadApprovalOption": "advanced",
3454
+ "formatPeerNameRef": "advanced",
3343
3455
  "formatProjScope": "stable",
3344
3456
  "formatProjectMarker": "stable",
3345
3457
  "formatToolError": "advanced",
@@ -3369,11 +3481,14 @@
3369
3481
  "isAliasModelId": "advanced",
3370
3482
  "isApprovalSettledBy": "advanced",
3371
3483
  "isAskDenyResolution": "advanced",
3484
+ "isCanonicalPeerAddress": "advanced",
3485
+ "isCrossSessionInboundSetting": "advanced",
3372
3486
  "isDelegatedAgentTerminal": "advanced",
3373
3487
  "isInstructionEntry": "advanced",
3374
3488
  "isIsolated": "advanced",
3375
3489
  "isModelGatedForClass": "advanced",
3376
3490
  "isNamespacedCoveringRuleName": "advanced",
3491
+ "isPermissionModeClass": "advanced",
3377
3492
  "isPersonalScope": "advanced",
3378
3493
  "isQuestionUnavailable": "advanced",
3379
3494
  "isRemoteExecutionEnv": "advanced",
@@ -3396,6 +3511,7 @@
3396
3511
  "jaccardDistance": "stable",
3397
3512
  "joinFrontiers": "advanced",
3398
3513
  "joinRuleStates": "advanced",
3514
+ "judgeCrossSessionInbound": "advanced",
3399
3515
  "judgePeerAdmission": "advanced",
3400
3516
  "killProcessTree": "internal",
3401
3517
  "languageFor": "internal",
@@ -3440,6 +3556,7 @@
3440
3556
  "mintCheckpointToken": "advanced",
3441
3557
  "mintExposurePartitionedPlan": "advanced",
3442
3558
  "mintLlmConsolidationPlan": "advanced",
3559
+ "mintPeerRef": "advanced",
3443
3560
  "mintReminderMark": "advanced",
3444
3561
  "mintRuleTicket": "advanced",
3445
3562
  "mintSystemReminder": "advanced",
@@ -3452,6 +3569,7 @@
3452
3569
  "normalizeBaseUrl": "advanced",
3453
3570
  "normalizeForExactMatch": "internal",
3454
3571
  "normalizeMemorySpec": "advanced",
3572
+ "normalizePeerName": "advanced",
3455
3573
  "normalizePersistedRuleHit": "advanced",
3456
3574
  "normalizePromptEpoch": "advanced",
3457
3575
  "normalizeRules": "advanced",
@@ -3466,10 +3584,12 @@
3466
3584
  "oversizeJournalResult": "advanced",
3467
3585
  "parseAllowRuleText": "advanced",
3468
3586
  "parseAutoModeResponse": "advanced",
3587
+ "parseCrossSessionEnvelope": "advanced",
3469
3588
  "parseEntryFile": "advanced",
3470
3589
  "parseJsonAnswer": "advanced",
3471
3590
  "parseLeadingCommandName": "advanced",
3472
3591
  "parseModelMention": "advanced",
3592
+ "parsePeerNameRef": "advanced",
3473
3593
  "parsePermissionRule": "advanced",
3474
3594
  "parseProjectMarker": "advanced",
3475
3595
  "parseResult": "advanced",
@@ -3483,6 +3603,7 @@
3483
3603
  "peekMemoryAnnouncements": "advanced",
3484
3604
  "peerAdmissionFor": "advanced",
3485
3605
  "peerAxisToken": "advanced",
3606
+ "peerSendVerdictSeverity": "advanced",
3486
3607
  "permissionRuleSyncContract": "advanced",
3487
3608
  "pgQuery": "advanced",
3488
3609
  "planParseRepairs": "advanced",
@@ -3528,6 +3649,7 @@
3528
3649
  "remainingTokens": "advanced",
3529
3650
  "reminderMarkDeclaration": "advanced",
3530
3651
  "removePersistedRule": "advanced",
3652
+ "renderAgentMessageFrame": "advanced",
3531
3653
  "renderAnnouncements": "advanced",
3532
3654
  "renderAutoModeAction": "advanced",
3533
3655
  "renderAutoModeWindow": "advanced",
@@ -3536,6 +3658,7 @@
3536
3658
  "renderUntrustedCommandText": "advanced",
3537
3659
  "repairBundleFromCheckpoint": "advanced",
3538
3660
  "repairTextToolCalls": "advanced",
3661
+ "reservedPeerNameReason": "advanced",
3539
3662
  "resolveAsk": "advanced",
3540
3663
  "resolveAskSeamForm": "advanced",
3541
3664
  "resolveAutonomousLoopPrompt": "advanced",
@@ -3543,6 +3666,7 @@
3543
3666
  "resolveBinary": "advanced",
3544
3667
  "resolveBuiltinWorkflow": "advanced",
3545
3668
  "resolveComplianceDenies": "advanced",
3669
+ "resolveCrossSessionInboundSetting": "advanced",
3546
3670
  "resolveDataRoot": "advanced",
3547
3671
  "resolveDeclaredDurability": "advanced",
3548
3672
  "resolveDelegationEntryCaps": "advanced",