@sema-agent/core 7.7.0 → 7.9.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 (186) hide show
  1. package/CHANGELOG.md +88 -0
  2. package/dist/agents/agent-transcript-tool.js +2 -2
  3. package/dist/agents/list-agents-tool.js +2 -3
  4. package/dist/agents/observer.js +2 -2
  5. package/dist/agents/send-message-tool.js +2 -1
  6. package/dist/agents/subagent-steps.js +5 -4
  7. package/dist/agents/subagent.d.ts +1 -1
  8. package/dist/agents/subagent.js +2 -3
  9. package/dist/core/ask-origin.d.ts +12 -1
  10. package/dist/core/ask-origin.js +5 -1
  11. package/dist/core/ask-question.js +2 -2
  12. package/dist/core/checkpoint-store.d.ts +64 -24
  13. package/dist/core/context-edit.d.ts +0 -22
  14. package/dist/core/context-edit.js +2 -11
  15. package/dist/core/engine-notice.d.ts +6 -0
  16. package/dist/core/fs-write-gate-policy.d.ts +7 -1
  17. package/dist/core/fs-write-gate-policy.js +7 -7
  18. package/dist/core/gate-fold.js +2 -2
  19. package/dist/core/gate-lanes.js +53 -26
  20. package/dist/core/gate-outcome.d.ts +8 -4
  21. package/dist/core/gate-outcome.js +2 -1
  22. package/dist/core/governance-codes.d.ts +1 -1
  23. package/dist/core/governance-codes.js +6 -0
  24. package/dist/core/hooks.d.ts +64 -33
  25. package/dist/core/hooks.js +1 -1
  26. package/dist/core/lsp.js +2 -2
  27. package/dist/core/mcp-server-spec.d.ts +17 -0
  28. package/dist/core/mcp.js +3 -1
  29. package/dist/core/memory-engine/tools.js +4 -12
  30. package/dist/core/permission-rule-consent.d.ts +29 -36
  31. package/dist/core/permission-rule-consent.js +110 -60
  32. package/dist/core/permission-rule-model.d.ts +254 -55
  33. package/dist/core/permission-rule-model.js +323 -43
  34. package/dist/core/permission-rule-org.d.ts +9 -8
  35. package/dist/core/permission-rule-org.js +6 -15
  36. package/dist/core/permission-rule-provider.d.ts +10 -6
  37. package/dist/core/permission-rule-provider.js +12 -8
  38. package/dist/core/permission-rule-session.d.ts +7 -6
  39. package/dist/core/permission-rule-session.js +29 -10
  40. package/dist/core/permission-rule-store.d.ts +40 -18
  41. package/dist/core/permission-rule-store.js +68 -42
  42. package/dist/core/permission-rule-sync.d.ts +9 -3
  43. package/dist/core/permission-rule-sync.js +29 -25
  44. package/dist/core/permission-rule-syntax.d.ts +30 -0
  45. package/dist/core/permission-rule-syntax.js +44 -0
  46. package/dist/core/permission-rules.d.ts +85 -33
  47. package/dist/core/permission-rules.js +104 -88
  48. package/dist/core/persisted-rule-arms.d.ts +56 -0
  49. package/dist/core/persisted-rule-arms.js +48 -0
  50. package/dist/core/present-plan-tool.js +3 -4
  51. package/dist/core/runner/active-skill-scope.js +7 -4
  52. package/dist/core/runner/compaction-call-options.d.ts +1 -1
  53. package/dist/core/runner/contracts.d.ts +46 -3
  54. package/dist/core/runner/permission-rule-lanes.d.ts +33 -26
  55. package/dist/core/runner/permission-rule-lanes.js +27 -21
  56. package/dist/core/runner/prepare-ask-lane.d.ts +1 -1
  57. package/dist/core/runner/prepare-caps-and-workflow.d.ts +5 -4
  58. package/dist/core/runner/prepare-caps-and-workflow.js +16 -11
  59. package/dist/core/runner/prepare-defer-classify.d.ts +5 -26
  60. package/dist/core/runner/prepare-defer-classify.js +10 -10
  61. package/dist/core/runner/prepare-delegation-surface.d.ts +5 -4
  62. package/dist/core/runner/prepare-delegation-surface.js +15 -17
  63. package/dist/core/runner/prepare-gate-stations.d.ts +4 -1
  64. package/dist/core/runner/prepare-gate-stations.js +4 -2
  65. package/dist/core/runner/prepare-hands-readface.d.ts +3 -2
  66. package/dist/core/runner/prepare-hands-readface.js +3 -2
  67. package/dist/core/runner/prepare-inherited-gate.d.ts +1 -1
  68. package/dist/core/runner/prepare-inherited-gate.js +1 -0
  69. package/dist/core/runner/prepare-lsp.d.ts +4 -3
  70. package/dist/core/runner/prepare-lsp.js +3 -2
  71. package/dist/core/runner/prepare-memory-engine-session.d.ts +4 -4
  72. package/dist/core/runner/prepare-memory-engine-session.js +4 -2
  73. package/dist/core/runner/prepare-offload-wrappers.js +7 -5
  74. package/dist/core/runner/prepare-park-ask.d.ts +4 -0
  75. package/dist/core/runner/prepare-park-ask.js +4 -1
  76. package/dist/core/runner/prepare-project-context.d.ts +5 -23
  77. package/dist/core/runner/prepare-project-context.js +7 -5
  78. package/dist/core/runner/prepare-prompt-assembly.d.ts +1 -1
  79. package/dist/core/runner/prepare-protocol-tools.d.ts +5 -1
  80. package/dist/core/runner/prepare-protocol-tools.js +38 -21
  81. package/dist/core/runner/prepare-question-face.d.ts +4 -3
  82. package/dist/core/runner/prepare-question-face.js +5 -3
  83. package/dist/core/runner/prepare-run-refs.d.ts +16 -0
  84. package/dist/core/runner/prepare-run-refs.js +6 -0
  85. package/dist/core/runner/prepare-safety-scan.js +48 -2
  86. package/dist/core/runner/prepare-task.js +37 -19
  87. package/dist/core/runner/prepare-tool-disclosure-mount.d.ts +5 -2
  88. package/dist/core/runner/prepare-tool-disclosure-mount.js +3 -1
  89. package/dist/core/runner/prepare-wiring-manifest.d.ts +4 -0
  90. package/dist/core/runner/prepare-wiring-manifest.js +3 -8
  91. package/dist/core/runner/resume-admission.d.ts +53 -0
  92. package/dist/core/runner/resume-admission.js +83 -0
  93. package/dist/core/runner/resume-apply.d.ts +50 -0
  94. package/dist/core/runner/resume-apply.js +184 -0
  95. package/dist/core/runner/resume-checkpoint-screen.d.ts +18 -0
  96. package/dist/core/runner/resume-checkpoint-screen.js +108 -0
  97. package/dist/core/runner/resume-claim.d.ts +32 -0
  98. package/dist/core/runner/resume-claim.js +27 -0
  99. package/dist/core/runner/resume-internals-and-config.d.ts +33 -0
  100. package/dist/core/runner/resume-internals-and-config.js +50 -0
  101. package/dist/core/runner/resume-policy-outcome.d.ts +31 -0
  102. package/dist/core/runner/resume-policy-outcome.js +127 -0
  103. package/dist/core/runner/resume-preflight.d.ts +40 -0
  104. package/dist/core/runner/resume-preflight.js +122 -0
  105. package/dist/core/runner/resume-review-outcome.d.ts +30 -0
  106. package/dist/core/runner/resume-review-outcome.js +88 -0
  107. package/dist/core/runner/run-harness-handlers.d.ts +46 -0
  108. package/dist/core/runner/run-harness-handlers.js +345 -0
  109. package/dist/core/runner/run-turn-boundary.d.ts +69 -0
  110. package/dist/core/runner/run-turn-boundary.js +694 -0
  111. package/dist/core/runner/runtask.d.ts +20 -0
  112. package/dist/core/runner/runtask.js +129 -1774
  113. package/dist/core/runner/session-rule-policy.js +9 -4
  114. package/dist/core/runner/synthetic-tools.js +5 -8
  115. package/dist/core/runner/tool-disclosure.d.ts +4 -0
  116. package/dist/core/runner/tool-disclosure.js +9 -5
  117. package/dist/core/runner/tool-end-body.d.ts +12 -5
  118. package/dist/core/runner/tool-end-body.js +8 -7
  119. package/dist/core/runner/tool-face-overlay.d.ts +40 -0
  120. package/dist/core/runner/tool-face-overlay.js +125 -0
  121. package/dist/core/runner/tool-output-projection.d.ts +14 -1
  122. package/dist/core/runner/tool-output-projection.js +24 -18
  123. package/dist/core/runner/turn-attachments.d.ts +2 -2
  124. package/dist/core/sensitive-path-policy.d.ts +3 -0
  125. package/dist/core/sensitive-path-policy.js +6 -5
  126. package/dist/core/shared-memory/tools.js +3 -6
  127. package/dist/core/store-contracts/checkpoint-store-contract.js +23 -0
  128. package/dist/core/store-contracts/permission-rule-sync-contract.js +29 -10
  129. package/dist/core/task-event.d.ts +10 -0
  130. package/dist/core/task-registry.js +4 -5
  131. package/dist/core/task-spec.d.ts +8 -0
  132. package/dist/core/tool-catalog-entries.d.ts +48 -0
  133. package/dist/core/tool-catalog-entries.js +174 -0
  134. package/dist/core/tool-conformance.d.ts +22 -0
  135. package/dist/core/tool-conformance.js +37 -0
  136. package/dist/core/tool-face.d.ts +171 -0
  137. package/dist/core/tool-face.js +25 -0
  138. package/dist/core/tool-policy.d.ts +24 -0
  139. package/dist/core/tool-policy.js +4 -2
  140. package/dist/core/tool-registry.d.ts +114 -0
  141. package/dist/core/tool-registry.js +114 -0
  142. package/dist/core/tool-result-budget.d.ts +0 -3
  143. package/dist/core/tool-result-budget.js +4 -3
  144. package/dist/core/tool-result-store.d.ts +0 -18
  145. package/dist/core/tool-result-store.js +2 -18
  146. package/dist/core/tool-roster.d.ts +459 -0
  147. package/dist/core/tool-roster.js +507 -0
  148. package/dist/core/tool-spec.d.ts +54 -3
  149. package/dist/core/tools.js +7 -0
  150. package/dist/core/wiring-manifest.d.ts +13 -0
  151. package/dist/core/wiring-manifest.js +2 -1
  152. package/dist/core/write-protect.d.ts +2 -1
  153. package/dist/core/write-protect.js +5 -4
  154. package/dist/engine/compaction/utils.d.ts +6 -0
  155. package/dist/engine/compaction/utils.js +19 -19
  156. package/dist/engine/loop/types.d.ts +6 -0
  157. package/dist/index.d.ts +17 -6
  158. package/dist/index.js +17 -6
  159. package/dist/orchestration/goal.js +2 -1
  160. package/dist/orchestration/run-spec.js +3 -5
  161. package/dist/orchestration/run-workflow-tool.js +2 -2
  162. package/dist/prompt-assembly/event-registry.js +3 -3
  163. package/dist/prompt-assembly/tool-catalog.d.ts +2 -2
  164. package/dist/stores/file/checkpoint-store.js +1 -1
  165. package/dist/stores/file/permission-rule-store.d.ts +28 -23
  166. package/dist/stores/file/permission-rule-store.js +64 -16
  167. package/dist/tools/fs/bash-readonly-classifier.d.ts +1 -1
  168. package/dist/tools/fs/fs-bash.d.ts +1 -1
  169. package/dist/tools/fs/fs-bash.js +7 -11
  170. package/dist/tools/fs/fs-pdf.d.ts +1 -1
  171. package/dist/tools/fs/fs-read.js +2 -2
  172. package/dist/tools/fs/fs-search-tools.d.ts +0 -7
  173. package/dist/tools/fs/fs-search-tools.js +3 -16
  174. package/dist/tools/fs/fs-write.js +4 -6
  175. package/dist/tools/fs/notebook.d.ts +1 -1
  176. package/dist/tools/fs/repo-map.js +2 -2
  177. package/dist/tools/fs/safety.d.ts +3 -2
  178. package/dist/tools/fs/safety.js +6 -5
  179. package/dist/tools/monitor.js +2 -2
  180. package/dist/tools/scheduler-tools.js +5 -8
  181. package/dist/tools/task-list.js +5 -8
  182. package/dist/tools/todo.js +2 -2
  183. package/dist/tools/web.js +3 -6
  184. package/dist/tools/worktree.js +3 -4
  185. package/package.json +4 -1
  186. package/test/export-surface.snapshot.json +189 -17
