@sema-agent/core 7.4.0 → 7.5.1

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 (115) hide show
  1. package/CHANGELOG.md +69 -0
  2. package/dist/agents/cascade.d.ts +2 -1
  3. package/dist/agents/peer-notices.d.ts +11 -1
  4. package/dist/agents/peer-session-drain.js +2 -0
  5. package/dist/agents/verify.d.ts +2 -1
  6. package/dist/core/ask-origin.d.ts +130 -0
  7. package/dist/core/ask-origin.js +35 -0
  8. package/dist/core/auto-mode-arming.d.ts +40 -1
  9. package/dist/core/auto-mode-arming.js +51 -3
  10. package/dist/core/auto-mode.d.ts +87 -10
  11. package/dist/core/auto-mode.js +34 -6
  12. package/dist/core/checkpoint-store.d.ts +41 -6
  13. package/dist/core/checkpoint-store.js +8 -0
  14. package/dist/core/hooks.d.ts +63 -19
  15. package/dist/core/hooks.js +37 -16
  16. package/dist/core/mcp.d.ts +47 -55
  17. package/dist/core/mcp.js +89 -31
  18. package/dist/core/park-selfcheck.js +3 -0
  19. package/dist/core/permission-rule-consent.d.ts +2 -11
  20. package/dist/core/permission-rule-consent.js +13 -62
  21. package/dist/core/permission-rule-org.d.ts +70 -54
  22. package/dist/core/permission-rule-org.js +47 -61
  23. package/dist/core/permission-rule-provider.d.ts +162 -0
  24. package/dist/core/permission-rule-provider.js +148 -0
  25. package/dist/core/permission-rule-session.d.ts +23 -19
  26. package/dist/core/permission-rule-session.js +5 -5
  27. package/dist/core/permission-rule-store.d.ts +46 -21
  28. package/dist/core/permission-rule-store.js +13 -6
  29. package/dist/core/permission-rule-sync.d.ts +2 -1
  30. package/dist/core/permission-rule-sync.js +11 -0
  31. package/dist/core/runner/assemble-result.d.ts +3 -2
  32. package/dist/core/runner/checkpoint-scope.d.ts +32 -0
  33. package/dist/core/runner/checkpoint-scope.js +4 -0
  34. package/dist/core/runner/contracts.d.ts +1878 -0
  35. package/dist/core/runner/contracts.js +1 -0
  36. package/dist/core/runner/denial-limit-arms.d.ts +57 -31
  37. package/dist/core/runner/denial-limit-arms.js +42 -17
  38. package/dist/core/runner/derived-route-fallback.d.ts +34 -0
  39. package/dist/core/runner/derived-route-fallback.js +16 -0
  40. package/dist/core/runner/prepare-acquire-reconcile.d.ts +1 -1
  41. package/dist/core/runner/prepare-announce-once.d.ts +83 -0
  42. package/dist/core/runner/prepare-announce-once.js +105 -0
  43. package/dist/core/runner/prepare-caps-and-workflow.d.ts +170 -0
  44. package/dist/core/runner/prepare-caps-and-workflow.js +255 -0
  45. package/dist/core/runner/prepare-config-doors.d.ts +2 -10
  46. package/dist/core/runner/prepare-defer-classify.d.ts +86 -0
  47. package/dist/core/runner/prepare-defer-classify.js +107 -0
  48. package/dist/core/runner/prepare-delegation-surface.d.ts +104 -0
  49. package/dist/core/runner/prepare-delegation-surface.js +144 -0
  50. package/dist/core/runner/prepare-execution-env.d.ts +54 -0
  51. package/dist/core/runner/prepare-execution-env.js +86 -0
  52. package/dist/core/runner/prepare-file-history.d.ts +95 -0
  53. package/dist/core/runner/prepare-file-history.js +383 -0
  54. package/dist/core/runner/prepare-hands-readface.d.ts +6 -8
  55. package/dist/core/runner/prepare-hands-readface.js +3 -3
  56. package/dist/core/runner/prepare-inherited-gate.d.ts +268 -0
  57. package/dist/core/runner/prepare-inherited-gate.js +266 -0
  58. package/dist/core/runner/prepare-listings.d.ts +77 -0
  59. package/dist/core/runner/prepare-listings.js +76 -0
  60. package/dist/core/runner/prepare-lsp.d.ts +55 -0
  61. package/dist/core/runner/prepare-lsp.js +27 -0
  62. package/dist/core/runner/prepare-memory.d.ts +1 -1
  63. package/dist/core/runner/prepare-offload-wrappers.d.ts +62 -0
  64. package/dist/core/runner/prepare-offload-wrappers.js +45 -0
  65. package/dist/core/runner/prepare-permission-rules.d.ts +132 -0
  66. package/dist/core/runner/prepare-permission-rules.js +140 -0
  67. package/dist/core/runner/prepare-project-context.d.ts +131 -0
  68. package/dist/core/runner/prepare-project-context.js +150 -0
  69. package/dist/core/runner/prepare-prompt-inputs.d.ts +138 -0
  70. package/dist/core/runner/prepare-prompt-inputs.js +141 -0
  71. package/dist/core/runner/prepare-protocol-tools.d.ts +91 -0
  72. package/dist/core/runner/prepare-protocol-tools.js +182 -0
  73. package/dist/core/runner/prepare-question-face.d.ts +119 -0
  74. package/dist/core/runner/prepare-question-face.js +83 -0
  75. package/dist/core/runner/prepare-run-refs.d.ts +89 -0
  76. package/dist/core/runner/prepare-run-refs.js +39 -0
  77. package/dist/core/runner/prepare-safety-scan.d.ts +3 -2
  78. package/dist/core/runner/prepare-task.d.ts +11 -1815
  79. package/dist/core/runner/prepare-task.js +138 -2542
  80. package/dist/core/runner/prepare-tool-disclosure-mount.d.ts +111 -0
  81. package/dist/core/runner/prepare-tool-disclosure-mount.js +219 -0
  82. package/dist/core/runner/prepare-wiring-manifest.d.ts +184 -0
  83. package/dist/core/runner/prepare-wiring-manifest.js +240 -0
  84. package/dist/core/runner/prepare-workspace-restore.d.ts +1 -27
  85. package/dist/core/runner/prepare-workspace-restore.js +1 -22
  86. package/dist/core/runner/rollback-stack.d.ts +32 -0
  87. package/dist/core/runner/rollback-stack.js +30 -0
  88. package/dist/core/runner/runtask.d.ts +11 -2
  89. package/dist/core/runner/runtask.js +27 -9
  90. package/dist/core/runner/workspace-path.d.ts +33 -0
  91. package/dist/core/runner/workspace-path.js +22 -0
  92. package/dist/core/sensitive-path-policy.d.ts +16 -0
  93. package/dist/core/sensitive-path-policy.js +1 -1
  94. package/dist/core/tool-policy.d.ts +57 -9
  95. package/dist/core/tool-policy.js +11 -0
  96. package/dist/core/types.d.ts +63 -51
  97. package/dist/core/wiring-manifest.d.ts +40 -3
  98. package/dist/core/wiring-manifest.js +4 -3
  99. package/dist/core/write-protect.d.ts +13 -2
  100. package/dist/core/write-protect.js +58 -29
  101. package/dist/engine/harness/types.d.ts +38 -16
  102. package/dist/engine/harness/types.js +25 -1
  103. package/dist/engine/session/session.d.ts +3 -11
  104. package/dist/index.d.ts +10 -6
  105. package/dist/index.js +9 -5
  106. package/dist/internal/harness.d.ts +1 -0
  107. package/dist/stores/file/adoption/adopt.d.ts +1 -1
  108. package/dist/stores/file/adoption/marker.d.ts +1 -1
  109. package/dist/stores/file/permission-rule-adopt.js +4 -3
  110. package/dist/stores/file/permission-rule-store.d.ts +65 -25
  111. package/dist/stores/file/permission-rule-store.js +215 -37
  112. package/dist/stores/file/task-list-store.d.ts +1 -1
  113. package/dist/tools/fs/read-face.d.ts +1 -1
  114. package/package.json +8 -2
  115. package/test/export-surface.snapshot.json +76 -28
