@sema-agent/core 7.6.3 → 7.8.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.
- package/CHANGELOG.md +70 -10
- package/dist/agents/agent-transcript-tool.js +2 -2
- package/dist/agents/list-agents-tool.js +2 -3
- package/dist/agents/observer.js +2 -2
- package/dist/agents/peer-admission.d.ts +1 -1
- package/dist/agents/send-message-tool.js +2 -1
- package/dist/agents/subagent-steps.js +5 -4
- package/dist/agents/subagent.js +2 -3
- package/dist/brain/anthropic.js +8 -2
- package/dist/brain/open-responses.js +5 -3
- package/dist/brain/openai.js +31 -8
- package/dist/brain/reasoning.d.ts +32 -0
- package/dist/brain/reasoning.js +18 -0
- package/dist/core/ask-question.js +2 -2
- package/dist/core/auto-mode-defaults.d.ts +16 -0
- package/dist/core/auto-mode-defaults.js +1 -0
- package/dist/core/auto-mode.d.ts +19 -0
- package/dist/core/auto-mode.js +74 -56
- package/dist/core/checkpoint-execution-record.d.ts +110 -0
- package/dist/core/checkpoint-execution-record.js +49 -0
- package/dist/core/checkpoint-store.d.ts +114 -2
- package/dist/core/checkpoint-store.js +35 -2
- package/dist/core/context-edit.d.ts +0 -22
- package/dist/core/context-edit.js +2 -11
- package/dist/core/engine-notice.d.ts +17 -0
- package/dist/core/fs-write-gate-policy.d.ts +7 -1
- package/dist/core/fs-write-gate-policy.js +7 -7
- package/dist/core/gate-fold.js +2 -2
- package/dist/core/gate-lanes.js +4 -3
- package/dist/core/governance-codes.d.ts +1 -1
- package/dist/core/governance-codes.js +8 -0
- package/dist/core/hooks.d.ts +8 -2
- package/dist/core/hooks.js +1 -1
- package/dist/core/lsp.js +2 -2
- package/dist/core/mcp-server-spec.d.ts +17 -0
- package/dist/core/mcp.js +3 -1
- package/dist/core/memory-engine/tools.js +4 -12
- package/dist/core/permission-rules.d.ts +32 -2
- package/dist/core/permission-rules.js +43 -37
- package/dist/core/present-plan-tool.js +3 -4
- package/dist/core/runner/active-skill-scope.js +7 -4
- package/dist/core/runner/clock-and-limits.d.ts +117 -0
- package/dist/core/runner/clock-and-limits.js +118 -0
- package/dist/core/runner/compaction-call-options.d.ts +1 -1
- package/dist/core/runner/contracts.d.ts +37 -3
- package/dist/core/runner/decide-continuation.d.ts +98 -0
- package/dist/core/runner/decide-continuation.js +133 -0
- package/dist/core/runner/execution-record.d.ts +26 -0
- package/dist/core/runner/execution-record.js +19 -0
- package/dist/core/runner/git-leg-delivery.d.ts +28 -0
- package/dist/core/runner/git-leg-delivery.js +94 -0
- package/dist/core/runner/initial-run-state.d.ts +14 -0
- package/dist/core/runner/initial-run-state.js +11 -0
- package/dist/core/runner/prepare-ask-lane.d.ts +1 -1
- package/dist/core/runner/prepare-caps-and-workflow.d.ts +5 -4
- package/dist/core/runner/prepare-caps-and-workflow.js +33 -11
- package/dist/core/runner/prepare-defer-classify.d.ts +5 -26
- package/dist/core/runner/prepare-defer-classify.js +10 -10
- package/dist/core/runner/prepare-delegation-surface.d.ts +5 -4
- package/dist/core/runner/prepare-delegation-surface.js +15 -17
- package/dist/core/runner/prepare-gate-stations.d.ts +4 -1
- package/dist/core/runner/prepare-gate-stations.js +3 -1
- package/dist/core/runner/prepare-hands-readface.d.ts +3 -2
- package/dist/core/runner/prepare-hands-readface.js +3 -2
- package/dist/core/runner/prepare-inherited-gate.d.ts +1 -1
- package/dist/core/runner/prepare-inherited-gate.js +1 -0
- package/dist/core/runner/prepare-lsp.d.ts +4 -3
- package/dist/core/runner/prepare-lsp.js +3 -2
- package/dist/core/runner/prepare-memory-engine-session.d.ts +4 -4
- package/dist/core/runner/prepare-memory-engine-session.js +4 -2
- package/dist/core/runner/prepare-offload-wrappers.js +7 -5
- package/dist/core/runner/prepare-park-ask.d.ts +4 -0
- package/dist/core/runner/prepare-park-ask.js +4 -1
- package/dist/core/runner/prepare-project-context.d.ts +5 -23
- package/dist/core/runner/prepare-project-context.js +7 -5
- package/dist/core/runner/prepare-prompt-assembly.d.ts +1 -1
- package/dist/core/runner/prepare-protocol-tools.d.ts +5 -1
- package/dist/core/runner/prepare-protocol-tools.js +38 -21
- package/dist/core/runner/prepare-question-face.d.ts +4 -3
- package/dist/core/runner/prepare-question-face.js +5 -3
- package/dist/core/runner/prepare-safety-scan.js +42 -2
- package/dist/core/runner/prepare-task.js +37 -19
- package/dist/core/runner/prepare-tool-disclosure-mount.d.ts +5 -2
- package/dist/core/runner/prepare-tool-disclosure-mount.js +3 -1
- package/dist/core/runner/prepare-wiring-manifest.d.ts +4 -0
- package/dist/core/runner/prepare-wiring-manifest.js +3 -8
- package/dist/core/runner/run-harness-handlers.d.ts +46 -0
- package/dist/core/runner/run-harness-handlers.js +345 -0
- package/dist/core/runner/run-turn-boundary.d.ts +69 -0
- package/dist/core/runner/run-turn-boundary.js +694 -0
- package/dist/core/runner/runtask.d.ts +0 -68
- package/dist/core/runner/runtask.js +66 -1486
- package/dist/core/runner/session-rule-policy.js +9 -4
- package/dist/core/runner/steer-admission.d.ts +17 -0
- package/dist/core/runner/steer-admission.js +17 -0
- package/dist/core/runner/synthetic-tools.js +5 -8
- package/dist/core/runner/tool-disclosure.d.ts +4 -0
- package/dist/core/runner/tool-disclosure.js +9 -5
- package/dist/core/runner/tool-end-body.d.ts +71 -0
- package/dist/core/runner/tool-end-body.js +75 -0
- package/dist/core/runner/tool-face-overlay.d.ts +40 -0
- package/dist/core/runner/tool-face-overlay.js +125 -0
- package/dist/core/runner/tool-output-projection.d.ts +10 -0
- package/dist/core/runner/tool-output-projection.js +33 -10
- package/dist/core/sensitive-path-policy.d.ts +3 -0
- package/dist/core/sensitive-path-policy.js +6 -5
- package/dist/core/shared-memory/tools.js +3 -6
- package/dist/core/store-contracts/checkpoint-store-contract.d.ts +4 -0
- package/dist/core/store-contracts/checkpoint-store-contract.js +108 -0
- package/dist/core/task-event.d.ts +10 -0
- package/dist/core/task-registry.js +4 -5
- package/dist/core/task-spec.d.ts +8 -0
- package/dist/core/tool-catalog-entries.d.ts +48 -0
- package/dist/core/tool-catalog-entries.js +174 -0
- package/dist/core/tool-conformance.d.ts +22 -0
- package/dist/core/tool-conformance.js +37 -0
- package/dist/core/tool-face.d.ts +171 -0
- package/dist/core/tool-face.js +25 -0
- package/dist/core/tool-policy.d.ts +24 -0
- package/dist/core/tool-policy.js +4 -2
- package/dist/core/tool-registry.d.ts +114 -0
- package/dist/core/tool-registry.js +114 -0
- package/dist/core/tool-result-budget.d.ts +0 -3
- package/dist/core/tool-result-budget.js +4 -3
- package/dist/core/tool-result-store.d.ts +0 -18
- package/dist/core/tool-result-store.js +2 -18
- package/dist/core/tool-roster.d.ts +450 -0
- package/dist/core/tool-roster.js +497 -0
- package/dist/core/tool-spec.d.ts +54 -3
- package/dist/core/tools.js +7 -0
- package/dist/core/trace.d.ts +24 -0
- package/dist/core/wiring-manifest.d.ts +13 -0
- package/dist/core/wiring-manifest.js +2 -1
- package/dist/core/write-protect.d.ts +2 -1
- package/dist/core/write-protect.js +5 -4
- package/dist/engine/compaction/utils.d.ts +6 -0
- package/dist/engine/compaction/utils.js +19 -19
- package/dist/engine/loop/types.d.ts +6 -0
- package/dist/index.d.ts +20 -8
- package/dist/index.js +19 -7
- package/dist/orchestration/goal.js +2 -1
- package/dist/orchestration/run-spec.js +3 -5
- package/dist/orchestration/run-workflow-tool.js +2 -2
- package/dist/prompt-assembly/event-registry.js +3 -3
- package/dist/prompt-assembly/tool-catalog.d.ts +2 -2
- package/dist/stores/file/checkpoint-store.d.ts +7 -0
- package/dist/stores/file/checkpoint-store.js +20 -1
- package/dist/tools/fs/fs-bash.d.ts +1 -1
- package/dist/tools/fs/fs-bash.js +7 -11
- package/dist/tools/fs/fs-read.js +2 -2
- package/dist/tools/fs/fs-search-tools.d.ts +0 -7
- package/dist/tools/fs/fs-search-tools.js +3 -16
- package/dist/tools/fs/fs-write.js +4 -6
- package/dist/tools/fs/repo-map.js +2 -2
- package/dist/tools/fs/safety.d.ts +2 -1
- package/dist/tools/fs/safety.js +6 -5
- package/dist/tools/monitor.js +2 -2
- package/dist/tools/scheduler-tools.js +5 -8
- package/dist/tools/task-list.js +5 -8
- package/dist/tools/todo.js +2 -2
- package/dist/tools/web.js +3 -6
- package/dist/tools/worktree.js +3 -4
- package/package.json +4 -1
- package/test/export-surface.snapshot.json +183 -7
|
@@ -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":
|
|
4
|
+
"count": 2190,
|
|
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",
|
|
@@ -31,6 +33,7 @@
|
|
|
31
33
|
"AUTO_MODE_ARMING_RECIPE_VERSION": "variable",
|
|
32
34
|
"AUTO_MODE_ARM_REASONS": "variable",
|
|
33
35
|
"AUTO_MODE_BASE_PROMPT": "variable",
|
|
36
|
+
"AUTO_MODE_CLASSIFIER_MAX_TOKENS": "variable",
|
|
34
37
|
"AUTO_MODE_DEFAULTS_SENTINEL": "variable",
|
|
35
38
|
"AUTO_MODE_DENIAL_AUTO_DENY_DEFAULT_MS": "variable",
|
|
36
39
|
"AUTO_MODE_DENIAL_LIMIT_DEFAULTS": "variable",
|
|
@@ -84,6 +87,7 @@
|
|
|
84
87
|
"AutoModeArmingFace": "interface",
|
|
85
88
|
"AutoModeArmingFold": "type",
|
|
86
89
|
"AutoModeArmingRecipe": "interface",
|
|
90
|
+
"AutoModeClassified": "interface",
|
|
87
91
|
"AutoModeClassifierCompletion": "type",
|
|
88
92
|
"AutoModeClassifyFn": "type",
|
|
89
93
|
"AutoModeClassifyInput": "interface",
|
|
@@ -150,7 +154,6 @@
|
|
|
150
154
|
"CODE_REVIEW_PROMPT": "variable",
|
|
151
155
|
"CODE_ROLE": "variable",
|
|
152
156
|
"CODE_SYSTEM_PROMPT": "variable",
|
|
153
|
-
"COMPACTABLE_TOOLS": "variable",
|
|
154
157
|
"COMPLIANCE_CAPABILITIES": "variable",
|
|
155
158
|
"CONFIG_CATALOG_VERSION": "variable",
|
|
156
159
|
"CONSOLIDATION_DEFAULTS": "variable",
|
|
@@ -278,7 +281,6 @@
|
|
|
278
281
|
"CrossSessionInboundVerdict": "type",
|
|
279
282
|
"CrossSessionSettingSource": "type",
|
|
280
283
|
"DECLARE_DONE_TOOL_NAME": "variable",
|
|
281
|
-
"DEFAULT_BUDGET_EXEMPT_TOOLS": "variable",
|
|
282
284
|
"DEFAULT_COMPACTION_INSTRUCTIONS": "variable",
|
|
283
285
|
"DEFAULT_CONSOLIDATION_BAND": "variable",
|
|
284
286
|
"DEFAULT_CONSOLIDATION_MAX_NOTES": "variable",
|
|
@@ -308,6 +310,7 @@
|
|
|
308
310
|
"DISCUSSION_WORKFLOW_NAME": "variable",
|
|
309
311
|
"DISTILLER_DEFAULT_MAX_INPUTS_PER_PRODUCT": "variable",
|
|
310
312
|
"DURABLE_AGENT_HANDLE_RE": "variable",
|
|
313
|
+
"DURABLE_HISTORY_NAMES": "variable",
|
|
311
314
|
"DecisionReason": "type",
|
|
312
315
|
"DefaultPackDescription": "interface",
|
|
313
316
|
"DegradationInfo": "interface",
|
|
@@ -336,6 +339,8 @@
|
|
|
336
339
|
"EVENT_PROMPT_REGISTRY": "variable",
|
|
337
340
|
"EXECUTION_ENVIRONMENT": "variable",
|
|
338
341
|
"EXECUTION_ENVIRONMENT_OPEN_READS": "variable",
|
|
342
|
+
"EXECUTION_OUTCOME_RECORD_WORDS": "variable",
|
|
343
|
+
"EXECUTION_RECORD_LEAVES_ROW_UNRECORDED": "variable",
|
|
339
344
|
"EXPLORE_SYSTEM_PROMPT": "variable",
|
|
340
345
|
"EXPLORE_WHEN_TO_USE": "variable",
|
|
341
346
|
"EXPLORE_WHEN_TO_USE_LEAN": "variable",
|
|
@@ -370,6 +375,11 @@
|
|
|
370
375
|
"ExecutionEnvFactoryContext": "interface",
|
|
371
376
|
"ExecutionError": "class",
|
|
372
377
|
"ExecutionErrorCode": "type",
|
|
378
|
+
"ExecutionOutcomeConflictError": "class",
|
|
379
|
+
"ExecutionOutcomeRecordWord": "type",
|
|
380
|
+
"ExecutionRecordRowFacts": "interface",
|
|
381
|
+
"ExecutionRecordTableCoversEveryWord": "type",
|
|
382
|
+
"ExecutionVerdict": "type",
|
|
373
383
|
"ExplainInput": "interface",
|
|
374
384
|
"ExposedMemoryIndexRow": "interface",
|
|
375
385
|
"ExposedMemorySearchHit": "interface",
|
|
@@ -451,7 +461,7 @@
|
|
|
451
461
|
"GovernanceCode": "type",
|
|
452
462
|
"GovernanceRetryClass": "type",
|
|
453
463
|
"GraderEnv": "interface",
|
|
454
|
-
"
|
|
464
|
+
"HANDS_BAND_TAGS": "variable",
|
|
455
465
|
"HARNESS_SECTION_ANCHOR": "variable",
|
|
456
466
|
"HandsBandOptions": "interface",
|
|
457
467
|
"HarvestRejection": "interface",
|
|
@@ -592,6 +602,7 @@
|
|
|
592
602
|
"MONITOR_DEFAULT_TIMEOUT_MS": "variable",
|
|
593
603
|
"MONITOR_MAX_BATCHES_PER_MINUTE": "variable",
|
|
594
604
|
"MONITOR_MAX_TIMEOUT_MS": "variable",
|
|
605
|
+
"MOUNT_TAG_IN_HANDS_BAND": "variable",
|
|
595
606
|
"MailboxAppendMessage": "interface",
|
|
596
607
|
"MailboxCrossProcessContractHooks": "interface",
|
|
597
608
|
"MailboxCrossProcessVerdict": "type",
|
|
@@ -621,6 +632,7 @@
|
|
|
621
632
|
"McpRefreshResult": "interface",
|
|
622
633
|
"McpServerSpec": "interface",
|
|
623
634
|
"McpServerStatus": "interface",
|
|
635
|
+
"McpToolFace": "type",
|
|
624
636
|
"MediaStripInfo": "interface",
|
|
625
637
|
"MemoryAdmissionInput": "interface",
|
|
626
638
|
"MemoryAdmissionOutcome": "interface",
|
|
@@ -715,6 +727,7 @@
|
|
|
715
727
|
"ORPHAN_ADOPT_MAX_DEFAULT": "variable",
|
|
716
728
|
"ORPHAN_ADOPT_WINDOW_MS_DEFAULT": "variable",
|
|
717
729
|
"OUTPUT_EFFICIENCY": "variable",
|
|
730
|
+
"OffCapabilityModel": "interface",
|
|
718
731
|
"OnAsk": "type",
|
|
719
732
|
"OnElicit": "type",
|
|
720
733
|
"OnQuestion": "type",
|
|
@@ -940,12 +953,16 @@
|
|
|
940
953
|
"RECOMMENDED_SENSITIVE_PATTERNS": "variable",
|
|
941
954
|
"REMOTE_HARVEST_PER_FILE_BYTES": "variable",
|
|
942
955
|
"REMOTE_MASS_DELETION_FUSE_RATIO": "variable",
|
|
956
|
+
"RENDER_HINT_ACTIVITY_MAX_CHARS": "variable",
|
|
957
|
+
"RENDER_HINT_MAX_CHARS": "variable",
|
|
958
|
+
"RENDER_HINT_MAX_LIST": "variable",
|
|
943
959
|
"REPORT_FINDINGS_TOOL_NAME": "variable",
|
|
944
960
|
"RESOURCE_CHECKPOINT_VERSION": "variable",
|
|
945
961
|
"RETIRED_TOOL_NAMES": "variable",
|
|
946
962
|
"RETRYABLE_REMOTE_ERROR_CODES": "variable",
|
|
947
963
|
"ROLE_TIER_DEFAULTS": "variable",
|
|
948
964
|
"ROOT_ADOPTION_FILE": "variable",
|
|
965
|
+
"ROSTER_SOURCES": "variable",
|
|
949
966
|
"ROUTE_ADJUDICATION_CONFORMANCE_CORPUS": "variable",
|
|
950
967
|
"RULE_OFFERS_ABSENCE_BASELINE": "variable",
|
|
951
968
|
"RULE_SYNC_DROP_CODES": "variable",
|
|
@@ -1026,6 +1043,7 @@
|
|
|
1026
1043
|
"RosterAccess": "interface",
|
|
1027
1044
|
"RosterEntry": "interface",
|
|
1028
1045
|
"RosterGcOptions": "interface",
|
|
1046
|
+
"RosterSource": "type",
|
|
1029
1047
|
"RosterStore": "interface",
|
|
1030
1048
|
"RouteAdjudication": "type",
|
|
1031
1049
|
"RouteAdjudicationVector": "interface",
|
|
@@ -1047,6 +1065,7 @@
|
|
|
1047
1065
|
"RuleConsentDeps": "interface",
|
|
1048
1066
|
"RuleDeleteDelta": "interface",
|
|
1049
1067
|
"RuleDot": "interface",
|
|
1068
|
+
"RuleFaceView": "interface",
|
|
1050
1069
|
"RuleOffer": "type",
|
|
1051
1070
|
"RuleOffer2": "type",
|
|
1052
1071
|
"RuleOfferBatchMember": "type",
|
|
@@ -1240,8 +1259,17 @@
|
|
|
1240
1259
|
"TEAM_DISCUSSION_SCRIPT": "variable",
|
|
1241
1260
|
"TEAM_DISCUSSION_WORKFLOW_NAME": "variable",
|
|
1242
1261
|
"TOKEN_CHECKPOINT_VERSION": "variable",
|
|
1262
|
+
"TOOL_APPROVAL_CARDS": "variable",
|
|
1263
|
+
"TOOL_CONFORMANCE_VECTORS": "variable",
|
|
1264
|
+
"TOOL_CONTRACT_MAX_CHARS": "variable",
|
|
1265
|
+
"TOOL_FAMILIES": "variable",
|
|
1266
|
+
"TOOL_KEYS_MAX": "variable",
|
|
1267
|
+
"TOOL_KEY_MAX_CHARS": "variable",
|
|
1243
1268
|
"TOOL_MODEL_GATE_CLASSES": "variable",
|
|
1269
|
+
"TOOL_MOUNT_TAGS": "variable",
|
|
1270
|
+
"TOOL_PATH_ACCESSES": "variable",
|
|
1244
1271
|
"TOOL_RESULT_REF_CONFLICT_CODE": "variable",
|
|
1272
|
+
"TOOL_WIRE_NAME_MAX_CHARS": "variable",
|
|
1245
1273
|
"TSchema": "interface",
|
|
1246
1274
|
"TaskAccess": "interface",
|
|
1247
1275
|
"TaskEvent": "type",
|
|
@@ -1279,22 +1307,35 @@
|
|
|
1279
1307
|
"ThinkingLevel": "type",
|
|
1280
1308
|
"TokenCounts": "interface",
|
|
1281
1309
|
"ToolActivity": "interface",
|
|
1310
|
+
"ToolApprovalCard": "type",
|
|
1282
1311
|
"ToolCall": "interface",
|
|
1312
|
+
"ToolCallFace": "interface",
|
|
1313
|
+
"ToolCallIdentity": "interface",
|
|
1314
|
+
"ToolCallLike": "interface",
|
|
1283
1315
|
"ToolCallRequest": "interface",
|
|
1316
|
+
"ToolCatalogEntry": "interface",
|
|
1317
|
+
"ToolConformanceVector": "interface",
|
|
1284
1318
|
"ToolContentOrigin": "type",
|
|
1285
1319
|
"ToolContractDescriptor": "interface",
|
|
1286
1320
|
"ToolDisclosureManifest": "interface",
|
|
1287
1321
|
"ToolEffect": "type",
|
|
1288
1322
|
"ToolExecuteContext": "interface",
|
|
1323
|
+
"ToolFaceDeclaration": "interface",
|
|
1324
|
+
"ToolFamily": "type",
|
|
1289
1325
|
"ToolFingerprintInput": "interface",
|
|
1326
|
+
"ToolIdentity": "interface",
|
|
1290
1327
|
"ToolInputValidationContext": "interface",
|
|
1291
1328
|
"ToolInputVerdict": "type",
|
|
1292
1329
|
"ToolModelGateRule": "interface",
|
|
1330
|
+
"ToolMountTag": "type",
|
|
1293
1331
|
"ToolOrigin": "type",
|
|
1332
|
+
"ToolPathAccess": "type",
|
|
1333
|
+
"ToolPathTarget": "interface",
|
|
1294
1334
|
"ToolPolicy": "interface",
|
|
1295
1335
|
"ToolPolicyNameSets": "interface",
|
|
1296
1336
|
"ToolPolicyProjection": "interface",
|
|
1297
1337
|
"ToolPolicyProjectionComponent": "type",
|
|
1338
|
+
"ToolRenderHints": "interface",
|
|
1298
1339
|
"ToolResultDeletionReport": "interface",
|
|
1299
1340
|
"ToolResultMessage": "interface",
|
|
1300
1341
|
"ToolResultProvenance": "interface",
|
|
@@ -1302,6 +1343,12 @@
|
|
|
1302
1343
|
"ToolResultSlice": "interface",
|
|
1303
1344
|
"ToolResultStore": "interface",
|
|
1304
1345
|
"ToolReturn": "type",
|
|
1346
|
+
"ToolRoster": "type",
|
|
1347
|
+
"ToolRosterDelta": "type",
|
|
1348
|
+
"ToolRosterDeltaSeat": "class",
|
|
1349
|
+
"ToolRosterEntry": "type",
|
|
1350
|
+
"ToolRosterRenderHints": "variable",
|
|
1351
|
+
"ToolRuleFace": "interface",
|
|
1305
1352
|
"ToolSpec": "interface",
|
|
1306
1353
|
"TraceEvent": "type",
|
|
1307
1354
|
"TracerHook": "type",
|
|
@@ -1430,6 +1477,7 @@
|
|
|
1430
1477
|
"appendHopToken": "function",
|
|
1431
1478
|
"appendPendingSteer": "function",
|
|
1432
1479
|
"applyFileRestoreViaEnv": "function",
|
|
1480
|
+
"applyMcpToolFaces": "function",
|
|
1433
1481
|
"applyTombstones": "function",
|
|
1434
1482
|
"archiveDistillerPlan": "function",
|
|
1435
1483
|
"artifactDeclarations": "function",
|
|
@@ -1460,6 +1508,7 @@
|
|
|
1460
1508
|
"boundedTail": "function",
|
|
1461
1509
|
"brainToRuntime": "function",
|
|
1462
1510
|
"brandLspFailure": "function",
|
|
1511
|
+
"budgetExemptToolNames": "function",
|
|
1463
1512
|
"buildAgentPollDetails": "function",
|
|
1464
1513
|
"buildAutoModePrompt": "function",
|
|
1465
1514
|
"buildCrossSessionEnvelope": "function",
|
|
@@ -1489,12 +1538,18 @@
|
|
|
1489
1538
|
"capAggregateToolResults": "function",
|
|
1490
1539
|
"captureBaseline": "function",
|
|
1491
1540
|
"captureFileBackupViaEnv": "function",
|
|
1541
|
+
"catalogEntriesNamed": "function",
|
|
1542
|
+
"catalogRuleFaceOf": "function",
|
|
1543
|
+
"catalogRuleFaceView": "function",
|
|
1544
|
+
"catalogToolNames": "function",
|
|
1492
1545
|
"ccSidecarToMessages": "function",
|
|
1493
1546
|
"chargeUsageRecord": "function",
|
|
1494
1547
|
"checkInvariants": "function",
|
|
1495
1548
|
"checkToolPolicyProjection": "function",
|
|
1549
|
+
"checkpointExecutionRecorded": "function",
|
|
1496
1550
|
"checkpointFrom": "function",
|
|
1497
1551
|
"checkpointStoreContract": "function",
|
|
1552
|
+
"checkpointStoreExecutionUndeclared": "function",
|
|
1498
1553
|
"checkpointVersionOf": "function",
|
|
1499
1554
|
"clampHopChain": "function",
|
|
1500
1555
|
"classifierMayAnswer": "function",
|
|
@@ -1509,6 +1564,7 @@
|
|
|
1509
1564
|
"combinePolicies": "function",
|
|
1510
1565
|
"committedDistilledOf": "function",
|
|
1511
1566
|
"committedOriginOf": "function",
|
|
1567
|
+
"compactableToolNames": "function",
|
|
1512
1568
|
"compileReadDeny": "function",
|
|
1513
1569
|
"compileWriteProtection": "function",
|
|
1514
1570
|
"complianceCallDenial": "function",
|
|
@@ -1585,6 +1641,7 @@
|
|
|
1585
1641
|
"createSessionRulePolicy": "function",
|
|
1586
1642
|
"createSkillsFromDirectory": "function",
|
|
1587
1643
|
"createSqlTool": "function",
|
|
1644
|
+
"createStructuredProjector": "function",
|
|
1588
1645
|
"createSubagentTool": "function",
|
|
1589
1646
|
"createTaskListTools": "function",
|
|
1590
1647
|
"createTaskOutputTool": "function",
|
|
@@ -1600,6 +1657,8 @@
|
|
|
1600
1657
|
"debitLedger": "function",
|
|
1601
1658
|
"decideAutoPromote": "function",
|
|
1602
1659
|
"decisionText": "function",
|
|
1660
|
+
"declaredOffSpelling": "function",
|
|
1661
|
+
"declaredPathTargetOf": "function",
|
|
1603
1662
|
"decodeCcPeerFrame": "function",
|
|
1604
1663
|
"decodeScopeAttribute": "function",
|
|
1605
1664
|
"decodeScopeSegment": "function",
|
|
@@ -1632,9 +1691,12 @@
|
|
|
1632
1691
|
"describePeerDropReasons": "function",
|
|
1633
1692
|
"describePeerIdleSubscription": "function",
|
|
1634
1693
|
"describeStaticWiring": "function",
|
|
1694
|
+
"describeToolCatalog": "function",
|
|
1695
|
+
"describeToolConformanceVectors": "function",
|
|
1635
1696
|
"detectCleanArmVerbatimLeak": "function",
|
|
1636
1697
|
"detectSecret": "function",
|
|
1637
1698
|
"devWorkflowScriptRunner": "variable",
|
|
1699
|
+
"diffToolRoster": "function",
|
|
1638
1700
|
"directoryRuleAdmits": "function",
|
|
1639
1701
|
"distilledEquals": "function",
|
|
1640
1702
|
"dotAtOrBelowFrontier": "function",
|
|
@@ -1656,6 +1718,7 @@
|
|
|
1656
1718
|
"enforcePromotableWriteGate": "function",
|
|
1657
1719
|
"enforceSecretWriteGate": "function",
|
|
1658
1720
|
"enforceStructuredNoteSecretGate": "function",
|
|
1721
|
+
"engineCardTypes": "function",
|
|
1659
1722
|
"enqueueMemoryAnnouncement": "function",
|
|
1660
1723
|
"ensureDir": "function",
|
|
1661
1724
|
"entryFromFile": "function",
|
|
@@ -1663,6 +1726,8 @@
|
|
|
1663
1726
|
"err": "function",
|
|
1664
1727
|
"errorClassOf": "function",
|
|
1665
1728
|
"eventDefaultOn": "function",
|
|
1729
|
+
"executionRecordDisposition": "function",
|
|
1730
|
+
"executionVerdict": "function",
|
|
1666
1731
|
"expandLexicalTerms": "function",
|
|
1667
1732
|
"expandTiers": "function",
|
|
1668
1733
|
"explainPromptAssembly": "function",
|
|
@@ -1676,6 +1741,7 @@
|
|
|
1676
1741
|
"fileHistoryResolveTrackKey": "function",
|
|
1677
1742
|
"fileHistoryStoreContract": "function",
|
|
1678
1743
|
"fileHistoryTrackKeyOf": "function",
|
|
1744
|
+
"fileOpAccessOf": "function",
|
|
1679
1745
|
"fileSessionCaptureRecordStore": "function",
|
|
1680
1746
|
"findAdmittingRule": "function",
|
|
1681
1747
|
"findOrphanToolCalls": "function",
|
|
@@ -1710,6 +1776,7 @@
|
|
|
1710
1776
|
"gitCheckIgnoreFilter": "function",
|
|
1711
1777
|
"governanceRetryClass": "function",
|
|
1712
1778
|
"guardedMemoryStore": "function",
|
|
1779
|
+
"handBandEffects": "function",
|
|
1713
1780
|
"harnessContext": "function",
|
|
1714
1781
|
"harvestFilesToPatches": "function",
|
|
1715
1782
|
"hasAuthCarrier": "function",
|
|
@@ -1720,13 +1787,16 @@
|
|
|
1720
1787
|
"hasToolContract": "function",
|
|
1721
1788
|
"htmlToText": "function",
|
|
1722
1789
|
"inlineUntrusted": "function",
|
|
1790
|
+
"inputKeysOf": "function",
|
|
1723
1791
|
"inspectDegenerate": "function",
|
|
1724
1792
|
"isAliasModelId": "function",
|
|
1725
1793
|
"isAskOrigin": "function",
|
|
1726
1794
|
"isCanonicalPeerAddress": "function",
|
|
1727
1795
|
"isCrossSessionInboundSetting": "function",
|
|
1796
|
+
"isDeclaredWrite": "function",
|
|
1728
1797
|
"isDelegatedAgentTerminal": "function",
|
|
1729
1798
|
"isDeniedBy": "function",
|
|
1799
|
+
"isExecutionOutcomeRecordWord": "function",
|
|
1730
1800
|
"isGateKind": "function",
|
|
1731
1801
|
"isInstructionEntry": "function",
|
|
1732
1802
|
"isIsolated": "function",
|
|
@@ -1739,6 +1809,7 @@
|
|
|
1739
1809
|
"isPermissionModeClass": "function",
|
|
1740
1810
|
"isPersonalScope": "function",
|
|
1741
1811
|
"isProcessLive": "function",
|
|
1812
|
+
"isProtectedWrite": "function",
|
|
1742
1813
|
"isQuestionUnavailable": "function",
|
|
1743
1814
|
"isRemoteExecutionEnv": "function",
|
|
1744
1815
|
"isRetryableRemoteErrorCode": "function",
|
|
@@ -1762,6 +1833,7 @@
|
|
|
1762
1833
|
"joinFrontiers": "function",
|
|
1763
1834
|
"joinRuleStates": "function",
|
|
1764
1835
|
"judgeCrossSessionInbound": "function",
|
|
1836
|
+
"judgeParkedToolIdentity": "function",
|
|
1765
1837
|
"judgePeerAdmission": "function",
|
|
1766
1838
|
"judgePeerRecordFile": "function",
|
|
1767
1839
|
"killProcessTree": "function",
|
|
@@ -1805,6 +1877,7 @@
|
|
|
1805
1877
|
"mergeRecallHits": "function",
|
|
1806
1878
|
"mergeWorkflowArgs": "function",
|
|
1807
1879
|
"migrateScope": "function",
|
|
1880
|
+
"mintCapabilityId": "function",
|
|
1808
1881
|
"mintCheckpointId": "function",
|
|
1809
1882
|
"mintCheckpointToken": "function",
|
|
1810
1883
|
"mintExposurePartitionedPlan": "function",
|
|
@@ -1836,6 +1909,7 @@
|
|
|
1836
1909
|
"orgRuleVerdictFor": "function",
|
|
1837
1910
|
"originEquals": "function",
|
|
1838
1911
|
"oversizeJournalResult": "function",
|
|
1912
|
+
"parkedToolIdentity": "function",
|
|
1839
1913
|
"parseAllowRuleText": "function",
|
|
1840
1914
|
"parseAutoModeResponse": "function",
|
|
1841
1915
|
"parseCrossSessionEnvelope": "function",
|
|
@@ -1853,6 +1927,10 @@
|
|
|
1853
1927
|
"parseScopeKey": "function",
|
|
1854
1928
|
"parseTeacherAdvice": "function",
|
|
1855
1929
|
"parseWorkflowMeta": "function",
|
|
1930
|
+
"pathConfinableWriteToolNames": "function",
|
|
1931
|
+
"pathTargetOf": "function",
|
|
1932
|
+
"pathTargetValue": "function",
|
|
1933
|
+
"pathTargetingToolNames": "function",
|
|
1856
1934
|
"pathToUri": "function",
|
|
1857
1935
|
"pathWithinRoot": "function",
|
|
1858
1936
|
"pauseOf": "function",
|
|
@@ -1876,6 +1954,7 @@
|
|
|
1876
1954
|
"pgQuery": "function",
|
|
1877
1955
|
"planParseRepairs": "function",
|
|
1878
1956
|
"precheckEditedRuleText": "function",
|
|
1957
|
+
"predictMountedToolNames": "function",
|
|
1879
1958
|
"prepareCardApproval": "function",
|
|
1880
1959
|
"prepareCcImport": "function",
|
|
1881
1960
|
"prepareStarterBatch": "function",
|
|
@@ -1886,6 +1965,7 @@
|
|
|
1886
1965
|
"projectToolManifest": "function",
|
|
1887
1966
|
"projectionsToWriteBack": "function",
|
|
1888
1967
|
"promptTokensOf": "function",
|
|
1968
|
+
"protectivePathTargetOf": "function",
|
|
1889
1969
|
"protocolOf": "function",
|
|
1890
1970
|
"pruneWorktrees": "function",
|
|
1891
1971
|
"queryBackgroundAgents": "function",
|
|
@@ -1985,6 +2065,8 @@
|
|
|
1985
2065
|
"routePeerIdleNotice": "function",
|
|
1986
2066
|
"routeRefusalText": "function",
|
|
1987
2067
|
"ruleAdmitsCommand": "function",
|
|
2068
|
+
"ruleFaceOfInstance": "function",
|
|
2069
|
+
"ruleFacesFromRoster": "function",
|
|
1988
2070
|
"ruleOffersOfRecord": "function",
|
|
1989
2071
|
"ruleSourceOf": "function",
|
|
1990
2072
|
"ruleSyncVector": "function",
|
|
@@ -2005,6 +2087,7 @@
|
|
|
2005
2087
|
"runWithTeacher": "function",
|
|
2006
2088
|
"runWithVerification": "function",
|
|
2007
2089
|
"runWorkflow": "function",
|
|
2090
|
+
"sameExecutionRecord": "function",
|
|
2008
2091
|
"sameRuleOwner": "function",
|
|
2009
2092
|
"sameScope": "function",
|
|
2010
2093
|
"sanitizeAutoModeArmingRecipe": "function",
|
|
@@ -2041,6 +2124,7 @@
|
|
|
2041
2124
|
"sharpImageDownsampler": "function",
|
|
2042
2125
|
"sharpImageResizer": "function",
|
|
2043
2126
|
"signalProcessTree": "function",
|
|
2127
|
+
"skillScopeWriteToolNames": "function",
|
|
2044
2128
|
"snapshotFrozenPaths": "function",
|
|
2045
2129
|
"specError": "function",
|
|
2046
2130
|
"splitWorkflowMeta": "function",
|
|
@@ -2064,8 +2148,12 @@
|
|
|
2064
2148
|
"termSet": "function",
|
|
2065
2149
|
"terminalForTier": "function",
|
|
2066
2150
|
"terminalProjection": "function",
|
|
2151
|
+
"thinkingOffExpressible": "function",
|
|
2067
2152
|
"tightenTaskSpec": "function",
|
|
2068
2153
|
"toA2ATaskState": "function",
|
|
2154
|
+
"toolCallFaceOf": "function",
|
|
2155
|
+
"toolFaceProblem": "function",
|
|
2156
|
+
"toolIdentityOf": "function",
|
|
2069
2157
|
"toolPolicyNameSets": "function",
|
|
2070
2158
|
"toolResultContentSegment": "function",
|
|
2071
2159
|
"toolResultProvenanceOf": "function",
|
|
@@ -2124,10 +2212,12 @@
|
|
|
2124
2212
|
"AGGREGATE_MEDIA_BUDGET_BYTES": "advanced",
|
|
2125
2213
|
"AGGREGATE_TOOL_RESULT_BUDGET_CHARS": "advanced",
|
|
2126
2214
|
"ANNOUNCEMENTS_FILE": "advanced",
|
|
2215
|
+
"APPROVAL_CARD_REQUIRED_KEYS": "internal",
|
|
2127
2216
|
"APPROVER_ATTRIBUTION_MAX_CHARS": "advanced",
|
|
2128
2217
|
"ARTIFACT_LIMITS": "advanced",
|
|
2129
2218
|
"ASK_EVIDENCE_ABSENCE_VALUES": "advanced",
|
|
2130
2219
|
"ASK_ORIGINS": "advanced",
|
|
2220
|
+
"ASK_USER_QUESTION_TOOL_NAME": "advanced",
|
|
2131
2221
|
"AUTONOMOUS_LOOP_DYNAMIC_SENTINEL": "advanced",
|
|
2132
2222
|
"AUTONOMOUS_LOOP_PREAMBLE": "advanced",
|
|
2133
2223
|
"AUTONOMOUS_LOOP_PREAMBLE_PERSISTENT": "advanced",
|
|
@@ -2135,6 +2225,7 @@
|
|
|
2135
2225
|
"AUTO_MODE_ARMING_RECIPE_VERSION": "advanced",
|
|
2136
2226
|
"AUTO_MODE_ARM_REASONS": "advanced",
|
|
2137
2227
|
"AUTO_MODE_BASE_PROMPT": "advanced",
|
|
2228
|
+
"AUTO_MODE_CLASSIFIER_MAX_TOKENS": "advanced",
|
|
2138
2229
|
"AUTO_MODE_DEFAULTS_SENTINEL": "advanced",
|
|
2139
2230
|
"AUTO_MODE_DENIAL_AUTO_DENY_DEFAULT_MS": "advanced",
|
|
2140
2231
|
"AUTO_MODE_DENIAL_LIMIT_DEFAULTS": "advanced",
|
|
@@ -2188,6 +2279,7 @@
|
|
|
2188
2279
|
"AutoModeArmingFace": "advanced",
|
|
2189
2280
|
"AutoModeArmingFold": "advanced",
|
|
2190
2281
|
"AutoModeArmingRecipe": "advanced",
|
|
2282
|
+
"AutoModeClassified": "advanced",
|
|
2191
2283
|
"AutoModeClassifierCompletion": "advanced",
|
|
2192
2284
|
"AutoModeClassifyFn": "advanced",
|
|
2193
2285
|
"AutoModeClassifyInput": "advanced",
|
|
@@ -2254,7 +2346,6 @@
|
|
|
2254
2346
|
"CODE_REVIEW_PROMPT": "advanced",
|
|
2255
2347
|
"CODE_ROLE": "advanced",
|
|
2256
2348
|
"CODE_SYSTEM_PROMPT": "advanced",
|
|
2257
|
-
"COMPACTABLE_TOOLS": "advanced",
|
|
2258
2349
|
"COMPLIANCE_CAPABILITIES": "advanced",
|
|
2259
2350
|
"CONFIG_CATALOG_VERSION": "advanced",
|
|
2260
2351
|
"CONSOLIDATION_DEFAULTS": "advanced",
|
|
@@ -2382,7 +2473,6 @@
|
|
|
2382
2473
|
"CrossSessionInboundVerdict": "advanced",
|
|
2383
2474
|
"CrossSessionSettingSource": "advanced",
|
|
2384
2475
|
"DECLARE_DONE_TOOL_NAME": "advanced",
|
|
2385
|
-
"DEFAULT_BUDGET_EXEMPT_TOOLS": "advanced",
|
|
2386
2476
|
"DEFAULT_COMPACTION_INSTRUCTIONS": "advanced",
|
|
2387
2477
|
"DEFAULT_CONSOLIDATION_BAND": "internal",
|
|
2388
2478
|
"DEFAULT_CONSOLIDATION_MAX_NOTES": "internal",
|
|
@@ -2412,6 +2502,7 @@
|
|
|
2412
2502
|
"DISCUSSION_WORKFLOW_NAME": "advanced",
|
|
2413
2503
|
"DISTILLER_DEFAULT_MAX_INPUTS_PER_PRODUCT": "advanced",
|
|
2414
2504
|
"DURABLE_AGENT_HANDLE_RE": "advanced",
|
|
2505
|
+
"DURABLE_HISTORY_NAMES": "internal",
|
|
2415
2506
|
"DecisionReason": "advanced",
|
|
2416
2507
|
"DefaultPackDescription": "advanced",
|
|
2417
2508
|
"DegradationInfo": "advanced",
|
|
@@ -2440,6 +2531,8 @@
|
|
|
2440
2531
|
"EVENT_PROMPT_REGISTRY": "advanced",
|
|
2441
2532
|
"EXECUTION_ENVIRONMENT": "advanced",
|
|
2442
2533
|
"EXECUTION_ENVIRONMENT_OPEN_READS": "advanced",
|
|
2534
|
+
"EXECUTION_OUTCOME_RECORD_WORDS": "advanced",
|
|
2535
|
+
"EXECUTION_RECORD_LEAVES_ROW_UNRECORDED": "advanced",
|
|
2443
2536
|
"EXPLORE_SYSTEM_PROMPT": "advanced",
|
|
2444
2537
|
"EXPLORE_WHEN_TO_USE": "advanced",
|
|
2445
2538
|
"EXPLORE_WHEN_TO_USE_LEAN": "advanced",
|
|
@@ -2474,6 +2567,11 @@
|
|
|
2474
2567
|
"ExecutionEnvFactoryContext": "advanced",
|
|
2475
2568
|
"ExecutionError": "stable",
|
|
2476
2569
|
"ExecutionErrorCode": "internal",
|
|
2570
|
+
"ExecutionOutcomeConflictError": "stable",
|
|
2571
|
+
"ExecutionOutcomeRecordWord": "stable",
|
|
2572
|
+
"ExecutionRecordRowFacts": "advanced",
|
|
2573
|
+
"ExecutionRecordTableCoversEveryWord": "advanced",
|
|
2574
|
+
"ExecutionVerdict": "advanced",
|
|
2477
2575
|
"ExplainInput": "advanced",
|
|
2478
2576
|
"ExposedMemoryIndexRow": "advanced",
|
|
2479
2577
|
"ExposedMemorySearchHit": "advanced",
|
|
@@ -2555,7 +2653,7 @@
|
|
|
2555
2653
|
"GovernanceCode": "advanced",
|
|
2556
2654
|
"GovernanceRetryClass": "advanced",
|
|
2557
2655
|
"GraderEnv": "advanced",
|
|
2558
|
-
"
|
|
2656
|
+
"HANDS_BAND_TAGS": "advanced",
|
|
2559
2657
|
"HARNESS_SECTION_ANCHOR": "advanced",
|
|
2560
2658
|
"HandsBandOptions": "stable",
|
|
2561
2659
|
"HarvestRejection": "advanced",
|
|
@@ -2696,6 +2794,7 @@
|
|
|
2696
2794
|
"MONITOR_DEFAULT_TIMEOUT_MS": "advanced",
|
|
2697
2795
|
"MONITOR_MAX_BATCHES_PER_MINUTE": "advanced",
|
|
2698
2796
|
"MONITOR_MAX_TIMEOUT_MS": "advanced",
|
|
2797
|
+
"MOUNT_TAG_IN_HANDS_BAND": "advanced",
|
|
2699
2798
|
"MailboxAppendMessage": "advanced",
|
|
2700
2799
|
"MailboxCrossProcessContractHooks": "advanced",
|
|
2701
2800
|
"MailboxCrossProcessVerdict": "advanced",
|
|
@@ -2725,6 +2824,7 @@
|
|
|
2725
2824
|
"McpRefreshResult": "advanced",
|
|
2726
2825
|
"McpServerSpec": "advanced",
|
|
2727
2826
|
"McpServerStatus": "advanced",
|
|
2827
|
+
"McpToolFace": "internal",
|
|
2728
2828
|
"MediaStripInfo": "advanced",
|
|
2729
2829
|
"MemoryAdmissionInput": "advanced",
|
|
2730
2830
|
"MemoryAdmissionOutcome": "advanced",
|
|
@@ -2819,6 +2919,7 @@
|
|
|
2819
2919
|
"ORPHAN_ADOPT_MAX_DEFAULT": "advanced",
|
|
2820
2920
|
"ORPHAN_ADOPT_WINDOW_MS_DEFAULT": "advanced",
|
|
2821
2921
|
"OUTPUT_EFFICIENCY": "advanced",
|
|
2922
|
+
"OffCapabilityModel": "advanced",
|
|
2822
2923
|
"OnAsk": "advanced",
|
|
2823
2924
|
"OnElicit": "advanced",
|
|
2824
2925
|
"OnQuestion": "advanced",
|
|
@@ -3044,12 +3145,16 @@
|
|
|
3044
3145
|
"RECOMMENDED_SENSITIVE_PATTERNS": "advanced",
|
|
3045
3146
|
"REMOTE_HARVEST_PER_FILE_BYTES": "advanced",
|
|
3046
3147
|
"REMOTE_MASS_DELETION_FUSE_RATIO": "advanced",
|
|
3148
|
+
"RENDER_HINT_ACTIVITY_MAX_CHARS": "advanced",
|
|
3149
|
+
"RENDER_HINT_MAX_CHARS": "advanced",
|
|
3150
|
+
"RENDER_HINT_MAX_LIST": "advanced",
|
|
3047
3151
|
"REPORT_FINDINGS_TOOL_NAME": "internal",
|
|
3048
3152
|
"RESOURCE_CHECKPOINT_VERSION": "advanced",
|
|
3049
3153
|
"RETIRED_TOOL_NAMES": "advanced",
|
|
3050
3154
|
"RETRYABLE_REMOTE_ERROR_CODES": "advanced",
|
|
3051
3155
|
"ROLE_TIER_DEFAULTS": "advanced",
|
|
3052
3156
|
"ROOT_ADOPTION_FILE": "advanced",
|
|
3157
|
+
"ROSTER_SOURCES": "advanced",
|
|
3053
3158
|
"ROUTE_ADJUDICATION_CONFORMANCE_CORPUS": "advanced",
|
|
3054
3159
|
"RULE_OFFERS_ABSENCE_BASELINE": "advanced",
|
|
3055
3160
|
"RULE_SYNC_DROP_CODES": "advanced",
|
|
@@ -3130,6 +3235,7 @@
|
|
|
3130
3235
|
"RosterAccess": "advanced",
|
|
3131
3236
|
"RosterEntry": "advanced",
|
|
3132
3237
|
"RosterGcOptions": "advanced",
|
|
3238
|
+
"RosterSource": "advanced",
|
|
3133
3239
|
"RosterStore": "advanced",
|
|
3134
3240
|
"RouteAdjudication": "advanced",
|
|
3135
3241
|
"RouteAdjudicationVector": "advanced",
|
|
@@ -3151,6 +3257,7 @@
|
|
|
3151
3257
|
"RuleConsentDeps": "advanced",
|
|
3152
3258
|
"RuleDeleteDelta": "advanced",
|
|
3153
3259
|
"RuleDot": "advanced",
|
|
3260
|
+
"RuleFaceView": "advanced",
|
|
3154
3261
|
"RuleOffer": "advanced",
|
|
3155
3262
|
"RuleOffer2": "advanced",
|
|
3156
3263
|
"RuleOfferBatchMember": "advanced",
|
|
@@ -3344,8 +3451,17 @@
|
|
|
3344
3451
|
"TEAM_DISCUSSION_SCRIPT": "advanced",
|
|
3345
3452
|
"TEAM_DISCUSSION_WORKFLOW_NAME": "advanced",
|
|
3346
3453
|
"TOKEN_CHECKPOINT_VERSION": "advanced",
|
|
3454
|
+
"TOOL_APPROVAL_CARDS": "advanced",
|
|
3455
|
+
"TOOL_CONFORMANCE_VECTORS": "advanced",
|
|
3456
|
+
"TOOL_CONTRACT_MAX_CHARS": "advanced",
|
|
3457
|
+
"TOOL_FAMILIES": "advanced",
|
|
3458
|
+
"TOOL_KEYS_MAX": "advanced",
|
|
3459
|
+
"TOOL_KEY_MAX_CHARS": "advanced",
|
|
3347
3460
|
"TOOL_MODEL_GATE_CLASSES": "advanced",
|
|
3461
|
+
"TOOL_MOUNT_TAGS": "advanced",
|
|
3462
|
+
"TOOL_PATH_ACCESSES": "advanced",
|
|
3348
3463
|
"TOOL_RESULT_REF_CONFLICT_CODE": "advanced",
|
|
3464
|
+
"TOOL_WIRE_NAME_MAX_CHARS": "advanced",
|
|
3349
3465
|
"TSchema": "advanced",
|
|
3350
3466
|
"TaskAccess": "advanced",
|
|
3351
3467
|
"TaskEvent": "stable",
|
|
@@ -3383,22 +3499,35 @@
|
|
|
3383
3499
|
"ThinkingLevel": "internal",
|
|
3384
3500
|
"TokenCounts": "advanced",
|
|
3385
3501
|
"ToolActivity": "advanced",
|
|
3502
|
+
"ToolApprovalCard": "advanced",
|
|
3386
3503
|
"ToolCall": "stable",
|
|
3504
|
+
"ToolCallFace": "advanced",
|
|
3505
|
+
"ToolCallIdentity": "advanced",
|
|
3506
|
+
"ToolCallLike": "advanced",
|
|
3387
3507
|
"ToolCallRequest": "advanced",
|
|
3508
|
+
"ToolCatalogEntry": "advanced",
|
|
3509
|
+
"ToolConformanceVector": "advanced",
|
|
3388
3510
|
"ToolContentOrigin": "advanced",
|
|
3389
3511
|
"ToolContractDescriptor": "advanced",
|
|
3390
3512
|
"ToolDisclosureManifest": "advanced",
|
|
3391
3513
|
"ToolEffect": "advanced",
|
|
3392
3514
|
"ToolExecuteContext": "advanced",
|
|
3515
|
+
"ToolFaceDeclaration": "advanced",
|
|
3516
|
+
"ToolFamily": "advanced",
|
|
3393
3517
|
"ToolFingerprintInput": "advanced",
|
|
3518
|
+
"ToolIdentity": "advanced",
|
|
3394
3519
|
"ToolInputValidationContext": "internal",
|
|
3395
3520
|
"ToolInputVerdict": "internal",
|
|
3396
3521
|
"ToolModelGateRule": "advanced",
|
|
3522
|
+
"ToolMountTag": "advanced",
|
|
3397
3523
|
"ToolOrigin": "advanced",
|
|
3524
|
+
"ToolPathAccess": "advanced",
|
|
3525
|
+
"ToolPathTarget": "advanced",
|
|
3398
3526
|
"ToolPolicy": "stable",
|
|
3399
3527
|
"ToolPolicyNameSets": "advanced",
|
|
3400
3528
|
"ToolPolicyProjection": "advanced",
|
|
3401
3529
|
"ToolPolicyProjectionComponent": "advanced",
|
|
3530
|
+
"ToolRenderHints": "advanced",
|
|
3402
3531
|
"ToolResultDeletionReport": "stable",
|
|
3403
3532
|
"ToolResultMessage": "advanced",
|
|
3404
3533
|
"ToolResultProvenance": "stable",
|
|
@@ -3406,6 +3535,12 @@
|
|
|
3406
3535
|
"ToolResultSlice": "stable",
|
|
3407
3536
|
"ToolResultStore": "stable",
|
|
3408
3537
|
"ToolReturn": "advanced",
|
|
3538
|
+
"ToolRoster": "advanced",
|
|
3539
|
+
"ToolRosterDelta": "advanced",
|
|
3540
|
+
"ToolRosterDeltaSeat": "advanced",
|
|
3541
|
+
"ToolRosterEntry": "advanced",
|
|
3542
|
+
"ToolRosterRenderHints": "advanced",
|
|
3543
|
+
"ToolRuleFace": "advanced",
|
|
3409
3544
|
"ToolSpec": "stable",
|
|
3410
3545
|
"TraceEvent": "advanced",
|
|
3411
3546
|
"TracerHook": "advanced",
|
|
@@ -3534,6 +3669,7 @@
|
|
|
3534
3669
|
"appendHopToken": "advanced",
|
|
3535
3670
|
"appendPendingSteer": "stable",
|
|
3536
3671
|
"applyFileRestoreViaEnv": "advanced",
|
|
3672
|
+
"applyMcpToolFaces": "internal",
|
|
3537
3673
|
"applyTombstones": "advanced",
|
|
3538
3674
|
"archiveDistillerPlan": "advanced",
|
|
3539
3675
|
"artifactDeclarations": "advanced",
|
|
@@ -3564,6 +3700,7 @@
|
|
|
3564
3700
|
"boundedTail": "stable",
|
|
3565
3701
|
"brainToRuntime": "advanced",
|
|
3566
3702
|
"brandLspFailure": "advanced",
|
|
3703
|
+
"budgetExemptToolNames": "advanced",
|
|
3567
3704
|
"buildAgentPollDetails": "advanced",
|
|
3568
3705
|
"buildAutoModePrompt": "advanced",
|
|
3569
3706
|
"buildCrossSessionEnvelope": "advanced",
|
|
@@ -3593,12 +3730,18 @@
|
|
|
3593
3730
|
"capAggregateToolResults": "advanced",
|
|
3594
3731
|
"captureBaseline": "advanced",
|
|
3595
3732
|
"captureFileBackupViaEnv": "advanced",
|
|
3733
|
+
"catalogEntriesNamed": "advanced",
|
|
3734
|
+
"catalogRuleFaceOf": "advanced",
|
|
3735
|
+
"catalogRuleFaceView": "advanced",
|
|
3736
|
+
"catalogToolNames": "advanced",
|
|
3596
3737
|
"ccSidecarToMessages": "advanced",
|
|
3597
3738
|
"chargeUsageRecord": "advanced",
|
|
3598
3739
|
"checkInvariants": "advanced",
|
|
3599
3740
|
"checkToolPolicyProjection": "advanced",
|
|
3741
|
+
"checkpointExecutionRecorded": "stable",
|
|
3600
3742
|
"checkpointFrom": "advanced",
|
|
3601
3743
|
"checkpointStoreContract": "advanced",
|
|
3744
|
+
"checkpointStoreExecutionUndeclared": "advanced",
|
|
3602
3745
|
"checkpointVersionOf": "advanced",
|
|
3603
3746
|
"clampHopChain": "advanced",
|
|
3604
3747
|
"classifierMayAnswer": "advanced",
|
|
@@ -3613,6 +3756,7 @@
|
|
|
3613
3756
|
"combinePolicies": "advanced",
|
|
3614
3757
|
"committedDistilledOf": "stable",
|
|
3615
3758
|
"committedOriginOf": "stable",
|
|
3759
|
+
"compactableToolNames": "advanced",
|
|
3616
3760
|
"compileReadDeny": "advanced",
|
|
3617
3761
|
"compileWriteProtection": "advanced",
|
|
3618
3762
|
"complianceCallDenial": "advanced",
|
|
@@ -3689,6 +3833,7 @@
|
|
|
3689
3833
|
"createSessionRulePolicy": "internal",
|
|
3690
3834
|
"createSkillsFromDirectory": "advanced",
|
|
3691
3835
|
"createSqlTool": "advanced",
|
|
3836
|
+
"createStructuredProjector": "internal",
|
|
3692
3837
|
"createSubagentTool": "stable",
|
|
3693
3838
|
"createTaskListTools": "advanced",
|
|
3694
3839
|
"createTaskOutputTool": "advanced",
|
|
@@ -3704,6 +3849,8 @@
|
|
|
3704
3849
|
"debitLedger": "advanced",
|
|
3705
3850
|
"decideAutoPromote": "advanced",
|
|
3706
3851
|
"decisionText": "advanced",
|
|
3852
|
+
"declaredOffSpelling": "advanced",
|
|
3853
|
+
"declaredPathTargetOf": "advanced",
|
|
3707
3854
|
"decodeCcPeerFrame": "advanced",
|
|
3708
3855
|
"decodeScopeAttribute": "advanced",
|
|
3709
3856
|
"decodeScopeSegment": "advanced",
|
|
@@ -3736,9 +3883,12 @@
|
|
|
3736
3883
|
"describePeerDropReasons": "advanced",
|
|
3737
3884
|
"describePeerIdleSubscription": "advanced",
|
|
3738
3885
|
"describeStaticWiring": "stable",
|
|
3886
|
+
"describeToolCatalog": "advanced",
|
|
3887
|
+
"describeToolConformanceVectors": "advanced",
|
|
3739
3888
|
"detectCleanArmVerbatimLeak": "advanced",
|
|
3740
3889
|
"detectSecret": "advanced",
|
|
3741
3890
|
"devWorkflowScriptRunner": "stable",
|
|
3891
|
+
"diffToolRoster": "advanced",
|
|
3742
3892
|
"directoryRuleAdmits": "advanced",
|
|
3743
3893
|
"distilledEquals": "stable",
|
|
3744
3894
|
"dotAtOrBelowFrontier": "advanced",
|
|
@@ -3760,6 +3910,7 @@
|
|
|
3760
3910
|
"enforcePromotableWriteGate": "advanced",
|
|
3761
3911
|
"enforceSecretWriteGate": "advanced",
|
|
3762
3912
|
"enforceStructuredNoteSecretGate": "advanced",
|
|
3913
|
+
"engineCardTypes": "advanced",
|
|
3763
3914
|
"enqueueMemoryAnnouncement": "advanced",
|
|
3764
3915
|
"ensureDir": "advanced",
|
|
3765
3916
|
"entryFromFile": "advanced",
|
|
@@ -3767,6 +3918,8 @@
|
|
|
3767
3918
|
"err": "stable",
|
|
3768
3919
|
"errorClassOf": "advanced",
|
|
3769
3920
|
"eventDefaultOn": "advanced",
|
|
3921
|
+
"executionRecordDisposition": "stable",
|
|
3922
|
+
"executionVerdict": "advanced",
|
|
3770
3923
|
"expandLexicalTerms": "advanced",
|
|
3771
3924
|
"expandTiers": "advanced",
|
|
3772
3925
|
"explainPromptAssembly": "advanced",
|
|
@@ -3780,6 +3933,7 @@
|
|
|
3780
3933
|
"fileHistoryResolveTrackKey": "advanced",
|
|
3781
3934
|
"fileHistoryStoreContract": "advanced",
|
|
3782
3935
|
"fileHistoryTrackKeyOf": "advanced",
|
|
3936
|
+
"fileOpAccessOf": "advanced",
|
|
3783
3937
|
"fileSessionCaptureRecordStore": "advanced",
|
|
3784
3938
|
"findAdmittingRule": "advanced",
|
|
3785
3939
|
"findOrphanToolCalls": "advanced",
|
|
@@ -3814,6 +3968,7 @@
|
|
|
3814
3968
|
"gitCheckIgnoreFilter": "advanced",
|
|
3815
3969
|
"governanceRetryClass": "advanced",
|
|
3816
3970
|
"guardedMemoryStore": "advanced",
|
|
3971
|
+
"handBandEffects": "advanced",
|
|
3817
3972
|
"harnessContext": "advanced",
|
|
3818
3973
|
"harvestFilesToPatches": "advanced",
|
|
3819
3974
|
"hasAuthCarrier": "advanced",
|
|
@@ -3824,13 +3979,16 @@
|
|
|
3824
3979
|
"hasToolContract": "advanced",
|
|
3825
3980
|
"htmlToText": "advanced",
|
|
3826
3981
|
"inlineUntrusted": "advanced",
|
|
3982
|
+
"inputKeysOf": "advanced",
|
|
3827
3983
|
"inspectDegenerate": "advanced",
|
|
3828
3984
|
"isAliasModelId": "advanced",
|
|
3829
3985
|
"isAskOrigin": "advanced",
|
|
3830
3986
|
"isCanonicalPeerAddress": "advanced",
|
|
3831
3987
|
"isCrossSessionInboundSetting": "advanced",
|
|
3988
|
+
"isDeclaredWrite": "advanced",
|
|
3832
3989
|
"isDelegatedAgentTerminal": "advanced",
|
|
3833
3990
|
"isDeniedBy": "advanced",
|
|
3991
|
+
"isExecutionOutcomeRecordWord": "advanced",
|
|
3834
3992
|
"isGateKind": "advanced",
|
|
3835
3993
|
"isInstructionEntry": "advanced",
|
|
3836
3994
|
"isIsolated": "advanced",
|
|
@@ -3843,6 +4001,7 @@
|
|
|
3843
4001
|
"isPermissionModeClass": "advanced",
|
|
3844
4002
|
"isPersonalScope": "advanced",
|
|
3845
4003
|
"isProcessLive": "advanced",
|
|
4004
|
+
"isProtectedWrite": "advanced",
|
|
3846
4005
|
"isQuestionUnavailable": "advanced",
|
|
3847
4006
|
"isRemoteExecutionEnv": "advanced",
|
|
3848
4007
|
"isRetryableRemoteErrorCode": "advanced",
|
|
@@ -3866,6 +4025,7 @@
|
|
|
3866
4025
|
"joinFrontiers": "advanced",
|
|
3867
4026
|
"joinRuleStates": "advanced",
|
|
3868
4027
|
"judgeCrossSessionInbound": "advanced",
|
|
4028
|
+
"judgeParkedToolIdentity": "advanced",
|
|
3869
4029
|
"judgePeerAdmission": "advanced",
|
|
3870
4030
|
"judgePeerRecordFile": "advanced",
|
|
3871
4031
|
"killProcessTree": "internal",
|
|
@@ -3909,6 +4069,7 @@
|
|
|
3909
4069
|
"mergeRecallHits": "advanced",
|
|
3910
4070
|
"mergeWorkflowArgs": "advanced",
|
|
3911
4071
|
"migrateScope": "advanced",
|
|
4072
|
+
"mintCapabilityId": "advanced",
|
|
3912
4073
|
"mintCheckpointId": "advanced",
|
|
3913
4074
|
"mintCheckpointToken": "advanced",
|
|
3914
4075
|
"mintExposurePartitionedPlan": "advanced",
|
|
@@ -3940,6 +4101,7 @@
|
|
|
3940
4101
|
"orgRuleVerdictFor": "advanced",
|
|
3941
4102
|
"originEquals": "stable",
|
|
3942
4103
|
"oversizeJournalResult": "advanced",
|
|
4104
|
+
"parkedToolIdentity": "advanced",
|
|
3943
4105
|
"parseAllowRuleText": "advanced",
|
|
3944
4106
|
"parseAutoModeResponse": "advanced",
|
|
3945
4107
|
"parseCrossSessionEnvelope": "advanced",
|
|
@@ -3957,6 +4119,10 @@
|
|
|
3957
4119
|
"parseScopeKey": "advanced",
|
|
3958
4120
|
"parseTeacherAdvice": "advanced",
|
|
3959
4121
|
"parseWorkflowMeta": "advanced",
|
|
4122
|
+
"pathConfinableWriteToolNames": "advanced",
|
|
4123
|
+
"pathTargetOf": "advanced",
|
|
4124
|
+
"pathTargetValue": "advanced",
|
|
4125
|
+
"pathTargetingToolNames": "advanced",
|
|
3960
4126
|
"pathToUri": "advanced",
|
|
3961
4127
|
"pathWithinRoot": "advanced",
|
|
3962
4128
|
"pauseOf": "advanced",
|
|
@@ -3980,6 +4146,7 @@
|
|
|
3980
4146
|
"pgQuery": "advanced",
|
|
3981
4147
|
"planParseRepairs": "advanced",
|
|
3982
4148
|
"precheckEditedRuleText": "advanced",
|
|
4149
|
+
"predictMountedToolNames": "advanced",
|
|
3983
4150
|
"prepareCardApproval": "advanced",
|
|
3984
4151
|
"prepareCcImport": "advanced",
|
|
3985
4152
|
"prepareStarterBatch": "advanced",
|
|
@@ -3990,6 +4157,7 @@
|
|
|
3990
4157
|
"projectToolManifest": "advanced",
|
|
3991
4158
|
"projectionsToWriteBack": "advanced",
|
|
3992
4159
|
"promptTokensOf": "internal",
|
|
4160
|
+
"protectivePathTargetOf": "advanced",
|
|
3993
4161
|
"protocolOf": "advanced",
|
|
3994
4162
|
"pruneWorktrees": "advanced",
|
|
3995
4163
|
"queryBackgroundAgents": "advanced",
|
|
@@ -4089,6 +4257,8 @@
|
|
|
4089
4257
|
"routePeerIdleNotice": "advanced",
|
|
4090
4258
|
"routeRefusalText": "advanced",
|
|
4091
4259
|
"ruleAdmitsCommand": "advanced",
|
|
4260
|
+
"ruleFaceOfInstance": "advanced",
|
|
4261
|
+
"ruleFacesFromRoster": "advanced",
|
|
4092
4262
|
"ruleOffersOfRecord": "advanced",
|
|
4093
4263
|
"ruleSourceOf": "advanced",
|
|
4094
4264
|
"ruleSyncVector": "advanced",
|
|
@@ -4109,6 +4279,7 @@
|
|
|
4109
4279
|
"runWithTeacher": "stable",
|
|
4110
4280
|
"runWithVerification": "advanced",
|
|
4111
4281
|
"runWorkflow": "stable",
|
|
4282
|
+
"sameExecutionRecord": "advanced",
|
|
4112
4283
|
"sameRuleOwner": "advanced",
|
|
4113
4284
|
"sameScope": "advanced",
|
|
4114
4285
|
"sanitizeAutoModeArmingRecipe": "advanced",
|
|
@@ -4145,6 +4316,7 @@
|
|
|
4145
4316
|
"sharpImageDownsampler": "advanced",
|
|
4146
4317
|
"sharpImageResizer": "advanced",
|
|
4147
4318
|
"signalProcessTree": "internal",
|
|
4319
|
+
"skillScopeWriteToolNames": "advanced",
|
|
4148
4320
|
"snapshotFrozenPaths": "advanced",
|
|
4149
4321
|
"specError": "advanced",
|
|
4150
4322
|
"splitWorkflowMeta": "advanced",
|
|
@@ -4168,8 +4340,12 @@
|
|
|
4168
4340
|
"termSet": "stable",
|
|
4169
4341
|
"terminalForTier": "advanced",
|
|
4170
4342
|
"terminalProjection": "internal",
|
|
4343
|
+
"thinkingOffExpressible": "advanced",
|
|
4171
4344
|
"tightenTaskSpec": "stable",
|
|
4172
4345
|
"toA2ATaskState": "advanced",
|
|
4346
|
+
"toolCallFaceOf": "advanced",
|
|
4347
|
+
"toolFaceProblem": "internal",
|
|
4348
|
+
"toolIdentityOf": "advanced",
|
|
4173
4349
|
"toolPolicyNameSets": "advanced",
|
|
4174
4350
|
"toolResultContentSegment": "advanced",
|
|
4175
4351
|
"toolResultProvenanceOf": "advanced",
|