@@ -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": 2120,
4
+ "count": 2206,
5
5
  "exports": {
6
6
  "A2ATaskState": "type",
7
7
  "A2ATaskStateReversal": "type",
@@ -20,10 +20,12 @@
20
20
  "AGGREGATE_MEDIA_BUDGET_BYTES": "variable",
21
21
  "AGGREGATE_TOOL_RESULT_BUDGET_CHARS": "variable",
22
22
  "ANNOUNCEMENTS_FILE": "variable",
23
+ "APPROVAL_CARD_REQUIRED_KEYS": "variable",
23
24
  "APPROVER_ATTRIBUTION_MAX_CHARS": "variable",
24
25
  "ARTIFACT_LIMITS": "variable",
25
26
  "ASK_EVIDENCE_ABSENCE_VALUES": "variable",
26
27
  "ASK_ORIGINS": "variable",
28
+ "ASK_USER_QUESTION_TOOL_NAME": "variable",
27
29
  "AUTONOMOUS_LOOP_DYNAMIC_SENTINEL": "variable",
28
30
  "AUTONOMOUS_LOOP_PREAMBLE": "variable",
29
31
  "AUTONOMOUS_LOOP_PREAMBLE_PERSISTENT": "variable",
@@ -152,7 +154,7 @@
152
154
  "CODE_REVIEW_PROMPT": "variable",
153
155
  "CODE_ROLE": "variable",
154
156
  "CODE_SYSTEM_PROMPT": "variable",
155
- "COMPACTABLE_TOOLS": "variable",
157
+ "COMMAND_RULE_TOOL": "variable",
156
158
  "COMPLIANCE_CAPABILITIES": "variable",
157
159
  "CONFIG_CATALOG_VERSION": "variable",
158
160
  "CONSOLIDATION_DEFAULTS": "variable",
@@ -280,7 +282,6 @@
280
282
  "CrossSessionInboundVerdict": "type",
281
283
  "CrossSessionSettingSource": "type",
282
284
  "DECLARE_DONE_TOOL_NAME": "variable",
283
- "DEFAULT_BUDGET_EXEMPT_TOOLS": "variable",
284
285
  "DEFAULT_COMPACTION_INSTRUCTIONS": "variable",
285
286
  "DEFAULT_CONSOLIDATION_BAND": "variable",
286
287
  "DEFAULT_CONSOLIDATION_MAX_NOTES": "variable",
@@ -310,6 +311,7 @@
310
311
  "DISCUSSION_WORKFLOW_NAME": "variable",
311
312
  "DISTILLER_DEFAULT_MAX_INPUTS_PER_PRODUCT": "variable",
312
313
  "DURABLE_AGENT_HANDLE_RE": "variable",
314
+ "DURABLE_HISTORY_NAMES": "variable",
313
315
  "DecisionReason": "type",
314
316
  "DefaultPackDescription": "interface",
315
317
  "DegradationInfo": "interface",
@@ -460,7 +462,7 @@
460
462
  "GovernanceCode": "type",
461
463
  "GovernanceRetryClass": "type",
462
464
  "GraderEnv": "interface",
463
- "HAND_TOOL_EFFECTS": "variable",
465
+ "HANDS_BAND_TAGS": "variable",
464
466
  "HARNESS_SECTION_ANCHOR": "variable",
465
467
  "HandsBandOptions": "interface",
466
468
  "HarvestRejection": "interface",
@@ -601,6 +603,7 @@
601
603
  "MONITOR_DEFAULT_TIMEOUT_MS": "variable",
602
604
  "MONITOR_MAX_BATCHES_PER_MINUTE": "variable",
603
605
  "MONITOR_MAX_TIMEOUT_MS": "variable",
606
+ "MOUNT_TAG_IN_HANDS_BAND": "variable",
604
607
  "MailboxAppendMessage": "interface",
605
608
  "MailboxCrossProcessContractHooks": "interface",
606
609
  "MailboxCrossProcessVerdict": "type",
@@ -630,6 +633,7 @@
630
633
  "McpRefreshResult": "interface",
631
634
  "McpServerSpec": "interface",
632
635
  "McpServerStatus": "interface",
636
+ "McpToolFace": "type",
633
637
  "MediaStripInfo": "interface",
634
638
  "MemoryAdmissionInput": "interface",
635
639
  "MemoryAdmissionOutcome": "interface",
@@ -803,11 +807,12 @@
803
807
  "ParkProbeFindingCode": "type",
804
808
  "ParkSelfCheckResult": "interface",
805
809
  "ParkedClaimTicket": "interface",
806
- "ParsedAllowRule": "interface",
807
810
  "ParsedEntryFile": "interface",
808
811
  "ParsedPermissionRule": "interface",
812
+ "ParsedRule": "interface",
809
813
  "ParsedScopeKey": "type",
810
814
  "PatchReport": "interface",
815
+ "PathRuleBases": "interface",
811
816
  "PausedCause": "type",
812
817
  "PeerAdmission": "interface",
813
818
  "PeerAdmissionConfig": "interface",
@@ -879,8 +884,8 @@
879
884
  "PermissionRuleSyncResult": "interface",
880
885
  "PermissionRuleSyncTransport": "type",
881
886
  "PermissionRuleWriter": "interface",
882
- "PersistedAllowRule": "interface",
883
887
  "PersistedOrgRuleState": "interface",
888
+ "PersistedRule": "interface",
884
889
  "PersistedRuleAnswer": "type",
885
890
  "PersistedRuleCoverage": "interface",
886
891
  "PersistedRuleHit": "interface",
@@ -888,6 +893,7 @@
888
893
  "PersistedRuleMatch": "type",
889
894
  "PersistedRuleTool": "type",
890
895
  "PersistedRuleUnreadable": "interface",
896
+ "PersistedRuleVerdict": "interface",
891
897
  "PlacedSessionRow": "type",
892
898
  "PlanParseRepairs": "interface",
893
899
  "PlatformLimitReason": "type",
@@ -944,19 +950,27 @@
944
950
  "READ_DENY_DEFAULT_TIERS": "variable",
945
951
  "READ_FACE_BUILTIN_DENY_TABLE": "variable",
946
952
  "READ_FACE_DEFAULT_DENY_ENTRIES": "variable",
953
+ "READ_RULE_TOOL": "variable",
947
954
  "REAL_APPROVAL_CHECKPOINT_VERSION": "variable",
948
955
  "REASONING_BUDGET_SHARE": "variable",
949
956
  "RECALL_CAVEAT": "variable",
950
957
  "RECOMMENDED_SENSITIVE_PATTERNS": "variable",
951
958
  "REMOTE_HARVEST_PER_FILE_BYTES": "variable",
952
959
  "REMOTE_MASS_DELETION_FUSE_RATIO": "variable",
960
+ "RENDER_HINT_ACTIVITY_MAX_CHARS": "variable",
961
+ "RENDER_HINT_MAX_CHARS": "variable",
962
+ "RENDER_HINT_MAX_LIST": "variable",
953
963
  "REPORT_FINDINGS_TOOL_NAME": "variable",
954
964
  "RESOURCE_CHECKPOINT_VERSION": "variable",
955
965
  "RETIRED_TOOL_NAMES": "variable",
956
966
  "RETRYABLE_REMOTE_ERROR_CODES": "variable",
957
967
  "ROLE_TIER_DEFAULTS": "variable",
958
968
  "ROOT_ADOPTION_FILE": "variable",
969
+ "ROSTER_SOURCES": "variable",
959
970
  "ROUTE_ADJUDICATION_CONFORMANCE_CORPUS": "variable",
971
+ "RULE_BEHAVIORS": "variable",
972
+ "RULE_BEHAVIORS_BY_PRECEDENCE": "variable",
973
+ "RULE_BEHAVIOR_PRECEDENCE": "variable",
960
974
  "RULE_OFFERS_ABSENCE_BASELINE": "variable",
961
975
  "RULE_SYNC_DROP_CODES": "variable",
962
976
  "RUN_WORKFLOW_TOOL_NAME": "variable",
@@ -1036,6 +1050,7 @@
1036
1050
  "RosterAccess": "interface",
1037
1051
  "RosterEntry": "interface",
1038
1052
  "RosterGcOptions": "interface",
1053
+ "RosterSource": "type",
1039
1054
  "RosterStore": "interface",
1040
1055
  "RouteAdjudication": "type",
1041
1056
  "RouteAdjudicationVector": "interface",
@@ -1053,10 +1068,12 @@
1053
1068
  "RuleApprovalKind": "type",
1054
1069
  "RuleApprovalRecord": "interface",
1055
1070
  "RuleApprovalRecordStore": "interface",
1071
+ "RuleBehavior": "type",
1056
1072
  "RuleCandidate": "interface",
1057
1073
  "RuleConsentDeps": "interface",
1058
1074
  "RuleDeleteDelta": "interface",
1059
1075
  "RuleDot": "interface",
1076
+ "RuleFaceView": "interface",
1060
1077
  "RuleOffer": "type",
1061
1078
  "RuleOffer2": "type",
1062
1079
  "RuleOfferBatchMember": "type",
@@ -1219,7 +1236,7 @@
1219
1236
  "StopSource": "type",
1220
1237
  "StoreDurability": "type",
1221
1238
  "StoreFidelity": "type",
1222
- "StoredAllowRules": "interface",
1239
+ "StoredRules": "interface",
1223
1240
  "StoredSession": "class",
1224
1241
  "StoredSessionRules": "interface",
1225
1242
  "StoredStrategy": "interface",
@@ -1250,8 +1267,17 @@
1250
1267
  "TEAM_DISCUSSION_SCRIPT": "variable",
1251
1268
  "TEAM_DISCUSSION_WORKFLOW_NAME": "variable",
1252
1269
  "TOKEN_CHECKPOINT_VERSION": "variable",
1270
+ "TOOL_APPROVAL_CARDS": "variable",
1271
+ "TOOL_CONFORMANCE_VECTORS": "variable",
1272
+ "TOOL_CONTRACT_MAX_CHARS": "variable",
1273
+ "TOOL_FAMILIES": "variable",
1274
+ "TOOL_KEYS_MAX": "variable",
1275
+ "TOOL_KEY_MAX_CHARS": "variable",
1253
1276
  "TOOL_MODEL_GATE_CLASSES": "variable",
1277
+ "TOOL_MOUNT_TAGS": "variable",
1278
+ "TOOL_PATH_ACCESSES": "variable",
1254
1279
  "TOOL_RESULT_REF_CONFLICT_CODE": "variable",
1280
+ "TOOL_WIRE_NAME_MAX_CHARS": "variable",
1255
1281
  "TSchema": "interface",
1256
1282
  "TaskAccess": "interface",
1257
1283
  "TaskEvent": "type",
@@ -1289,22 +1315,35 @@
1289
1315
  "ThinkingLevel": "type",
1290
1316
  "TokenCounts": "interface",
1291
1317
  "ToolActivity": "interface",
1318
+ "ToolApprovalCard": "type",
1292
1319
  "ToolCall": "interface",
1320
+ "ToolCallFace": "interface",
1321
+ "ToolCallIdentity": "interface",
1322
+ "ToolCallLike": "interface",
1293
1323
  "ToolCallRequest": "interface",
1324
+ "ToolCatalogEntry": "interface",
1325
+ "ToolConformanceVector": "interface",
1294
1326
  "ToolContentOrigin": "type",
1295
1327
  "ToolContractDescriptor": "interface",
1296
1328
  "ToolDisclosureManifest": "interface",
1297
1329
  "ToolEffect": "type",
1298
1330
  "ToolExecuteContext": "interface",
1331
+ "ToolFaceDeclaration": "interface",
1332
+ "ToolFamily": "type",
1299
1333
  "ToolFingerprintInput": "interface",
1334
+ "ToolIdentity": "interface",
1300
1335
  "ToolInputValidationContext": "interface",
1301
1336
  "ToolInputVerdict": "type",
1302
1337
  "ToolModelGateRule": "interface",
1338
+ "ToolMountTag": "type",
1303
1339
  "ToolOrigin": "type",
1340
+ "ToolPathAccess": "type",
1341
+ "ToolPathTarget": "interface",
1304
1342
  "ToolPolicy": "interface",
1305
1343
  "ToolPolicyNameSets": "interface",
1306
1344
  "ToolPolicyProjection": "interface",
1307
1345
  "ToolPolicyProjectionComponent": "type",
1346
+ "ToolRenderHints": "interface",
1308
1347
  "ToolResultDeletionReport": "interface",
1309
1348
  "ToolResultMessage": "interface",
1310
1349
  "ToolResultProvenance": "interface",
@@ -1312,6 +1351,12 @@
1312
1351
  "ToolResultSlice": "interface",
1313
1352
  "ToolResultStore": "interface",
1314
1353
  "ToolReturn": "type",
1354
+ "ToolRoster": "type",
1355
+ "ToolRosterDelta": "type",
1356
+ "ToolRosterDeltaSeat": "class",
1357
+ "ToolRosterEntry": "type",
1358
+ "ToolRosterRenderHints": "variable",
1359
+ "ToolRuleFace": "interface",
1315
1360
  "ToolSpec": "interface",
1316
1361
  "TraceEvent": "type",
1317
1362
  "TracerHook": "type",
@@ -1430,6 +1475,8 @@
1430
1475
  "addDotsOf": "function",
1431
1476
  "addWorktree": "function",
1432
1477
  "adjudicateModelRoute": "function",
1478
+ "adjudicatePersistedPathRules": "function",
1479
+ "adjudicatePersistedRules": "function",
1433
1480
  "admitMemoryScopes": "function",
1434
1481
  "adoptFilePermissionRuleStore": "function",
1435
1482
  "adoptLocalDataRoot": "function",
@@ -1440,6 +1487,7 @@
1440
1487
  "appendHopToken": "function",
1441
1488
  "appendPendingSteer": "function",
1442
1489
  "applyFileRestoreViaEnv": "function",
1490
+ "applyMcpToolFaces": "function",
1443
1491
  "applyTombstones": "function",
1444
1492
  "archiveDistillerPlan": "function",
1445
1493
  "artifactDeclarations": "function",
@@ -1470,6 +1518,7 @@
1470
1518
  "boundedTail": "function",
1471
1519
  "brainToRuntime": "function",
1472
1520
  "brandLspFailure": "function",
1521
+ "budgetExemptToolNames": "function",
1473
1522
  "buildAgentPollDetails": "function",
1474
1523
  "buildAutoModePrompt": "function",
1475
1524
  "buildCrossSessionEnvelope": "function",
@@ -1499,6 +1548,10 @@
1499
1548
  "capAggregateToolResults": "function",
1500
1549
  "captureBaseline": "function",
1501
1550
  "captureFileBackupViaEnv": "function",
1551
+ "catalogEntriesNamed": "function",
1552
+ "catalogRuleFaceOf": "function",
1553
+ "catalogRuleFaceView": "function",
1554
+ "catalogToolNames": "function",
1502
1555
  "ccSidecarToMessages": "function",
1503
1556
  "chargeUsageRecord": "function",
1504
1557
  "checkInvariants": "function",
@@ -1521,6 +1574,7 @@
1521
1574
  "combinePolicies": "function",
1522
1575
  "committedDistilledOf": "function",
1523
1576
  "committedOriginOf": "function",
1577
+ "compactableToolNames": "function",
1524
1578
  "compileReadDeny": "function",
1525
1579
  "compileWriteProtection": "function",
1526
1580
  "complianceCallDenial": "function",
@@ -1597,6 +1651,7 @@
1597
1651
  "createSessionRulePolicy": "function",
1598
1652
  "createSkillsFromDirectory": "function",
1599
1653
  "createSqlTool": "function",
1654
+ "createStructuredProjector": "function",
1600
1655
  "createSubagentTool": "function",
1601
1656
  "createTaskListTools": "function",
1602
1657
  "createTaskOutputTool": "function",
@@ -1613,6 +1668,7 @@
1613
1668
  "decideAutoPromote": "function",
1614
1669
  "decisionText": "function",
1615
1670
  "declaredOffSpelling": "function",
1671
+ "declaredPathTargetOf": "function",
1616
1672
  "decodeCcPeerFrame": "function",
1617
1673
  "decodeScopeAttribute": "function",
1618
1674
  "decodeScopeSegment": "function",
@@ -1645,9 +1701,12 @@
1645
1701
  "describePeerDropReasons": "function",
1646
1702
  "describePeerIdleSubscription": "function",
1647
1703
  "describeStaticWiring": "function",
1704
+ "describeToolCatalog": "function",
1705
+ "describeToolConformanceVectors": "function",
1648
1706
  "detectCleanArmVerbatimLeak": "function",
1649
1707
  "detectSecret": "function",
1650
1708
  "devWorkflowScriptRunner": "variable",
1709
+ "diffToolRoster": "function",
1651
1710
  "directoryRuleAdmits": "function",
1652
1711
  "distilledEquals": "function",
1653
1712
  "dotAtOrBelowFrontier": "function",
@@ -1669,6 +1728,7 @@
1669
1728
  "enforcePromotableWriteGate": "function",
1670
1729
  "enforceSecretWriteGate": "function",
1671
1730
  "enforceStructuredNoteSecretGate": "function",
1731
+ "engineCardTypes": "function",
1672
1732
  "enqueueMemoryAnnouncement": "function",
1673
1733
  "ensureDir": "function",
1674
1734
  "entryFromFile": "function",
@@ -1691,6 +1751,7 @@
1691
1751
  "fileHistoryResolveTrackKey": "function",
1692
1752
  "fileHistoryStoreContract": "function",
1693
1753
  "fileHistoryTrackKeyOf": "function",
1754
+ "fileOpAccessOf": "function",
1694
1755
  "fileSessionCaptureRecordStore": "function",
1695
1756
  "findAdmittingRule": "function",
1696
1757
  "findOrphanToolCalls": "function",
@@ -1700,7 +1761,6 @@
1700
1761
  "foldAutoModeArming": "function",
1701
1762
  "foldDelta": "function",
1702
1763
  "foldPermissionModeClass": "function",
1703
- "formatAllowRuleText": "function",
1704
1764
  "formatDiagnosticsBlock": "function",
1705
1765
  "formatDiagnosticsSummary": "function",
1706
1766
  "formatHookFeedback": "function",
@@ -1712,6 +1772,7 @@
1712
1772
  "formatPeerNoticeClock": "function",
1713
1773
  "formatProjScope": "function",
1714
1774
  "formatProjectMarker": "function",
1775
+ "formatRuleText": "function",
1715
1776
  "formatToolError": "function",
1716
1777
  "formatUserProjScope": "function",
1717
1778
  "formatUserScope": "function",
@@ -1725,6 +1786,7 @@
1725
1786
  "gitCheckIgnoreFilter": "function",
1726
1787
  "governanceRetryClass": "function",
1727
1788
  "guardedMemoryStore": "function",
1789
+ "handBandEffects": "function",
1728
1790
  "harnessContext": "function",
1729
1791
  "harvestFilesToPatches": "function",
1730
1792
  "hasAuthCarrier": "function",
@@ -1735,11 +1797,13 @@
1735
1797
  "hasToolContract": "function",
1736
1798
  "htmlToText": "function",
1737
1799
  "inlineUntrusted": "function",
1800
+ "inputKeysOf": "function",
1738
1801
  "inspectDegenerate": "function",
1739
1802
  "isAliasModelId": "function",
1740
1803
  "isAskOrigin": "function",
1741
1804
  "isCanonicalPeerAddress": "function",
1742
1805
  "isCrossSessionInboundSetting": "function",
1806
+ "isDeclaredWrite": "function",
1743
1807
  "isDelegatedAgentTerminal": "function",
1744
1808
  "isDeniedBy": "function",
1745
1809
  "isExecutionOutcomeRecordWord": "function",
@@ -1755,9 +1819,11 @@
1755
1819
  "isPermissionModeClass": "function",
1756
1820
  "isPersonalScope": "function",
1757
1821
  "isProcessLive": "function",
1822
+ "isProtectedWrite": "function",
1758
1823
  "isQuestionUnavailable": "function",
1759
1824
  "isRemoteExecutionEnv": "function",
1760
1825
  "isRetryableRemoteErrorCode": "function",
1826
+ "isRuleBehavior": "function",
1761
1827
  "isRuleLive": "function",
1762
1828
  "isSecretEnvKey": "function",
1763
1829
  "isSelfOrchestrationActive": "function",
@@ -1778,6 +1844,7 @@
1778
1844
  "joinFrontiers": "function",
1779
1845
  "joinRuleStates": "function",
1780
1846
  "judgeCrossSessionInbound": "function",
1847
+ "judgeParkedToolIdentity": "function",
1781
1848
  "judgePeerAdmission": "function",
1782
1849
  "judgePeerRecordFile": "function",
1783
1850
  "killProcessTree": "function",
@@ -1821,6 +1888,7 @@
1821
1888
  "mergeRecallHits": "function",
1822
1889
  "mergeWorkflowArgs": "function",
1823
1890
  "migrateScope": "function",
1891
+ "mintCapabilityId": "function",
1824
1892
  "mintCheckpointId": "function",
1825
1893
  "mintCheckpointToken": "function",
1826
1894
  "mintExposurePartitionedPlan": "function",
@@ -1852,7 +1920,7 @@
1852
1920
  "orgRuleVerdictFor": "function",
1853
1921
  "originEquals": "function",
1854
1922
  "oversizeJournalResult": "function",
1855
- "parseAllowRuleText": "function",
1923
+ "parkedToolIdentity": "function",
1856
1924
  "parseAutoModeResponse": "function",
1857
1925
  "parseCrossSessionEnvelope": "function",
1858
1926
  "parseEntryFile": "function",
@@ -1866,9 +1934,15 @@
1866
1934
  "parseResult": "function",
1867
1935
  "parseRetryAfter": "function",
1868
1936
  "parseRuleSyncResponse": "function",
1937
+ "parseRuleText": "function",
1869
1938
  "parseScopeKey": "function",
1870
1939
  "parseTeacherAdvice": "function",
1871
1940
  "parseWorkflowMeta": "function",
1941
+ "pathConfinableWriteToolNames": "function",
1942
+ "pathRuleReaches": "function",
1943
+ "pathTargetOf": "function",
1944
+ "pathTargetValue": "function",
1945
+ "pathTargetingToolNames": "function",
1872
1946
  "pathToUri": "function",
1873
1947
  "pathWithinRoot": "function",
1874
1948
  "pauseOf": "function",
@@ -1892,6 +1966,7 @@
1892
1966
  "pgQuery": "function",
1893
1967
  "planParseRepairs": "function",
1894
1968
  "precheckEditedRuleText": "function",
1969
+ "predictMountedToolNames": "function",
1895
1970
  "prepareCardApproval": "function",
1896
1971
  "prepareCcImport": "function",
1897
1972
  "prepareStarterBatch": "function",
@@ -1902,6 +1977,7 @@
1902
1977
  "projectToolManifest": "function",
1903
1978
  "projectionsToWriteBack": "function",
1904
1979
  "promptTokensOf": "function",
1980
+ "protectivePathTargetOf": "function",
1905
1981
  "protocolOf": "function",
1906
1982
  "pruneWorktrees": "function",
1907
1983
  "queryBackgroundAgents": "function",
@@ -1917,6 +1993,7 @@
1917
1993
  "readPeerSessionRecord": "function",
1918
1994
  "readPendingSteerQueue": "function",
1919
1995
  "readRootAdoptionFile": "function",
1996
+ "readRowBehavior": "function",
1920
1997
  "readSessionCaptureOptOut": "function",
1921
1998
  "readUsageRecord": "function",
1922
1999
  "readV2HeaderHints": "function",
@@ -2001,9 +2078,13 @@
2001
2078
  "routePeerIdleNotice": "function",
2002
2079
  "routeRefusalText": "function",
2003
2080
  "ruleAdmitsCommand": "function",
2081
+ "ruleFaceOfInstance": "function",
2082
+ "ruleFacesFromRoster": "function",
2004
2083
  "ruleOffersOfRecord": "function",
2084
+ "ruleReachesProgramRun": "function",
2005
2085
  "ruleSourceOf": "function",
2006
2086
  "ruleSyncVector": "function",
2087
+ "ruleToolGrammarOf": "function",
2007
2088
  "runCascade": "function",
2008
2089
  "runDeveloperTask": "function",
2009
2090
  "runExecGate": "function",
@@ -2022,6 +2103,7 @@
2022
2103
  "runWithVerification": "function",
2023
2104
  "runWorkflow": "function",
2024
2105
  "sameExecutionRecord": "function",
2106
+ "sameRuleIdentity": "function",
2025
2107
  "sameRuleOwner": "function",
2026
2108
  "sameScope": "function",
2027
2109
  "sanitizeAutoModeArmingRecipe": "function",
@@ -2058,6 +2140,7 @@
2058
2140
  "sharpImageDownsampler": "function",
2059
2141
  "sharpImageResizer": "function",
2060
2142
  "signalProcessTree": "function",
2143
+ "skillScopeWriteToolNames": "function",
2061
2144
  "snapshotFrozenPaths": "function",
2062
2145
  "specError": "function",
2063
2146
  "splitWorkflowMeta": "function",
@@ -2084,6 +2167,9 @@
2084
2167
  "thinkingOffExpressible": "function",
2085
2168
  "tightenTaskSpec": "function",
2086
2169
  "toA2ATaskState": "function",
2170
+ "toolCallFaceOf": "function",
2171
+ "toolFaceProblem": "function",
2172
+ "toolIdentityOf": "function",
2087
2173
  "toolPolicyNameSets": "function",
2088
2174
  "toolResultContentSegment": "function",
2089
2175
  "toolResultProvenanceOf": "function",
@@ -2142,10 +2228,12 @@
2142
2228
  "AGGREGATE_MEDIA_BUDGET_BYTES": "advanced",
2143
2229
  "AGGREGATE_TOOL_RESULT_BUDGET_CHARS": "advanced",
2144
2230
  "ANNOUNCEMENTS_FILE": "advanced",
2231
+ "APPROVAL_CARD_REQUIRED_KEYS": "internal",
2145
2232
  "APPROVER_ATTRIBUTION_MAX_CHARS": "advanced",
2146
2233
  "ARTIFACT_LIMITS": "advanced",
2147
2234
  "ASK_EVIDENCE_ABSENCE_VALUES": "advanced",
2148
2235
  "ASK_ORIGINS": "advanced",
2236
+ "ASK_USER_QUESTION_TOOL_NAME": "advanced",
2149
2237
  "AUTONOMOUS_LOOP_DYNAMIC_SENTINEL": "advanced",
2150
2238
  "AUTONOMOUS_LOOP_PREAMBLE": "advanced",
2151
2239
  "AUTONOMOUS_LOOP_PREAMBLE_PERSISTENT": "advanced",
@@ -2274,7 +2362,7 @@
2274
2362
  "CODE_REVIEW_PROMPT": "advanced",
2275
2363
  "CODE_ROLE": "advanced",
2276
2364
  "CODE_SYSTEM_PROMPT": "advanced",
2277
- "COMPACTABLE_TOOLS": "advanced",
2365
+ "COMMAND_RULE_TOOL": "advanced",
2278
2366
  "COMPLIANCE_CAPABILITIES": "advanced",
2279
2367
  "CONFIG_CATALOG_VERSION": "advanced",
2280
2368
  "CONSOLIDATION_DEFAULTS": "advanced",
@@ -2402,7 +2490,6 @@
2402
2490
  "CrossSessionInboundVerdict": "advanced",
2403
2491
  "CrossSessionSettingSource": "advanced",
2404
2492
  "DECLARE_DONE_TOOL_NAME": "advanced",
2405
- "DEFAULT_BUDGET_EXEMPT_TOOLS": "advanced",
2406
2493
  "DEFAULT_COMPACTION_INSTRUCTIONS": "advanced",
2407
2494
  "DEFAULT_CONSOLIDATION_BAND": "internal",
2408
2495
  "DEFAULT_CONSOLIDATION_MAX_NOTES": "internal",
@@ -2432,6 +2519,7 @@
2432
2519
  "DISCUSSION_WORKFLOW_NAME": "advanced",
2433
2520
  "DISTILLER_DEFAULT_MAX_INPUTS_PER_PRODUCT": "advanced",
2434
2521
  "DURABLE_AGENT_HANDLE_RE": "advanced",
2522
+ "DURABLE_HISTORY_NAMES": "internal",
2435
2523
  "DecisionReason": "advanced",
2436
2524
  "DefaultPackDescription": "advanced",
2437
2525
  "DegradationInfo": "advanced",
@@ -2582,7 +2670,7 @@
2582
2670
  "GovernanceCode": "advanced",
2583
2671
  "GovernanceRetryClass": "advanced",
2584
2672
  "GraderEnv": "advanced",
2585
- "HAND_TOOL_EFFECTS": "advanced",
2673
+ "HANDS_BAND_TAGS": "advanced",
2586
2674
  "HARNESS_SECTION_ANCHOR": "advanced",
2587
2675
  "HandsBandOptions": "stable",
2588
2676
  "HarvestRejection": "advanced",
@@ -2723,6 +2811,7 @@
2723
2811
  "MONITOR_DEFAULT_TIMEOUT_MS": "advanced",
2724
2812
  "MONITOR_MAX_BATCHES_PER_MINUTE": "advanced",
2725
2813
  "MONITOR_MAX_TIMEOUT_MS": "advanced",
2814
+ "MOUNT_TAG_IN_HANDS_BAND": "advanced",
2726
2815
  "MailboxAppendMessage": "advanced",
2727
2816
  "MailboxCrossProcessContractHooks": "advanced",
2728
2817
  "MailboxCrossProcessVerdict": "advanced",
@@ -2752,6 +2841,7 @@
2752
2841
  "McpRefreshResult": "advanced",
2753
2842
  "McpServerSpec": "advanced",
2754
2843
  "McpServerStatus": "advanced",
2844
+ "McpToolFace": "internal",
2755
2845
  "MediaStripInfo": "advanced",
2756
2846
  "MemoryAdmissionInput": "advanced",
2757
2847
  "MemoryAdmissionOutcome": "advanced",
@@ -2925,11 +3015,12 @@
2925
3015
  "ParkProbeFindingCode": "advanced",
2926
3016
  "ParkSelfCheckResult": "advanced",
2927
3017
  "ParkedClaimTicket": "advanced",
2928
- "ParsedAllowRule": "advanced",
2929
3018
  "ParsedEntryFile": "advanced",
2930
3019
  "ParsedPermissionRule": "advanced",
3020
+ "ParsedRule": "advanced",
2931
3021
  "ParsedScopeKey": "advanced",
2932
3022
  "PatchReport": "stable",
3023
+ "PathRuleBases": "advanced",
2933
3024
  "PausedCause": "advanced",
2934
3025
  "PeerAdmission": "advanced",
2935
3026
  "PeerAdmissionConfig": "advanced",
@@ -3001,8 +3092,8 @@
3001
3092
  "PermissionRuleSyncResult": "advanced",
3002
3093
  "PermissionRuleSyncTransport": "advanced",
3003
3094
  "PermissionRuleWriter": "advanced",
3004
- "PersistedAllowRule": "advanced",
3005
3095
  "PersistedOrgRuleState": "stable",
3096
+ "PersistedRule": "advanced",
3006
3097
  "PersistedRuleAnswer": "advanced",
3007
3098
  "PersistedRuleCoverage": "advanced",
3008
3099
  "PersistedRuleHit": "advanced",
@@ -3010,6 +3101,7 @@
3010
3101
  "PersistedRuleMatch": "advanced",
3011
3102
  "PersistedRuleTool": "advanced",
3012
3103
  "PersistedRuleUnreadable": "advanced",
3104
+ "PersistedRuleVerdict": "advanced",
3013
3105
  "PlacedSessionRow": "advanced",
3014
3106
  "PlanParseRepairs": "advanced",
3015
3107
  "PlatformLimitReason": "advanced",
@@ -3066,19 +3158,27 @@
3066
3158
  "READ_DENY_DEFAULT_TIERS": "advanced",
3067
3159
  "READ_FACE_BUILTIN_DENY_TABLE": "advanced",
3068
3160
  "READ_FACE_DEFAULT_DENY_ENTRIES": "advanced",
3161
+ "READ_RULE_TOOL": "advanced",
3069
3162
  "REAL_APPROVAL_CHECKPOINT_VERSION": "advanced",
3070
3163
  "REASONING_BUDGET_SHARE": "advanced",
3071
3164
  "RECALL_CAVEAT": "advanced",
3072
3165
  "RECOMMENDED_SENSITIVE_PATTERNS": "advanced",
3073
3166
  "REMOTE_HARVEST_PER_FILE_BYTES": "advanced",
3074
3167
  "REMOTE_MASS_DELETION_FUSE_RATIO": "advanced",
3168
+ "RENDER_HINT_ACTIVITY_MAX_CHARS": "advanced",
3169
+ "RENDER_HINT_MAX_CHARS": "advanced",
3170
+ "RENDER_HINT_MAX_LIST": "advanced",
3075
3171
  "REPORT_FINDINGS_TOOL_NAME": "internal",
3076
3172
  "RESOURCE_CHECKPOINT_VERSION": "advanced",
3077
3173
  "RETIRED_TOOL_NAMES": "advanced",
3078
3174
  "RETRYABLE_REMOTE_ERROR_CODES": "advanced",
3079
3175
  "ROLE_TIER_DEFAULTS": "advanced",
3080
3176
  "ROOT_ADOPTION_FILE": "advanced",
3177
+ "ROSTER_SOURCES": "advanced",
3081
3178
  "ROUTE_ADJUDICATION_CONFORMANCE_CORPUS": "advanced",
3179
+ "RULE_BEHAVIORS": "advanced",
3180
+ "RULE_BEHAVIORS_BY_PRECEDENCE": "advanced",
3181
+ "RULE_BEHAVIOR_PRECEDENCE": "advanced",
3082
3182
  "RULE_OFFERS_ABSENCE_BASELINE": "advanced",
3083
3183
  "RULE_SYNC_DROP_CODES": "advanced",
3084
3184
  "RUN_WORKFLOW_TOOL_NAME": "stable",
@@ -3158,6 +3258,7 @@
3158
3258
  "RosterAccess": "advanced",
3159
3259
  "RosterEntry": "advanced",
3160
3260
  "RosterGcOptions": "advanced",
3261
+ "RosterSource": "advanced",
3161
3262
  "RosterStore": "advanced",
3162
3263
  "RouteAdjudication": "advanced",
3163
3264
  "RouteAdjudicationVector": "advanced",
@@ -3175,10 +3276,12 @@
3175
3276
  "RuleApprovalKind": "advanced",
3176
3277
  "RuleApprovalRecord": "advanced",
3177
3278
  "RuleApprovalRecordStore": "advanced",
3279
+ "RuleBehavior": "advanced",
3178
3280
  "RuleCandidate": "advanced",
3179
3281
  "RuleConsentDeps": "advanced",
3180
3282
  "RuleDeleteDelta": "advanced",
3181
3283
  "RuleDot": "advanced",
3284
+ "RuleFaceView": "advanced",
3182
3285
  "RuleOffer": "advanced",
3183
3286
  "RuleOffer2": "advanced",
3184
3287
  "RuleOfferBatchMember": "advanced",
@@ -3341,7 +3444,7 @@
3341
3444
  "StopSource": "advanced",
3342
3445
  "StoreDurability": "advanced",
3343
3446
  "StoreFidelity": "advanced",
3344
- "StoredAllowRules": "advanced",
3447
+ "StoredRules": "advanced",
3345
3448
  "StoredSession": "stable",
3346
3449
  "StoredSessionRules": "advanced",
3347
3450
  "StoredStrategy": "advanced",
@@ -3372,8 +3475,17 @@
3372
3475
  "TEAM_DISCUSSION_SCRIPT": "advanced",
3373
3476
  "TEAM_DISCUSSION_WORKFLOW_NAME": "advanced",
3374
3477
  "TOKEN_CHECKPOINT_VERSION": "advanced",
3478
+ "TOOL_APPROVAL_CARDS": "advanced",
3479
+ "TOOL_CONFORMANCE_VECTORS": "advanced",
3480
+ "TOOL_CONTRACT_MAX_CHARS": "advanced",
3481
+ "TOOL_FAMILIES": "advanced",
3482
+ "TOOL_KEYS_MAX": "advanced",
3483
+ "TOOL_KEY_MAX_CHARS": "advanced",
3375
3484
  "TOOL_MODEL_GATE_CLASSES": "advanced",
3485
+ "TOOL_MOUNT_TAGS": "advanced",
3486
+ "TOOL_PATH_ACCESSES": "advanced",
3376
3487
  "TOOL_RESULT_REF_CONFLICT_CODE": "advanced",
3488
+ "TOOL_WIRE_NAME_MAX_CHARS": "advanced",
3377
3489
  "TSchema": "advanced",
3378
3490
  "TaskAccess": "advanced",
3379
3491
  "TaskEvent": "stable",
@@ -3411,22 +3523,35 @@
3411
3523
  "ThinkingLevel": "internal",
3412
3524
  "TokenCounts": "advanced",
3413
3525
  "ToolActivity": "advanced",
3526
+ "ToolApprovalCard": "advanced",
3414
3527
  "ToolCall": "stable",
3528
+ "ToolCallFace": "advanced",
3529
+ "ToolCallIdentity": "advanced",
3530
+ "ToolCallLike": "advanced",
3415
3531
  "ToolCallRequest": "advanced",
3532
+ "ToolCatalogEntry": "advanced",
3533
+ "ToolConformanceVector": "advanced",
3416
3534
  "ToolContentOrigin": "advanced",
3417
3535
  "ToolContractDescriptor": "advanced",
3418
3536
  "ToolDisclosureManifest": "advanced",
3419
3537
  "ToolEffect": "advanced",
3420
3538
  "ToolExecuteContext": "advanced",
3539
+ "ToolFaceDeclaration": "advanced",
3540
+ "ToolFamily": "advanced",
3421
3541
  "ToolFingerprintInput": "advanced",
3542
+ "ToolIdentity": "advanced",
3422
3543
  "ToolInputValidationContext": "internal",
3423
3544
  "ToolInputVerdict": "internal",
3424
3545
  "ToolModelGateRule": "advanced",
3546
+ "ToolMountTag": "advanced",
3425
3547
  "ToolOrigin": "advanced",
3548
+ "ToolPathAccess": "advanced",
3549
+ "ToolPathTarget": "advanced",
3426
3550
  "ToolPolicy": "stable",
3427
3551
  "ToolPolicyNameSets": "advanced",
3428
3552
  "ToolPolicyProjection": "advanced",
3429
3553
  "ToolPolicyProjectionComponent": "advanced",
3554
+ "ToolRenderHints": "advanced",
3430
3555
  "ToolResultDeletionReport": "stable",
3431
3556
  "ToolResultMessage": "advanced",
3432
3557
  "ToolResultProvenance": "stable",
@@ -3434,6 +3559,12 @@
3434
3559
  "ToolResultSlice": "stable",
3435
3560
  "ToolResultStore": "stable",
3436
3561
  "ToolReturn": "advanced",
3562
+ "ToolRoster": "advanced",
3563
+ "ToolRosterDelta": "advanced",
3564
+ "ToolRosterDeltaSeat": "advanced",
3565
+ "ToolRosterEntry": "advanced",
3566
+ "ToolRosterRenderHints": "advanced",
3567
+ "ToolRuleFace": "advanced",
3437
3568
  "ToolSpec": "stable",
3438
3569
  "TraceEvent": "advanced",
3439
3570
  "TracerHook": "advanced",
@@ -3552,6 +3683,8 @@
3552
3683
  "addDotsOf": "advanced",
3553
3684
  "addWorktree": "advanced",
3554
3685
  "adjudicateModelRoute": "advanced",
3686
+ "adjudicatePersistedPathRules": "advanced",
3687
+ "adjudicatePersistedRules": "advanced",
3555
3688
  "admitMemoryScopes": "advanced",
3556
3689
  "adoptFilePermissionRuleStore": "advanced",
3557
3690
  "adoptLocalDataRoot": "advanced",
@@ -3562,6 +3695,7 @@
3562
3695
  "appendHopToken": "advanced",
3563
3696
  "appendPendingSteer": "stable",
3564
3697
  "applyFileRestoreViaEnv": "advanced",
3698
+ "applyMcpToolFaces": "internal",
3565
3699
  "applyTombstones": "advanced",
3566
3700
  "archiveDistillerPlan": "advanced",
3567
3701
  "artifactDeclarations": "advanced",
@@ -3592,6 +3726,7 @@
3592
3726
  "boundedTail": "stable",
3593
3727
  "brainToRuntime": "advanced",
3594
3728
  "brandLspFailure": "advanced",
3729
+ "budgetExemptToolNames": "advanced",
3595
3730
  "buildAgentPollDetails": "advanced",
3596
3731
  "buildAutoModePrompt": "advanced",
3597
3732
  "buildCrossSessionEnvelope": "advanced",
@@ -3621,6 +3756,10 @@
3621
3756
  "capAggregateToolResults": "advanced",
3622
3757
  "captureBaseline": "advanced",
3623
3758
  "captureFileBackupViaEnv": "advanced",
3759
+ "catalogEntriesNamed": "advanced",
3760
+ "catalogRuleFaceOf": "advanced",
3761
+ "catalogRuleFaceView": "advanced",
3762
+ "catalogToolNames": "advanced",
3624
3763
  "ccSidecarToMessages": "advanced",
3625
3764
  "chargeUsageRecord": "advanced",
3626
3765
  "checkInvariants": "advanced",
@@ -3643,6 +3782,7 @@
3643
3782
  "combinePolicies": "advanced",
3644
3783
  "committedDistilledOf": "stable",
3645
3784
  "committedOriginOf": "stable",
3785
+ "compactableToolNames": "advanced",
3646
3786
  "compileReadDeny": "advanced",
3647
3787
  "compileWriteProtection": "advanced",
3648
3788
  "complianceCallDenial": "advanced",
@@ -3719,6 +3859,7 @@
3719
3859
  "createSessionRulePolicy": "internal",
3720
3860
  "createSkillsFromDirectory": "advanced",
3721
3861
  "createSqlTool": "advanced",
3862
+ "createStructuredProjector": "internal",
3722
3863
  "createSubagentTool": "stable",
3723
3864
  "createTaskListTools": "advanced",
3724
3865
  "createTaskOutputTool": "advanced",
@@ -3735,6 +3876,7 @@
3735
3876
  "decideAutoPromote": "advanced",
3736
3877
  "decisionText": "advanced",
3737
3878
  "declaredOffSpelling": "advanced",
3879
+ "declaredPathTargetOf": "advanced",
3738
3880
  "decodeCcPeerFrame": "advanced",
3739
3881
  "decodeScopeAttribute": "advanced",
3740
3882
  "decodeScopeSegment": "advanced",
@@ -3767,9 +3909,12 @@
3767
3909
  "describePeerDropReasons": "advanced",
3768
3910
  "describePeerIdleSubscription": "advanced",
3769
3911
  "describeStaticWiring": "stable",
3912
+ "describeToolCatalog": "advanced",
3913
+ "describeToolConformanceVectors": "advanced",
3770
3914
  "detectCleanArmVerbatimLeak": "advanced",
3771
3915
  "detectSecret": "advanced",
3772
3916
  "devWorkflowScriptRunner": "stable",
3917
+ "diffToolRoster": "advanced",
3773
3918
  "directoryRuleAdmits": "advanced",
3774
3919
  "distilledEquals": "stable",
3775
3920
  "dotAtOrBelowFrontier": "advanced",
@@ -3791,6 +3936,7 @@
3791
3936
  "enforcePromotableWriteGate": "advanced",
3792
3937
  "enforceSecretWriteGate": "advanced",
3793
3938
  "enforceStructuredNoteSecretGate": "advanced",
3939
+ "engineCardTypes": "advanced",
3794
3940
  "enqueueMemoryAnnouncement": "advanced",
3795
3941
  "ensureDir": "advanced",
3796
3942
  "entryFromFile": "advanced",
@@ -3813,6 +3959,7 @@
3813
3959
  "fileHistoryResolveTrackKey": "advanced",
3814
3960
  "fileHistoryStoreContract": "advanced",
3815
3961
  "fileHistoryTrackKeyOf": "advanced",
3962
+ "fileOpAccessOf": "advanced",
3816
3963
  "fileSessionCaptureRecordStore": "advanced",
3817
3964
  "findAdmittingRule": "advanced",
3818
3965
  "findOrphanToolCalls": "advanced",
@@ -3822,7 +3969,6 @@
3822
3969
  "foldAutoModeArming": "advanced",
3823
3970
  "foldDelta": "advanced",
3824
3971
  "foldPermissionModeClass": "advanced",
3825
- "formatAllowRuleText": "advanced",
3826
3972
  "formatDiagnosticsBlock": "advanced",
3827
3973
  "formatDiagnosticsSummary": "advanced",
3828
3974
  "formatHookFeedback": "advanced",
@@ -3834,6 +3980,7 @@
3834
3980
  "formatPeerNoticeClock": "advanced",
3835
3981
  "formatProjScope": "stable",
3836
3982
  "formatProjectMarker": "stable",
3983
+ "formatRuleText": "advanced",
3837
3984
  "formatToolError": "advanced",
3838
3985
  "formatUserProjScope": "advanced",
3839
3986
  "formatUserScope": "stable",
@@ -3847,6 +3994,7 @@
3847
3994
  "gitCheckIgnoreFilter": "advanced",
3848
3995
  "governanceRetryClass": "advanced",
3849
3996
  "guardedMemoryStore": "advanced",
3997
+ "handBandEffects": "advanced",
3850
3998
  "harnessContext": "advanced",
3851
3999
  "harvestFilesToPatches": "advanced",
3852
4000
  "hasAuthCarrier": "advanced",
@@ -3857,11 +4005,13 @@
3857
4005
  "hasToolContract": "advanced",
3858
4006
  "htmlToText": "advanced",
3859
4007
  "inlineUntrusted": "advanced",
4008
+ "inputKeysOf": "advanced",
3860
4009
  "inspectDegenerate": "advanced",
3861
4010
  "isAliasModelId": "advanced",
3862
4011
  "isAskOrigin": "advanced",
3863
4012
  "isCanonicalPeerAddress": "advanced",
3864
4013
  "isCrossSessionInboundSetting": "advanced",
4014
+ "isDeclaredWrite": "advanced",
3865
4015
  "isDelegatedAgentTerminal": "advanced",
3866
4016
  "isDeniedBy": "advanced",
3867
4017
  "isExecutionOutcomeRecordWord": "advanced",
@@ -3877,9 +4027,11 @@
3877
4027
  "isPermissionModeClass": "advanced",
3878
4028
  "isPersonalScope": "advanced",
3879
4029
  "isProcessLive": "advanced",
4030
+ "isProtectedWrite": "advanced",
3880
4031
  "isQuestionUnavailable": "advanced",
3881
4032
  "isRemoteExecutionEnv": "advanced",
3882
4033
  "isRetryableRemoteErrorCode": "advanced",
4034
+ "isRuleBehavior": "advanced",
3883
4035
  "isRuleLive": "advanced",
3884
4036
  "isSecretEnvKey": "advanced",
3885
4037
  "isSelfOrchestrationActive": "advanced",
@@ -3900,6 +4052,7 @@
3900
4052
  "joinFrontiers": "advanced",
3901
4053
  "joinRuleStates": "advanced",
3902
4054
  "judgeCrossSessionInbound": "advanced",
4055
+ "judgeParkedToolIdentity": "advanced",
3903
4056
  "judgePeerAdmission": "advanced",
3904
4057
  "judgePeerRecordFile": "advanced",
3905
4058
  "killProcessTree": "internal",
@@ -3943,6 +4096,7 @@
3943
4096
  "mergeRecallHits": "advanced",
3944
4097
  "mergeWorkflowArgs": "advanced",
3945
4098
  "migrateScope": "advanced",
4099
+ "mintCapabilityId": "advanced",
3946
4100
  "mintCheckpointId": "advanced",
3947
4101
  "mintCheckpointToken": "advanced",
3948
4102
  "mintExposurePartitionedPlan": "advanced",
@@ -3974,7 +4128,7 @@
3974
4128
  "orgRuleVerdictFor": "advanced",
3975
4129
  "originEquals": "stable",
3976
4130
  "oversizeJournalResult": "advanced",
3977
- "parseAllowRuleText": "advanced",
4131
+ "parkedToolIdentity": "advanced",
3978
4132
  "parseAutoModeResponse": "advanced",
3979
4133
  "parseCrossSessionEnvelope": "advanced",
3980
4134
  "parseEntryFile": "advanced",
@@ -3988,9 +4142,15 @@
3988
4142
  "parseResult": "advanced",
3989
4143
  "parseRetryAfter": "advanced",
3990
4144
  "parseRuleSyncResponse": "advanced",
4145
+ "parseRuleText": "advanced",
3991
4146
  "parseScopeKey": "advanced",
3992
4147
  "parseTeacherAdvice": "advanced",
3993
4148
  "parseWorkflowMeta": "advanced",
4149
+ "pathConfinableWriteToolNames": "advanced",
4150
+ "pathRuleReaches": "advanced",
4151
+ "pathTargetOf": "advanced",
4152
+ "pathTargetValue": "advanced",
4153
+ "pathTargetingToolNames": "advanced",
3994
4154
  "pathToUri": "advanced",
3995
4155
  "pathWithinRoot": "advanced",
3996
4156
  "pauseOf": "advanced",
@@ -4014,6 +4174,7 @@
4014
4174
  "pgQuery": "advanced",
4015
4175
  "planParseRepairs": "advanced",
4016
4176
  "precheckEditedRuleText": "advanced",
4177
+ "predictMountedToolNames": "advanced",
4017
4178
  "prepareCardApproval": "advanced",
4018
4179
  "prepareCcImport": "advanced",
4019
4180
  "prepareStarterBatch": "advanced",
@@ -4024,6 +4185,7 @@
4024
4185
  "projectToolManifest": "advanced",
4025
4186
  "projectionsToWriteBack": "advanced",
4026
4187
  "promptTokensOf": "internal",
4188
+ "protectivePathTargetOf": "advanced",
4027
4189
  "protocolOf": "advanced",
4028
4190
  "pruneWorktrees": "advanced",
4029
4191
  "queryBackgroundAgents": "advanced",
@@ -4039,6 +4201,7 @@
4039
4201
  "readPeerSessionRecord": "advanced",
4040
4202
  "readPendingSteerQueue": "advanced",
4041
4203
  "readRootAdoptionFile": "advanced",
4204
+ "readRowBehavior": "advanced",
4042
4205
  "readSessionCaptureOptOut": "advanced",
4043
4206
  "readUsageRecord": "advanced",
4044
4207
  "readV2HeaderHints": "advanced",
@@ -4123,9 +4286,13 @@
4123
4286
  "routePeerIdleNotice": "advanced",
4124
4287
  "routeRefusalText": "advanced",
4125
4288
  "ruleAdmitsCommand": "advanced",
4289
+ "ruleFaceOfInstance": "advanced",
4290
+ "ruleFacesFromRoster": "advanced",
4126
4291
  "ruleOffersOfRecord": "advanced",
4292
+ "ruleReachesProgramRun": "advanced",
4127
4293
  "ruleSourceOf": "advanced",
4128
4294
  "ruleSyncVector": "advanced",
4295
+ "ruleToolGrammarOf": "advanced",
4129
4296
  "runCascade": "advanced",
4130
4297
  "runDeveloperTask": "advanced",
4131
4298
  "runExecGate": "advanced",
@@ -4144,6 +4311,7 @@
4144
4311
  "runWithVerification": "advanced",
4145
4312
  "runWorkflow": "stable",
4146
4313
  "sameExecutionRecord": "advanced",
4314
+ "sameRuleIdentity": "advanced",
4147
4315
  "sameRuleOwner": "advanced",
4148
4316
  "sameScope": "advanced",
4149
4317
  "sanitizeAutoModeArmingRecipe": "advanced",
@@ -4180,6 +4348,7 @@
4180
4348
  "sharpImageDownsampler": "advanced",
4181
4349
  "sharpImageResizer": "advanced",
4182
4350
  "signalProcessTree": "internal",
4351
+ "skillScopeWriteToolNames": "advanced",
4183
4352
  "snapshotFrozenPaths": "advanced",
4184
4353
  "specError": "advanced",
4185
4354
  "splitWorkflowMeta": "advanced",
@@ -4206,6 +4375,9 @@
4206
4375
  "thinkingOffExpressible": "advanced",
4207
4376
  "tightenTaskSpec": "stable",
4208
4377
  "toA2ATaskState": "advanced",
4378
+ "toolCallFaceOf": "advanced",
4379
+ "toolFaceProblem": "internal",
4380
+ "toolIdentityOf": "advanced",
4209
4381
  "toolPolicyNameSets": "advanced",
4210
4382
  "toolResultContentSegment": "advanced",
4211
4383
  "toolResultProvenanceOf": "advanced",