@@ -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": 2048,
4
+ "count": 2072,
5
5
  "exports": {
6
6
  "A2ATaskState": "type",
7
7
  "A2ATaskStateReversal": "type",
@@ -25,6 +25,7 @@
25
25
  "ARTIFACT_LIMITS": "variable",
26
26
  "ASK_DENY_RESOLUTION_VALUES": "variable",
27
27
  "ASK_EVIDENCE_ABSENCE_VALUES": "variable",
28
+ "ASK_ORIGINS": "variable",
28
29
  "AUTONOMOUS_LOOP_DYNAMIC_SENTINEL": "variable",
29
30
  "AUTONOMOUS_LOOP_PREAMBLE": "variable",
30
31
  "AUTONOMOUS_LOOP_PREAMBLE_PERSISTENT": "variable",
@@ -65,10 +66,12 @@
65
66
  "ApprovalSettledBy": "type",
66
67
  "ArtifactVerifyResult": "type",
67
68
  "AskAnswerContinuationSource": "type",
69
+ "AskCarry": "interface",
68
70
  "AskDelegationProvenance": "interface",
69
71
  "AskDenyResolution": "type",
70
72
  "AskEffective": "type",
71
73
  "AskEvidenceAbsence": "type",
74
+ "AskOrigin": "type",
72
75
  "AskOutcome": "type",
73
76
  "AskQuestion": "interface",
74
77
  "AskQuestionCardDetails": "type",
@@ -311,7 +314,9 @@
311
314
  "DegradingBrainOptions": "type",
312
315
  "DelegationLifecycleEvent": "type",
313
316
  "DelegationTaskType": "type",
317
+ "DenialLimitCounts": "interface",
314
318
  "DenialLimitFallback": "interface",
319
+ "DenialLimitFallbackFace": "type",
315
320
  "DenialLimitVerdict": "type",
316
321
  "DeveloperTaskConfig": "interface",
317
322
  "DistillerCandidate": "interface",
@@ -319,7 +324,9 @@
319
324
  "DistillerChatFn": "type",
320
325
  "DistillerChatRequest": "interface",
321
326
  "DocumentContent": "interface",
322
- "EMPTY_RULE_STORE": "variable",
327
+ "DurableRulePartition": "interface",
328
+ "DurableRulePartitionProvider": "interface",
329
+ "EMPTY_DURABLE_RULE_PARTITION": "variable",
323
330
  "EMPTY_USAGE_WINDOW_RECORD": "variable",
324
331
  "ENGINE_NOTICE_CODES": "variable",
325
332
  "ENTER_PLAN_MODE_TOOL_NAME": "variable",
@@ -335,6 +342,7 @@
335
342
  "EffectiveConfigField": "interface",
336
343
  "EffectiveMemoryScopes": "type",
337
344
  "EffectivePermissionRule": "interface",
345
+ "EffectivePermissionRules": "interface",
338
346
  "Embedder": "interface",
339
347
  "EngineNotice": "interface",
340
348
  "EngineNoticeCode": "type",
@@ -375,6 +383,7 @@
375
383
  "FileBackupCapture": "type",
376
384
  "FileCheckpointStore": "class",
377
385
  "FileCheckpointStoreOptions": "interface",
386
+ "FileDurableRulePartitionProvider": "class",
378
387
  "FileEditedHook": "type",
379
388
  "FileEditedNotice": "interface",
380
389
  "FileError": "class",
@@ -397,7 +406,6 @@
397
406
  "FileMailboxStoreOptions": "interface",
398
407
  "FileMemoryEngineBackend": "class",
399
408
  "FileMemoryStore": "class",
400
- "FilePermissionRuleStoreProvider": "class",
401
409
  "FilePromptArtifactStore": "class",
402
410
  "FilePromptSourceStateStore": "class",
403
411
  "FileRestoreApplyOptions": "interface",
@@ -463,16 +471,16 @@
463
471
  "ImportedSettingsLayer": "type",
464
472
  "InMemoryBackgroundAgentStore": "class",
465
473
  "InMemoryCheckpointStore": "class",
474
+ "InMemoryDurableRulePartition": "class",
466
475
  "InMemoryFileHistoryStore": "class",
467
476
  "InMemoryFileHistoryStoreOptions": "interface",
468
477
  "InMemoryMailboxStore": "class",
469
478
  "InMemoryMemoryStore": "class",
470
479
  "InMemoryPeerDirectory": "interface",
471
- "InMemoryPermissionRuleStore": "class",
472
480
  "InMemoryRuleApprovalRecordStore": "class",
473
481
  "InMemorySessionPolicyStore": "class",
474
482
  "InMemorySessionRepo": "class",
475
- "InMemorySessionRuleOverlay": "class",
483
+ "InMemorySessionRulePartition": "class",
476
484
  "InMemorySessionStorage": "class",
477
485
  "InMemoryStrategyStore": "class",
478
486
  "InMemoryToolResultStore": "class",
@@ -547,6 +555,7 @@
547
555
  "MAX_STEER_INPUT_ID_CHARS": "variable",
548
556
  "MAX_SUPPORTED_CHECKPOINT_VERSION": "variable",
549
557
  "MAX_WORKFLOW_ITEMS": "variable",
558
+ "MCP_FAILURE_CODES": "variable",
550
559
  "MCP_IMAGE_MAX_BASE64": "variable",
551
560
  "MCP_NAMESPACE": "variable",
552
561
  "MCP_PREFIX": "variable",
@@ -599,6 +608,7 @@
599
608
  "MaybeCompactOptions": "interface",
600
609
  "McpElicitRequest": "interface",
601
610
  "McpElicitResponse": "interface",
611
+ "McpFailureCode": "type",
602
612
  "McpImageResizer": "type",
603
613
  "McpRefreshResult": "interface",
604
614
  "McpServerSpec": "interface",
@@ -691,6 +701,7 @@
691
701
  "ORG_ADJUDICATION_TIMEOUT_MS": "variable",
692
702
  "ORG_ADMISSION_CHECKPOINT_VERSION": "variable",
693
703
  "ORG_RULE_DECISION_REASON": "variable",
704
+ "ORG_STATE_FILE": "variable",
694
705
  "ORG_UNAVAILABLE_DECISION_REASON": "variable",
695
706
  "ORPHAN_ADOPT_MAX_DEFAULT": "variable",
696
707
  "ORPHAN_ADOPT_WINDOW_MS_DEFAULT": "variable",
@@ -712,13 +723,13 @@
712
723
  "OracleVerdict": "type",
713
724
  "OrchestrationEnv": "interface",
714
725
  "OrchestrationMode": "type",
715
- "OrgOverlayResolution": "interface",
716
- "OrgOverlayStatus": "type",
717
726
  "OrgPermissionRule": "interface",
718
- "OrgRuleOverlay": "interface",
727
+ "OrgRulePartitionConfig": "interface",
728
+ "OrgRuleResolution": "interface",
719
729
  "OrgRuleSnapshot": "interface",
720
730
  "OrgRuleSnapshotProvider": "interface",
721
731
  "OrgRuleStatePersistence": "interface",
732
+ "OrgRuleStatus": "type",
722
733
  "OriginClearanceEvent": "interface",
723
734
  "OriginClearanceRow": "interface",
724
735
  "OriginClearanceShadow": "interface",
@@ -841,6 +852,7 @@
841
852
  "PermissionRuleIssue": "interface",
842
853
  "PermissionRulePolicyOptions": "interface",
843
854
  "PermissionRuleStore": "interface",
855
+ "PermissionRuleStoreConfig": "interface",
844
856
  "PermissionRuleStoreProvider": "interface",
845
857
  "PermissionRuleSyncContractHooks": "interface",
846
858
  "PermissionRuleSyncResult": "interface",
@@ -961,6 +973,7 @@
961
973
  "RemoteMemoryBaseline": "interface",
962
974
  "RemoteMemoryFile": "interface",
963
975
  "RemoveResult": "type",
976
+ "RemovedPermissionRule": "interface",
964
977
  "ReopenReason": "type",
965
978
  "RepairBundle": "interface",
966
979
  "RepairLoopConfig": "interface",
@@ -1029,6 +1042,7 @@
1029
1042
  "RuleReject": "interface",
1030
1043
  "RuleRejectCode": "type",
1031
1044
  "RuleScope": "type",
1045
+ "RuleSource": "type",
1032
1046
  "RuleSyncDrop": "interface",
1033
1047
  "RuleSyncDropReason": "type",
1034
1048
  "RuleSyncFrontier": "type",
@@ -1040,6 +1054,7 @@
1040
1054
  "RuleTicket": "type",
1041
1055
  "RuleTombstone": "interface",
1042
1056
  "RuleWriteDelta": "type",
1057
+ "RuleWriteOutcome": "type",
1043
1058
  "RunInternals": "interface",
1044
1059
  "RunMemoryConsolidationOptions": "interface",
1045
1060
  "RunScenarioOptions": "interface",
@@ -1129,9 +1144,9 @@
1129
1144
  "SessionPolicyError": "class",
1130
1145
  "SessionPolicyStore": "interface",
1131
1146
  "SessionRepo": "interface",
1132
- "SessionRuleOverlay": "interface",
1133
- "SessionRuleOverlayAdd": "interface",
1134
- "SessionRuleOverlayApplyResult": "type",
1147
+ "SessionRuleAdd": "interface",
1148
+ "SessionRuleApplyResult": "type",
1149
+ "SessionRulePartition": "interface",
1135
1150
  "SessionRulesRecord": "interface",
1136
1151
  "SessionStorage": "interface",
1137
1152
  "SessionStore": "interface",
@@ -1284,6 +1299,7 @@
1284
1299
  "UNCOVERED_SEGMENT_REASON_BASELINE": "variable",
1285
1300
  "URL_SAFETY": "variable",
1286
1301
  "USAGE_WINDOW_REAP_MARGIN_MS": "variable",
1302
+ "UnarmedDenialLimitFallback": "interface",
1287
1303
  "UncoveredSegmentDetail": "interface",
1288
1304
  "UnifiedTaskOutput": "interface",
1289
1305
  "UnifiedTaskResult": "type",
@@ -1327,6 +1343,7 @@
1327
1343
  "WiringFacts": "interface",
1328
1344
  "WiringLegKind": "type",
1329
1345
  "WiringManifest": "interface",
1346
+ "WiringManifestMcpEntry": "interface",
1330
1347
  "WorkerErrorClass": "type",
1331
1348
  "WorkflowAgentBlockedError": "class",
1332
1349
  "WorkflowAgentHandle": "interface",
@@ -1370,7 +1387,7 @@
1370
1387
  "WorkspaceHandle": "interface",
1371
1388
  "WorktreeSessionRef": "interface",
1372
1389
  "WorktreeToolsOptions": "interface",
1373
- "WritablePermissionRuleStore": "interface",
1390
+ "WritableDurableRulePartition": "interface",
1374
1391
  "WriteExpectation": "interface",
1375
1392
  "WriteProtectedEntry": "type",
1376
1393
  "WriteProtectedHit": "interface",
@@ -1459,6 +1476,7 @@
1459
1476
  "checkpointStoreContract": "function",
1460
1477
  "checkpointVersionOf": "function",
1461
1478
  "clampHopChain": "function",
1479
+ "classifierMayAnswer": "function",
1462
1480
  "classifyCompoundReadonly": "function",
1463
1481
  "classifyCompoundReadonlyDetailed": "function",
1464
1482
  "classifyHttp": "function",
@@ -1527,7 +1545,6 @@
1527
1545
  "createMonitorTool": "function",
1528
1546
  "createOpenAIBrain": "function",
1529
1547
  "createOpenResponsesBrain": "function",
1530
- "createOrgRuleOverlay": "function",
1531
1548
  "createPeerAdmission": "function",
1532
1549
  "createPeerHeldQueue": "function",
1533
1550
  "createPeerIdleRequester": "function",
@@ -1535,6 +1552,7 @@
1535
1552
  "createPeerInboundChainRef": "function",
1536
1553
  "createPeerSelfRef": "function",
1537
1554
  "createPermissionRulePolicy": "function",
1555
+ "createPermissionRuleStoreProvider": "function",
1538
1556
  "createPreToolUseConstraintPolicy": "function",
1539
1557
  "createRoutingBrain": "function",
1540
1558
  "createRunWorkflowTool": "function",
@@ -1603,6 +1621,7 @@
1603
1621
  "durableParkGapFor": "function",
1604
1622
  "durableParkGapOf": "function",
1605
1623
  "editBudget": "function",
1624
+ "effectiveOrThrow": "function",
1606
1625
  "effectivePermissionRules": "function",
1607
1626
  "emitTaskOutcome": "function",
1608
1627
  "emitTrace": "function",
@@ -1683,6 +1702,7 @@
1683
1702
  "isAliasModelId": "function",
1684
1703
  "isApprovalSettledBy": "function",
1685
1704
  "isAskDenyResolution": "function",
1705
+ "isAskOrigin": "function",
1686
1706
  "isCanonicalPeerAddress": "function",
1687
1707
  "isCrossSessionInboundSetting": "function",
1688
1708
  "isDelegatedAgentTerminal": "function",
@@ -1747,6 +1767,7 @@
1747
1767
  "materializeEntriesToFiles": "function",
1748
1768
  "materializeMcpTools": "function",
1749
1769
  "maybeCompact": "function",
1770
+ "mcpFailureCodeOf": "function",
1750
1771
  "memoryBackendContract": "function",
1751
1772
  "memoryCaptureOptOutUnpersistedNotice": "function",
1752
1773
  "memoryCaptureOptedOutNotice": "function",
@@ -1788,7 +1809,7 @@
1788
1809
  "ok": "function",
1789
1810
  "openAiCompatChatSeat": "function",
1790
1811
  "openSystemReminder": "function",
1791
- "orgRuleStatePersistenceOf": "function",
1812
+ "orgRuleShadows": "function",
1792
1813
  "orgRuleVerdictFor": "function",
1793
1814
  "originEquals": "function",
1794
1815
  "oversizeJournalResult": "function",
@@ -1937,6 +1958,7 @@
1937
1958
  "routeRefusalText": "function",
1938
1959
  "ruleAdmitsCommand": "function",
1939
1960
  "ruleOffersOfRecord": "function",
1961
+ "ruleSourceOf": "function",
1940
1962
  "ruleSyncVector": "function",
1941
1963
  "runCascade": "function",
1942
1964
  "runDeveloperTask": "function",
@@ -2021,7 +2043,9 @@
2021
2043
  "trimDegenerateTail": "function",
2022
2044
  "truncateError": "function",
2023
2045
  "truncateIndex": "function",
2046
+ "unarmedWindow": "function",
2024
2047
  "uncachedInputTokensOf": "function",
2048
+ "unenforceableOrgRules": "function",
2025
2049
  "untrustedEgressForHuman": "function",
2026
2050
  "usageRetryAfterMs": "function",
2027
2051
  "uuidv7": "function",
@@ -2075,6 +2099,7 @@
2075
2099
  "ARTIFACT_LIMITS": "advanced",
2076
2100
  "ASK_DENY_RESOLUTION_VALUES": "advanced",
2077
2101
  "ASK_EVIDENCE_ABSENCE_VALUES": "advanced",
2102
+ "ASK_ORIGINS": "advanced",
2078
2103
  "AUTONOMOUS_LOOP_DYNAMIC_SENTINEL": "advanced",
2079
2104
  "AUTONOMOUS_LOOP_PREAMBLE": "advanced",
2080
2105
  "AUTONOMOUS_LOOP_PREAMBLE_PERSISTENT": "advanced",
@@ -2115,10 +2140,12 @@
2115
2140
  "ApprovalSettledBy": "stable",
2116
2141
  "ArtifactVerifyResult": "advanced",
2117
2142
  "AskAnswerContinuationSource": "advanced",
2143
+ "AskCarry": "advanced",
2118
2144
  "AskDelegationProvenance": "advanced",
2119
2145
  "AskDenyResolution": "advanced",
2120
2146
  "AskEffective": "advanced",
2121
2147
  "AskEvidenceAbsence": "advanced",
2148
+ "AskOrigin": "advanced",
2122
2149
  "AskOutcome": "advanced",
2123
2150
  "AskQuestion": "advanced",
2124
2151
  "AskQuestionCardDetails": "advanced",
@@ -2361,7 +2388,9 @@
2361
2388
  "DegradingBrainOptions": "advanced",
2362
2389
  "DelegationLifecycleEvent": "advanced",
2363
2390
  "DelegationTaskType": "advanced",
2391
+ "DenialLimitCounts": "advanced",
2364
2392
  "DenialLimitFallback": "advanced",
2393
+ "DenialLimitFallbackFace": "advanced",
2365
2394
  "DenialLimitVerdict": "advanced",
2366
2395
  "DeveloperTaskConfig": "advanced",
2367
2396
  "DistillerCandidate": "advanced",
@@ -2369,7 +2398,9 @@
2369
2398
  "DistillerChatFn": "advanced",
2370
2399
  "DistillerChatRequest": "advanced",
2371
2400
  "DocumentContent": "advanced",
2372
- "EMPTY_RULE_STORE": "advanced",
2401
+ "DurableRulePartition": "advanced",
2402
+ "DurableRulePartitionProvider": "advanced",
2403
+ "EMPTY_DURABLE_RULE_PARTITION": "advanced",
2373
2404
  "EMPTY_USAGE_WINDOW_RECORD": "advanced",
2374
2405
  "ENGINE_NOTICE_CODES": "advanced",
2375
2406
  "ENTER_PLAN_MODE_TOOL_NAME": "advanced",
@@ -2385,6 +2416,7 @@
2385
2416
  "EffectiveConfigField": "advanced",
2386
2417
  "EffectiveMemoryScopes": "advanced",
2387
2418
  "EffectivePermissionRule": "advanced",
2419
+ "EffectivePermissionRules": "advanced",
2388
2420
  "Embedder": "advanced",
2389
2421
  "EngineNotice": "advanced",
2390
2422
  "EngineNoticeCode": "advanced",
@@ -2425,6 +2457,7 @@
2425
2457
  "FileBackupCapture": "advanced",
2426
2458
  "FileCheckpointStore": "stable",
2427
2459
  "FileCheckpointStoreOptions": "advanced",
2460
+ "FileDurableRulePartitionProvider": "advanced",
2428
2461
  "FileEditedHook": "advanced",
2429
2462
  "FileEditedNotice": "advanced",
2430
2463
  "FileError": "stable",
@@ -2447,7 +2480,6 @@
2447
2480
  "FileMailboxStoreOptions": "advanced",
2448
2481
  "FileMemoryEngineBackend": "stable",
2449
2482
  "FileMemoryStore": "advanced",
2450
- "FilePermissionRuleStoreProvider": "advanced",
2451
2483
  "FilePromptArtifactStore": "advanced",
2452
2484
  "FilePromptSourceStateStore": "advanced",
2453
2485
  "FileRestoreApplyOptions": "advanced",
@@ -2513,16 +2545,16 @@
2513
2545
  "ImportedSettingsLayer": "advanced",
2514
2546
  "InMemoryBackgroundAgentStore": "advanced",
2515
2547
  "InMemoryCheckpointStore": "stable",
2548
+ "InMemoryDurableRulePartition": "advanced",
2516
2549
  "InMemoryFileHistoryStore": "advanced",
2517
2550
  "InMemoryFileHistoryStoreOptions": "advanced",
2518
2551
  "InMemoryMailboxStore": "advanced",
2519
2552
  "InMemoryMemoryStore": "stable",
2520
2553
  "InMemoryPeerDirectory": "advanced",
2521
- "InMemoryPermissionRuleStore": "advanced",
2522
2554
  "InMemoryRuleApprovalRecordStore": "advanced",
2523
2555
  "InMemorySessionPolicyStore": "advanced",
2524
2556
  "InMemorySessionRepo": "internal",
2525
- "InMemorySessionRuleOverlay": "advanced",
2557
+ "InMemorySessionRulePartition": "advanced",
2526
2558
  "InMemorySessionStorage": "internal",
2527
2559
  "InMemoryStrategyStore": "advanced",
2528
2560
  "InMemoryToolResultStore": "stable",
@@ -2597,6 +2629,7 @@
2597
2629
  "MAX_STEER_INPUT_ID_CHARS": "advanced",
2598
2630
  "MAX_SUPPORTED_CHECKPOINT_VERSION": "advanced",
2599
2631
  "MAX_WORKFLOW_ITEMS": "advanced",
2632
+ "MCP_FAILURE_CODES": "advanced",
2600
2633
  "MCP_IMAGE_MAX_BASE64": "advanced",
2601
2634
  "MCP_NAMESPACE": "advanced",
2602
2635
  "MCP_PREFIX": "advanced",
@@ -2649,6 +2682,7 @@
2649
2682
  "MaybeCompactOptions": "advanced",
2650
2683
  "McpElicitRequest": "advanced",
2651
2684
  "McpElicitResponse": "advanced",
2685
+ "McpFailureCode": "advanced",
2652
2686
  "McpImageResizer": "advanced",
2653
2687
  "McpRefreshResult": "advanced",
2654
2688
  "McpServerSpec": "advanced",
@@ -2741,6 +2775,7 @@
2741
2775
  "ORG_ADJUDICATION_TIMEOUT_MS": "advanced",
2742
2776
  "ORG_ADMISSION_CHECKPOINT_VERSION": "advanced",
2743
2777
  "ORG_RULE_DECISION_REASON": "advanced",
2778
+ "ORG_STATE_FILE": "advanced",
2744
2779
  "ORG_UNAVAILABLE_DECISION_REASON": "advanced",
2745
2780
  "ORPHAN_ADOPT_MAX_DEFAULT": "advanced",
2746
2781
  "ORPHAN_ADOPT_WINDOW_MS_DEFAULT": "advanced",
@@ -2762,13 +2797,13 @@
2762
2797
  "OracleVerdict": "advanced",
2763
2798
  "OrchestrationEnv": "advanced",
2764
2799
  "OrchestrationMode": "advanced",
2765
- "OrgOverlayResolution": "stable",
2766
- "OrgOverlayStatus": "advanced",
2767
2800
  "OrgPermissionRule": "stable",
2768
- "OrgRuleOverlay": "stable",
2801
+ "OrgRulePartitionConfig": "advanced",
2802
+ "OrgRuleResolution": "stable",
2769
2803
  "OrgRuleSnapshot": "stable",
2770
2804
  "OrgRuleSnapshotProvider": "stable",
2771
2805
  "OrgRuleStatePersistence": "stable",
2806
+ "OrgRuleStatus": "advanced",
2772
2807
  "OriginClearanceEvent": "advanced",
2773
2808
  "OriginClearanceRow": "advanced",
2774
2809
  "OriginClearanceShadow": "advanced",
@@ -2891,7 +2926,8 @@
2891
2926
  "PermissionRuleIssue": "advanced",
2892
2927
  "PermissionRulePolicyOptions": "advanced",
2893
2928
  "PermissionRuleStore": "advanced",
2894
- "PermissionRuleStoreProvider": "advanced",
2929
+ "PermissionRuleStoreConfig": "stable",
2930
+ "PermissionRuleStoreProvider": "stable",
2895
2931
  "PermissionRuleSyncContractHooks": "advanced",
2896
2932
  "PermissionRuleSyncResult": "advanced",
2897
2933
  "PermissionRuleSyncTransport": "advanced",
@@ -3011,6 +3047,7 @@
3011
3047
  "RemoteMemoryBaseline": "advanced",
3012
3048
  "RemoteMemoryFile": "advanced",
3013
3049
  "RemoveResult": "advanced",
3050
+ "RemovedPermissionRule": "advanced",
3014
3051
  "ReopenReason": "stable",
3015
3052
  "RepairBundle": "advanced",
3016
3053
  "RepairLoopConfig": "advanced",
@@ -3079,6 +3116,7 @@
3079
3116
  "RuleReject": "advanced",
3080
3117
  "RuleRejectCode": "advanced",
3081
3118
  "RuleScope": "advanced",
3119
+ "RuleSource": "advanced",
3082
3120
  "RuleSyncDrop": "advanced",
3083
3121
  "RuleSyncDropReason": "advanced",
3084
3122
  "RuleSyncFrontier": "advanced",
@@ -3090,6 +3128,7 @@
3090
3128
  "RuleTicket": "advanced",
3091
3129
  "RuleTombstone": "advanced",
3092
3130
  "RuleWriteDelta": "advanced",
3131
+ "RuleWriteOutcome": "advanced",
3093
3132
  "RunInternals": "internal",
3094
3133
  "RunMemoryConsolidationOptions": "advanced",
3095
3134
  "RunScenarioOptions": "advanced",
@@ -3179,9 +3218,9 @@
3179
3218
  "SessionPolicyError": "advanced",
3180
3219
  "SessionPolicyStore": "advanced",
3181
3220
  "SessionRepo": "stable",
3182
- "SessionRuleOverlay": "advanced",
3183
- "SessionRuleOverlayAdd": "advanced",
3184
- "SessionRuleOverlayApplyResult": "advanced",
3221
+ "SessionRuleAdd": "advanced",
3222
+ "SessionRuleApplyResult": "advanced",
3223
+ "SessionRulePartition": "advanced",
3185
3224
  "SessionRulesRecord": "advanced",
3186
3225
  "SessionStorage": "internal",
3187
3226
  "SessionStore": "advanced",
@@ -3334,6 +3373,7 @@
3334
3373
  "UNCOVERED_SEGMENT_REASON_BASELINE": "advanced",
3335
3374
  "URL_SAFETY": "advanced",
3336
3375
  "USAGE_WINDOW_REAP_MARGIN_MS": "internal",
3376
+ "UnarmedDenialLimitFallback": "advanced",
3337
3377
  "UncoveredSegmentDetail": "advanced",
3338
3378
  "UnifiedTaskOutput": "advanced",
3339
3379
  "UnifiedTaskResult": "advanced",
@@ -3377,6 +3417,7 @@
3377
3417
  "WiringFacts": "advanced",
3378
3418
  "WiringLegKind": "advanced",
3379
3419
  "WiringManifest": "stable",
3420
+ "WiringManifestMcpEntry": "advanced",
3380
3421
  "WorkerErrorClass": "advanced",
3381
3422
  "WorkflowAgentBlockedError": "advanced",
3382
3423
  "WorkflowAgentHandle": "advanced",
@@ -3420,7 +3461,7 @@
3420
3461
  "WorkspaceHandle": "advanced",
3421
3462
  "WorktreeSessionRef": "advanced",
3422
3463
  "WorktreeToolsOptions": "advanced",
3423
- "WritablePermissionRuleStore": "advanced",
3464
+ "WritableDurableRulePartition": "advanced",
3424
3465
  "WriteExpectation": "internal",
3425
3466
  "WriteProtectedEntry": "advanced",
3426
3467
  "WriteProtectedHit": "advanced",
@@ -3509,6 +3550,7 @@
3509
3550
  "checkpointStoreContract": "advanced",
3510
3551
  "checkpointVersionOf": "advanced",
3511
3552
  "clampHopChain": "advanced",
3553
+ "classifierMayAnswer": "advanced",
3512
3554
  "classifyCompoundReadonly": "advanced",
3513
3555
  "classifyCompoundReadonlyDetailed": "advanced",
3514
3556
  "classifyHttp": "advanced",
@@ -3577,7 +3619,6 @@
3577
3619
  "createMonitorTool": "advanced",
3578
3620
  "createOpenAIBrain": "stable",
3579
3621
  "createOpenResponsesBrain": "advanced",
3580
- "createOrgRuleOverlay": "stable",
3581
3622
  "createPeerAdmission": "advanced",
3582
3623
  "createPeerHeldQueue": "advanced",
3583
3624
  "createPeerIdleRequester": "advanced",
@@ -3585,6 +3626,7 @@
3585
3626
  "createPeerInboundChainRef": "advanced",
3586
3627
  "createPeerSelfRef": "advanced",
3587
3628
  "createPermissionRulePolicy": "advanced",
3629
+ "createPermissionRuleStoreProvider": "stable",
3588
3630
  "createPreToolUseConstraintPolicy": "advanced",
3589
3631
  "createRoutingBrain": "stable",
3590
3632
  "createRunWorkflowTool": "advanced",
@@ -3653,6 +3695,7 @@
3653
3695
  "durableParkGapFor": "advanced",
3654
3696
  "durableParkGapOf": "advanced",
3655
3697
  "editBudget": "advanced",
3698
+ "effectiveOrThrow": "advanced",
3656
3699
  "effectivePermissionRules": "advanced",
3657
3700
  "emitTaskOutcome": "advanced",
3658
3701
  "emitTrace": "advanced",
@@ -3733,6 +3776,7 @@
3733
3776
  "isAliasModelId": "advanced",
3734
3777
  "isApprovalSettledBy": "advanced",
3735
3778
  "isAskDenyResolution": "advanced",
3779
+ "isAskOrigin": "advanced",
3736
3780
  "isCanonicalPeerAddress": "advanced",
3737
3781
  "isCrossSessionInboundSetting": "advanced",
3738
3782
  "isDelegatedAgentTerminal": "advanced",
@@ -3797,6 +3841,7 @@
3797
3841
  "materializeEntriesToFiles": "advanced",
3798
3842
  "materializeMcpTools": "stable",
3799
3843
  "maybeCompact": "advanced",
3844
+ "mcpFailureCodeOf": "advanced",
3800
3845
  "memoryBackendContract": "stable",
3801
3846
  "memoryCaptureOptOutUnpersistedNotice": "advanced",
3802
3847
  "memoryCaptureOptedOutNotice": "advanced",
@@ -3838,7 +3883,7 @@
3838
3883
  "ok": "stable",
3839
3884
  "openAiCompatChatSeat": "advanced",
3840
3885
  "openSystemReminder": "advanced",
3841
- "orgRuleStatePersistenceOf": "advanced",
3886
+ "orgRuleShadows": "advanced",
3842
3887
  "orgRuleVerdictFor": "advanced",
3843
3888
  "originEquals": "stable",
3844
3889
  "oversizeJournalResult": "advanced",
@@ -3987,6 +4032,7 @@
3987
4032
  "routeRefusalText": "advanced",
3988
4033
  "ruleAdmitsCommand": "advanced",
3989
4034
  "ruleOffersOfRecord": "advanced",
4035
+ "ruleSourceOf": "advanced",
3990
4036
  "ruleSyncVector": "advanced",
3991
4037
  "runCascade": "advanced",
3992
4038
  "runDeveloperTask": "advanced",
@@ -4071,7 +4117,9 @@
4071
4117
  "trimDegenerateTail": "advanced",
4072
4118
  "truncateError": "advanced",
4073
4119
  "truncateIndex": "advanced",
4120
+ "unarmedWindow": "advanced",
4074
4121
  "uncachedInputTokensOf": "internal",
4122
+ "unenforceableOrgRules": "advanced",
4075
4123
  "untrustedEgressForHuman": "advanced",
4076
4124
  "usageRetryAfterMs": "advanced",
4077
4125
  "uuidv7": "stable",