@sema-agent/core 7.5.2 → 7.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +67 -0
- package/dist/agents/agent-transcript-tool.d.ts +2 -2
- package/dist/agents/cascade.d.ts +4 -5
- package/dist/agents/cascade.js +12 -10
- package/dist/agents/repair-loop.d.ts +7 -5
- package/dist/agents/repair-loop.js +13 -15
- package/dist/agents/retain-ledger.d.ts +2 -3
- package/dist/agents/send-message-tool.d.ts +2 -2
- package/dist/agents/session-util.d.ts +2 -2
- package/dist/agents/subagent.d.ts +27 -46
- package/dist/agents/subagent.js +119 -105
- package/dist/agents/suspend-guard.d.ts +31 -19
- package/dist/agents/suspend-guard.js +14 -8
- package/dist/agents/teacher.d.ts +2 -2
- package/dist/agents/teacher.js +9 -9
- package/dist/agents/team.d.ts +6 -5
- package/dist/agents/team.js +10 -8
- package/dist/agents/verify.d.ts +8 -9
- package/dist/agents/verify.js +17 -17
- package/dist/core/a2a.js +2 -1
- package/dist/core/agent-definition.d.ts +172 -0
- package/dist/core/agent-definition.js +1 -0
- package/dist/core/ask-origin.d.ts +60 -7
- package/dist/core/ask-origin.js +26 -1
- package/dist/core/checkpoint-store.d.ts +78 -76
- package/dist/core/checkpoint-store.js +17 -1
- package/dist/core/delegation-frames.d.ts +298 -0
- package/dist/core/delegation-frames.js +21 -0
- package/dist/core/engine-notice.d.ts +555 -0
- package/dist/core/engine-notice.js +55 -0
- package/dist/core/gate-fold.d.ts +12 -0
- package/dist/core/gate-fold.js +158 -0
- package/dist/core/gate-lanes.d.ts +93 -0
- package/dist/core/gate-lanes.js +626 -0
- package/dist/core/gate-outcome.d.ts +189 -0
- package/dist/core/gate-outcome.js +70 -0
- package/dist/core/hands-band.d.ts +134 -0
- package/dist/core/hands-band.js +1 -0
- package/dist/core/hooks.d.ts +22 -177
- package/dist/core/hooks.js +53 -851
- package/dist/core/mcp-failure.d.ts +142 -0
- package/dist/core/mcp-failure.js +145 -0
- package/dist/core/mcp-server-spec.d.ts +217 -0
- package/dist/core/mcp-server-spec.js +1 -0
- package/dist/core/mcp.d.ts +21 -77
- package/dist/core/mcp.js +76 -150
- package/dist/core/model-seat.d.ts +99 -0
- package/dist/core/model-seat.js +1 -0
- package/dist/core/pause-registry.d.ts +131 -0
- package/dist/core/pause-registry.js +27 -0
- package/dist/core/reminder-mint.d.ts +10 -0
- package/dist/core/reminder-mint.js +3 -0
- package/dist/core/runner/assemble-result.d.ts +32 -41
- package/dist/core/runner/assemble-result.js +55 -74
- package/dist/core/runner/contracts.d.ts +427 -69
- package/dist/core/runner/denial-limit-arms.d.ts +1 -1
- package/dist/core/runner/denial-limit-arms.js +3 -3
- package/dist/core/runner/gate-exit.d.ts +242 -0
- package/dist/core/runner/gate-exit.js +124 -0
- package/dist/core/runner/park-commit.d.ts +17 -23
- package/dist/core/runner/park-commit.js +14 -15
- package/dist/core/runner/prepare-ask-lane.d.ts +0 -3
- package/dist/core/runner/prepare-ask-lane.js +3 -5
- package/dist/core/runner/prepare-boundary-parks.d.ts +3 -6
- package/dist/core/runner/prepare-boundary-parks.js +3 -3
- package/dist/core/runner/prepare-caps-and-workflow.d.ts +2 -7
- package/dist/core/runner/prepare-caps-and-workflow.js +1 -1
- package/dist/core/runner/prepare-delegation-surface.d.ts +2 -7
- package/dist/core/runner/prepare-gate-stations.d.ts +4 -7
- package/dist/core/runner/prepare-gate-stations.js +29 -54
- package/dist/core/runner/prepare-inherited-gate.js +1 -1
- package/dist/core/runner/prepare-memory.d.ts +44 -26
- package/dist/core/runner/prepare-park-ask.d.ts +2 -4
- package/dist/core/runner/prepare-park-ask.js +5 -5
- package/dist/core/runner/prepare-task.d.ts +2 -2
- package/dist/core/runner/prepare-task.js +8 -9
- package/dist/core/runner/prepare-wiring-manifest.d.ts +7 -15
- package/dist/core/runner/prepare-wiring-manifest.js +9 -10
- package/dist/core/runner/runtask.d.ts +20 -102
- package/dist/core/runner/runtask.js +119 -121
- package/dist/core/runner/terminal-projection.d.ts +22 -0
- package/dist/core/runner/terminal-projection.js +28 -0
- package/dist/core/runner-deps.d.ts +1416 -0
- package/dist/core/runner-deps.js +1 -0
- package/dist/core/runtime-caps.d.ts +164 -0
- package/dist/core/runtime-caps.js +1 -0
- package/dist/core/store-contracts/checkpoint-store-contract.d.ts +4 -1
- package/dist/core/store-contracts/checkpoint-store-contract.js +8 -2
- package/dist/core/task-event.d.ts +910 -0
- package/dist/core/task-event.js +1 -0
- package/dist/core/task-limits.d.ts +110 -0
- package/dist/core/task-limits.js +1 -0
- package/dist/core/task-result.d.ts +809 -0
- package/dist/core/task-result.js +1 -0
- package/dist/core/task-spec.d.ts +1370 -0
- package/dist/core/task-spec.js +1 -0
- package/dist/core/task-stream.d.ts +382 -0
- package/dist/core/task-stream.js +1 -0
- package/dist/core/terminal-cause.d.ts +137 -0
- package/dist/core/terminal-cause.js +9 -0
- package/dist/core/tool-policy.d.ts +43 -139
- package/dist/core/tool-policy.js +79 -112
- package/dist/core/tool-spec.d.ts +1174 -0
- package/dist/core/tool-spec.js +1 -0
- package/dist/core/types.d.ts +27 -7789
- package/dist/core/types.js +2 -76
- package/dist/core/warm-resume.d.ts +2 -2
- package/dist/core/wiring-manifest.d.ts +6 -3
- package/dist/core/workflow-journal-store.js +3 -4
- package/dist/engine/harness/agent-harness.d.ts +1 -1
- package/dist/index.d.ts +12 -8
- package/dist/index.js +9 -6
- package/dist/orchestration/builtin-workflows.d.ts +2 -2
- package/dist/orchestration/builtin-workflows.js +1 -1
- package/dist/orchestration/goal.d.ts +2 -2
- package/dist/orchestration/goal.js +8 -7
- package/dist/orchestration/run-spec.d.ts +2 -2
- package/dist/orchestration/run-spec.js +5 -3
- package/dist/orchestration/run-workflow-tool.d.ts +4 -4
- package/dist/orchestration/run-workflow-tool.js +4 -4
- package/dist/orchestration/workflow-governance.d.ts +4 -4
- package/dist/orchestration/workflow-governance.js +4 -2
- package/dist/orchestration/workflow-primitives.d.ts +1 -1
- package/dist/orchestration/workflow-primitives.js +1 -1
- package/dist/orchestration/workflow.d.ts +15 -4
- package/dist/orchestration/workflow.js +64 -39
- package/dist/prompts/supervisor.d.ts +1 -1
- package/dist/prompts/supervisor.js +3 -3
- package/dist/scenarios/scenario-registry.d.ts +3 -3
- package/dist/scenarios/scenario-registry.js +1 -1
- package/dist/scenarios/teacher-quickstart.d.ts +2 -2
- package/dist/server/http.d.ts +2 -2
- package/dist/stores/file/fs-atomic.d.ts +88 -12
- package/dist/stores/file/fs-atomic.js +184 -55
- package/dist/stores/file/index.d.ts +1 -0
- package/dist/stores/file/index.js +1 -0
- package/package.json +3 -1
- package/test/export-surface.snapshot.json +82 -22
|
@@ -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": 2102,
|
|
5
5
|
"exports": {
|
|
6
6
|
"A2ATaskState": "type",
|
|
7
7
|
"A2ATaskStateReversal": "type",
|
|
@@ -20,10 +20,8 @@
|
|
|
20
20
|
"AGGREGATE_MEDIA_BUDGET_BYTES": "variable",
|
|
21
21
|
"AGGREGATE_TOOL_RESULT_BUDGET_CHARS": "variable",
|
|
22
22
|
"ANNOUNCEMENTS_FILE": "variable",
|
|
23
|
-
"APPROVAL_SETTLED_BY_VALUES": "variable",
|
|
24
23
|
"APPROVER_ATTRIBUTION_MAX_CHARS": "variable",
|
|
25
24
|
"ARTIFACT_LIMITS": "variable",
|
|
26
|
-
"ASK_DENY_RESOLUTION_VALUES": "variable",
|
|
27
25
|
"ASK_EVIDENCE_ABSENCE_VALUES": "variable",
|
|
28
26
|
"ASK_ORIGINS": "variable",
|
|
29
27
|
"AUTONOMOUS_LOOP_DYNAMIC_SENTINEL": "variable",
|
|
@@ -63,12 +61,10 @@
|
|
|
63
61
|
"AggregateBudgetOptions": "interface",
|
|
64
62
|
"AnthropicBrainConfig": "interface",
|
|
65
63
|
"AppendLog": "class",
|
|
66
|
-
"ApprovalSettledBy": "type",
|
|
67
64
|
"ArtifactVerifyResult": "type",
|
|
68
65
|
"AskAnswerContinuationSource": "type",
|
|
69
66
|
"AskCarry": "interface",
|
|
70
67
|
"AskDelegationProvenance": "interface",
|
|
71
|
-
"AskDenyResolution": "type",
|
|
72
68
|
"AskEffective": "type",
|
|
73
69
|
"AskEvidenceAbsence": "type",
|
|
74
70
|
"AskOrigin": "type",
|
|
@@ -198,10 +194,13 @@
|
|
|
198
194
|
"ChallengeEvent": "interface",
|
|
199
195
|
"ChallengedHistoryRow": "interface",
|
|
200
196
|
"CheckResult": "interface",
|
|
201
|
-
"Checkpoint": "
|
|
197
|
+
"Checkpoint": "type",
|
|
202
198
|
"CheckpointError": "class",
|
|
203
199
|
"CheckpointFaultMode": "type",
|
|
200
|
+
"CheckpointFields": "type",
|
|
204
201
|
"CheckpointGate": "type",
|
|
202
|
+
"CheckpointPause": "type",
|
|
203
|
+
"CheckpointRow": "interface",
|
|
205
204
|
"CheckpointState": "interface",
|
|
206
205
|
"CheckpointStore": "interface",
|
|
207
206
|
"CheckpointSummary": "interface",
|
|
@@ -302,6 +301,8 @@
|
|
|
302
301
|
"DEGRADED_DIAGNOSTIC_TYPE": "variable",
|
|
303
302
|
"DELEGATION_MAX_CONCURRENT_DEFAULT": "variable",
|
|
304
303
|
"DELEGATION_MAX_PER_SESSION_DEFAULT": "variable",
|
|
304
|
+
"DENIED_BY_MAY_VETO": "variable",
|
|
305
|
+
"DENIED_BY_VALUES": "variable",
|
|
305
306
|
"DESIGN_REVIEW_PROMPTS": "variable",
|
|
306
307
|
"DISCUSSION_SCRIPT": "variable",
|
|
307
308
|
"DISCUSSION_WORKFLOW_NAME": "variable",
|
|
@@ -318,6 +319,7 @@
|
|
|
318
319
|
"DenialLimitFallback": "interface",
|
|
319
320
|
"DenialLimitFallbackFace": "type",
|
|
320
321
|
"DenialLimitVerdict": "type",
|
|
322
|
+
"DeniedBy": "type",
|
|
321
323
|
"DeveloperTaskConfig": "interface",
|
|
322
324
|
"DistillerCandidate": "interface",
|
|
323
325
|
"DistillerChatAnswer": "interface",
|
|
@@ -435,6 +437,9 @@
|
|
|
435
437
|
"GLOBAL_USAGE_KEY": "variable",
|
|
436
438
|
"GOAL_COMPLETION_GUIDANCE": "variable",
|
|
437
439
|
"GOVERNANCE_CODES": "variable",
|
|
440
|
+
"GateDisposition": "type",
|
|
441
|
+
"GateKind": "type",
|
|
442
|
+
"GateOutcome": "interface",
|
|
438
443
|
"GateVerdict": "type",
|
|
439
444
|
"GoalBudgetCause": "type",
|
|
440
445
|
"GoalResult": "interface",
|
|
@@ -555,7 +560,8 @@
|
|
|
555
560
|
"MAX_STEER_INPUT_ID_CHARS": "variable",
|
|
556
561
|
"MAX_SUPPORTED_CHECKPOINT_VERSION": "variable",
|
|
557
562
|
"MAX_WORKFLOW_ITEMS": "variable",
|
|
558
|
-
"
|
|
563
|
+
"MCP_DELIVERY_VERDICTS": "variable",
|
|
564
|
+
"MCP_FAILURE_KINDS": "variable",
|
|
559
565
|
"MCP_IMAGE_MAX_BASE64": "variable",
|
|
560
566
|
"MCP_NAMESPACE": "variable",
|
|
561
567
|
"MCP_PREFIX": "variable",
|
|
@@ -606,9 +612,11 @@
|
|
|
606
612
|
"MaterializedFile": "interface",
|
|
607
613
|
"MaterializedMcp": "interface",
|
|
608
614
|
"MaybeCompactOptions": "interface",
|
|
615
|
+
"McpDelivered": "type",
|
|
609
616
|
"McpElicitRequest": "interface",
|
|
610
617
|
"McpElicitResponse": "interface",
|
|
611
|
-
"
|
|
618
|
+
"McpFailure": "interface",
|
|
619
|
+
"McpFailureKind": "type",
|
|
612
620
|
"McpImageResizer": "type",
|
|
613
621
|
"McpRefreshResult": "interface",
|
|
614
622
|
"McpServerSpec": "interface",
|
|
@@ -703,6 +711,7 @@
|
|
|
703
711
|
"ORG_RULE_DECISION_REASON": "variable",
|
|
704
712
|
"ORG_STATE_FILE": "variable",
|
|
705
713
|
"ORG_UNAVAILABLE_DECISION_REASON": "variable",
|
|
714
|
+
"ORIGIN_IMPLIES_REAL_APPROVAL": "variable",
|
|
706
715
|
"ORPHAN_ADOPT_MAX_DEFAULT": "variable",
|
|
707
716
|
"ORPHAN_ADOPT_WINDOW_MS_DEFAULT": "variable",
|
|
708
717
|
"OUTPUT_EFFICIENCY": "variable",
|
|
@@ -737,6 +746,7 @@
|
|
|
737
746
|
"OutputChunk": "type",
|
|
738
747
|
"OwnOrgAdmissionVerdict": "interface",
|
|
739
748
|
"PARK_SELFCHECK_SCOPE_PREFIX": "variable",
|
|
749
|
+
"PAUSE_REGISTRY": "variable",
|
|
740
750
|
"PEER_ADDRESS_PREFIXES": "variable",
|
|
741
751
|
"PEER_ADMISSION_DEFAULTS": "variable",
|
|
742
752
|
"PEER_DELIVERY_RECEIPT_STATES": "variable",
|
|
@@ -788,6 +798,7 @@
|
|
|
788
798
|
"ParsedPermissionRule": "interface",
|
|
789
799
|
"ParsedScopeKey": "type",
|
|
790
800
|
"PatchReport": "interface",
|
|
801
|
+
"PausedCause": "type",
|
|
791
802
|
"PeerAdmission": "interface",
|
|
792
803
|
"PeerAdmissionConfig": "interface",
|
|
793
804
|
"PeerAdmissionOptions": "interface",
|
|
@@ -841,10 +852,10 @@
|
|
|
841
852
|
"PeerSessionResolution": "type",
|
|
842
853
|
"PeerSessionTempo": "type",
|
|
843
854
|
"PendingAction": "type",
|
|
855
|
+
"PendingKind": "type",
|
|
844
856
|
"PendingSteerEntry": "interface",
|
|
845
857
|
"PendingSteerInput": "interface",
|
|
846
858
|
"PermissionDeniedPayload": "interface",
|
|
847
|
-
"PermissionDeniedSource": "type",
|
|
848
859
|
"PermissionModeClass": "type",
|
|
849
860
|
"PermissionResult": "type",
|
|
850
861
|
"PermissionRule": "interface",
|
|
@@ -882,6 +893,7 @@
|
|
|
882
893
|
"PrefixInputClass": "type",
|
|
883
894
|
"ProbeCause": "interface",
|
|
884
895
|
"ProbeCauseOperands": "interface",
|
|
896
|
+
"ProcessFingerprint": "interface",
|
|
885
897
|
"ProjectMemoryLoad": "interface",
|
|
886
898
|
"PromotedRecord": "interface",
|
|
887
899
|
"PromptArtifactSource": "interface",
|
|
@@ -995,6 +1007,7 @@
|
|
|
995
1007
|
"ResourceLedger": "interface",
|
|
996
1008
|
"ResourceLimitReason": "type",
|
|
997
1009
|
"Result": "type",
|
|
1010
|
+
"ResumeGate": "type",
|
|
998
1011
|
"ResumeOutcome": "type",
|
|
999
1012
|
"ResumePreflightInfo": "interface",
|
|
1000
1013
|
"ResumePreflightVerdict": "type",
|
|
@@ -1067,6 +1080,7 @@
|
|
|
1067
1080
|
"RunWorkflowToolDeps": "interface",
|
|
1068
1081
|
"Runner": "class",
|
|
1069
1082
|
"RunnerDeps": "interface",
|
|
1083
|
+
"RunnerSelfSeat": "interface",
|
|
1070
1084
|
"RuntimeCaps": "interface",
|
|
1071
1085
|
"SAFETY_AXIS_VOCABULARY": "variable",
|
|
1072
1086
|
"SAFETY_MERGE_CONFORMANCE_CORPUS": "variable",
|
|
@@ -1080,6 +1094,8 @@
|
|
|
1080
1094
|
"SESSION_BOX_PREFIX": "variable",
|
|
1081
1095
|
"SESSION_CAPTURE_OPTOUT_DIR": "variable",
|
|
1082
1096
|
"SESSION_LOG_DIGEST_SCHEME": "variable",
|
|
1097
|
+
"SETTLEMENT_IS_REFUSAL": "variable",
|
|
1098
|
+
"SETTLEMENT_KINDS": "variable",
|
|
1083
1099
|
"SHARED_MEMORY_LIST_PAGE_SIZE": "variable",
|
|
1084
1100
|
"SHARED_MEMORY_READ_CAP_BYTES": "variable",
|
|
1085
1101
|
"SKILL_TOOL_NAME": "variable",
|
|
@@ -1155,6 +1171,8 @@
|
|
|
1155
1171
|
"SessionTreeEntry": "type",
|
|
1156
1172
|
"SessionWarmup": "interface",
|
|
1157
1173
|
"SessionWriteOptions": "interface",
|
|
1174
|
+
"Settlement": "type",
|
|
1175
|
+
"SettlementKind": "type",
|
|
1158
1176
|
"SharedAbortScope": "class",
|
|
1159
1177
|
"SharedMemoryDocumentEntry": "interface",
|
|
1160
1178
|
"SharedMemoryFixture": "interface",
|
|
@@ -1253,6 +1271,7 @@
|
|
|
1253
1271
|
"TeamMember": "interface",
|
|
1254
1272
|
"TeamResult": "interface",
|
|
1255
1273
|
"TeamTurn": "interface",
|
|
1274
|
+
"TerminalCause": "type",
|
|
1256
1275
|
"TerminalClaimIntent": "type",
|
|
1257
1276
|
"TerminalClaimOutcome": "type",
|
|
1258
1277
|
"TextContent": "interface",
|
|
@@ -1364,6 +1383,7 @@
|
|
|
1364
1383
|
"WorkflowInternals": "interface",
|
|
1365
1384
|
"WorkflowItemStatus": "type",
|
|
1366
1385
|
"WorkflowJournalEntry": "interface",
|
|
1386
|
+
"WorkflowJournalIncompatibleError": "class",
|
|
1367
1387
|
"WorkflowJournalStore": "interface",
|
|
1368
1388
|
"WorkflowLimits": "interface",
|
|
1369
1389
|
"WorkflowMaxAgentsError": "class",
|
|
@@ -1473,6 +1493,7 @@
|
|
|
1473
1493
|
"chargeUsageRecord": "function",
|
|
1474
1494
|
"checkInvariants": "function",
|
|
1475
1495
|
"checkToolPolicyProjection": "function",
|
|
1496
|
+
"checkpointFrom": "function",
|
|
1476
1497
|
"checkpointStoreContract": "function",
|
|
1477
1498
|
"checkpointVersionOf": "function",
|
|
1478
1499
|
"clampHopChain": "function",
|
|
@@ -1480,6 +1501,7 @@
|
|
|
1480
1501
|
"classifyCompoundReadonly": "function",
|
|
1481
1502
|
"classifyCompoundReadonlyDetailed": "function",
|
|
1482
1503
|
"classifyHttp": "function",
|
|
1504
|
+
"classifyMcpFailure": "function",
|
|
1483
1505
|
"classifyPromotable": "function",
|
|
1484
1506
|
"clearScanFuse": "function",
|
|
1485
1507
|
"clearStaleToolResults": "function",
|
|
@@ -1700,12 +1722,12 @@
|
|
|
1700
1722
|
"inlineUntrusted": "function",
|
|
1701
1723
|
"inspectDegenerate": "function",
|
|
1702
1724
|
"isAliasModelId": "function",
|
|
1703
|
-
"isApprovalSettledBy": "function",
|
|
1704
|
-
"isAskDenyResolution": "function",
|
|
1705
1725
|
"isAskOrigin": "function",
|
|
1706
1726
|
"isCanonicalPeerAddress": "function",
|
|
1707
1727
|
"isCrossSessionInboundSetting": "function",
|
|
1708
1728
|
"isDelegatedAgentTerminal": "function",
|
|
1729
|
+
"isDeniedBy": "function",
|
|
1730
|
+
"isGateKind": "function",
|
|
1709
1731
|
"isInstructionEntry": "function",
|
|
1710
1732
|
"isIsolated": "function",
|
|
1711
1733
|
"isModelGatedForClass": "function",
|
|
@@ -1716,6 +1738,7 @@
|
|
|
1716
1738
|
"isPeerSessionProcessAlive": "function",
|
|
1717
1739
|
"isPermissionModeClass": "function",
|
|
1718
1740
|
"isPersonalScope": "function",
|
|
1741
|
+
"isProcessLive": "function",
|
|
1719
1742
|
"isQuestionUnavailable": "function",
|
|
1720
1743
|
"isRemoteExecutionEnv": "function",
|
|
1721
1744
|
"isRetryableRemoteErrorCode": "function",
|
|
@@ -1723,6 +1746,7 @@
|
|
|
1723
1746
|
"isSecretEnvKey": "function",
|
|
1724
1747
|
"isSelfOrchestrationActive": "function",
|
|
1725
1748
|
"isSessionConflict": "function",
|
|
1749
|
+
"isSettlementKind": "function",
|
|
1726
1750
|
"isSuspendable": "function",
|
|
1727
1751
|
"isSystemInjectionPriority": "function",
|
|
1728
1752
|
"isTerminalTaskNotification": "function",
|
|
@@ -1767,7 +1791,6 @@
|
|
|
1767
1791
|
"materializeEntriesToFiles": "function",
|
|
1768
1792
|
"materializeMcpTools": "function",
|
|
1769
1793
|
"maybeCompact": "function",
|
|
1770
|
-
"mcpFailureCodeOf": "function",
|
|
1771
1794
|
"memoryBackendContract": "function",
|
|
1772
1795
|
"memoryCaptureOptOutUnpersistedNotice": "function",
|
|
1773
1796
|
"memoryCaptureOptedOutNotice": "function",
|
|
@@ -1832,6 +1855,7 @@
|
|
|
1832
1855
|
"parseWorkflowMeta": "function",
|
|
1833
1856
|
"pathToUri": "function",
|
|
1834
1857
|
"pathWithinRoot": "function",
|
|
1858
|
+
"pauseOf": "function",
|
|
1835
1859
|
"peekMemoryAnnouncements": "function",
|
|
1836
1860
|
"peerAdmissionFor": "function",
|
|
1837
1861
|
"peerAxisToken": "function",
|
|
@@ -1857,6 +1881,7 @@
|
|
|
1857
1881
|
"prepareStarterBatch": "function",
|
|
1858
1882
|
"probeParkRoundTrip": "function",
|
|
1859
1883
|
"probeSearchBackend": "function",
|
|
1884
|
+
"processFingerprint": "function",
|
|
1860
1885
|
"projectHumanInput": "function",
|
|
1861
1886
|
"projectToolManifest": "function",
|
|
1862
1887
|
"projectionsToWriteBack": "function",
|
|
@@ -1879,6 +1904,7 @@
|
|
|
1879
1904
|
"readSessionCaptureOptOut": "function",
|
|
1880
1905
|
"readUsageRecord": "function",
|
|
1881
1906
|
"readV2HeaderHints": "function",
|
|
1907
|
+
"realApprovalOrgFact": "function",
|
|
1882
1908
|
"realPeerClock": "variable",
|
|
1883
1909
|
"reasoningBudgetShare": "function",
|
|
1884
1910
|
"rebuildAutoModeDecider": "function",
|
|
@@ -1917,6 +1943,7 @@
|
|
|
1917
1943
|
"resolveBashTimeoutCaps": "function",
|
|
1918
1944
|
"resolveBinary": "function",
|
|
1919
1945
|
"resolveBuiltinWorkflow": "function",
|
|
1946
|
+
"resolveCheckpointStore": "function",
|
|
1920
1947
|
"resolveComplianceDenies": "function",
|
|
1921
1948
|
"resolveCrossSessionDialogExpiry": "function",
|
|
1922
1949
|
"resolveCrossSessionInboundSetting": "function",
|
|
@@ -1947,6 +1974,7 @@
|
|
|
1947
1974
|
"resolveUsageWindows": "function",
|
|
1948
1975
|
"resolveWriteProtectedTable": "function",
|
|
1949
1976
|
"restoreFrozenPaths": "function",
|
|
1977
|
+
"resumeGateMatches": "function",
|
|
1950
1978
|
"resumeWithVerification": "function",
|
|
1951
1979
|
"retiredWorkflowNameAliases": "function",
|
|
1952
1980
|
"retryBackoffMs": "function",
|
|
@@ -1994,6 +2022,7 @@
|
|
|
1994
2022
|
"scopeCoversCwd": "function",
|
|
1995
2023
|
"scopeDirName": "function",
|
|
1996
2024
|
"screenApproverAttribution": "function",
|
|
2025
|
+
"screenGateOutcome": "function",
|
|
1997
2026
|
"screenInboundEntries": "function",
|
|
1998
2027
|
"screenRuleSyncState": "function",
|
|
1999
2028
|
"scrubSecretEnv": "function",
|
|
@@ -2034,6 +2063,7 @@
|
|
|
2034
2063
|
"teacherMode": "function",
|
|
2035
2064
|
"termSet": "function",
|
|
2036
2065
|
"terminalForTier": "function",
|
|
2066
|
+
"terminalProjection": "function",
|
|
2037
2067
|
"tightenTaskSpec": "function",
|
|
2038
2068
|
"toA2ATaskState": "function",
|
|
2039
2069
|
"toolPolicyNameSets": "function",
|
|
@@ -2094,10 +2124,8 @@
|
|
|
2094
2124
|
"AGGREGATE_MEDIA_BUDGET_BYTES": "advanced",
|
|
2095
2125
|
"AGGREGATE_TOOL_RESULT_BUDGET_CHARS": "advanced",
|
|
2096
2126
|
"ANNOUNCEMENTS_FILE": "advanced",
|
|
2097
|
-
"APPROVAL_SETTLED_BY_VALUES": "advanced",
|
|
2098
2127
|
"APPROVER_ATTRIBUTION_MAX_CHARS": "advanced",
|
|
2099
2128
|
"ARTIFACT_LIMITS": "advanced",
|
|
2100
|
-
"ASK_DENY_RESOLUTION_VALUES": "advanced",
|
|
2101
2129
|
"ASK_EVIDENCE_ABSENCE_VALUES": "advanced",
|
|
2102
2130
|
"ASK_ORIGINS": "advanced",
|
|
2103
2131
|
"AUTONOMOUS_LOOP_DYNAMIC_SENTINEL": "advanced",
|
|
@@ -2137,12 +2165,10 @@
|
|
|
2137
2165
|
"AggregateBudgetOptions": "advanced",
|
|
2138
2166
|
"AnthropicBrainConfig": "advanced",
|
|
2139
2167
|
"AppendLog": "advanced",
|
|
2140
|
-
"ApprovalSettledBy": "stable",
|
|
2141
2168
|
"ArtifactVerifyResult": "advanced",
|
|
2142
2169
|
"AskAnswerContinuationSource": "advanced",
|
|
2143
2170
|
"AskCarry": "advanced",
|
|
2144
2171
|
"AskDelegationProvenance": "advanced",
|
|
2145
|
-
"AskDenyResolution": "advanced",
|
|
2146
2172
|
"AskEffective": "advanced",
|
|
2147
2173
|
"AskEvidenceAbsence": "advanced",
|
|
2148
2174
|
"AskOrigin": "advanced",
|
|
@@ -2275,7 +2301,10 @@
|
|
|
2275
2301
|
"Checkpoint": "stable",
|
|
2276
2302
|
"CheckpointError": "stable",
|
|
2277
2303
|
"CheckpointFaultMode": "advanced",
|
|
2304
|
+
"CheckpointFields": "advanced",
|
|
2278
2305
|
"CheckpointGate": "advanced",
|
|
2306
|
+
"CheckpointPause": "advanced",
|
|
2307
|
+
"CheckpointRow": "advanced",
|
|
2279
2308
|
"CheckpointState": "advanced",
|
|
2280
2309
|
"CheckpointStore": "stable",
|
|
2281
2310
|
"CheckpointSummary": "stable",
|
|
@@ -2376,6 +2405,8 @@
|
|
|
2376
2405
|
"DEGRADED_DIAGNOSTIC_TYPE": "advanced",
|
|
2377
2406
|
"DELEGATION_MAX_CONCURRENT_DEFAULT": "advanced",
|
|
2378
2407
|
"DELEGATION_MAX_PER_SESSION_DEFAULT": "advanced",
|
|
2408
|
+
"DENIED_BY_MAY_VETO": "advanced",
|
|
2409
|
+
"DENIED_BY_VALUES": "advanced",
|
|
2379
2410
|
"DESIGN_REVIEW_PROMPTS": "advanced",
|
|
2380
2411
|
"DISCUSSION_SCRIPT": "advanced",
|
|
2381
2412
|
"DISCUSSION_WORKFLOW_NAME": "advanced",
|
|
@@ -2392,6 +2423,7 @@
|
|
|
2392
2423
|
"DenialLimitFallback": "advanced",
|
|
2393
2424
|
"DenialLimitFallbackFace": "advanced",
|
|
2394
2425
|
"DenialLimitVerdict": "advanced",
|
|
2426
|
+
"DeniedBy": "advanced",
|
|
2395
2427
|
"DeveloperTaskConfig": "advanced",
|
|
2396
2428
|
"DistillerCandidate": "advanced",
|
|
2397
2429
|
"DistillerChatAnswer": "advanced",
|
|
@@ -2509,6 +2541,9 @@
|
|
|
2509
2541
|
"GLOBAL_USAGE_KEY": "advanced",
|
|
2510
2542
|
"GOAL_COMPLETION_GUIDANCE": "advanced",
|
|
2511
2543
|
"GOVERNANCE_CODES": "advanced",
|
|
2544
|
+
"GateDisposition": "advanced",
|
|
2545
|
+
"GateKind": "advanced",
|
|
2546
|
+
"GateOutcome": "stable",
|
|
2512
2547
|
"GateVerdict": "advanced",
|
|
2513
2548
|
"GoalBudgetCause": "advanced",
|
|
2514
2549
|
"GoalResult": "advanced",
|
|
@@ -2629,7 +2664,8 @@
|
|
|
2629
2664
|
"MAX_STEER_INPUT_ID_CHARS": "advanced",
|
|
2630
2665
|
"MAX_SUPPORTED_CHECKPOINT_VERSION": "advanced",
|
|
2631
2666
|
"MAX_WORKFLOW_ITEMS": "advanced",
|
|
2632
|
-
"
|
|
2667
|
+
"MCP_DELIVERY_VERDICTS": "advanced",
|
|
2668
|
+
"MCP_FAILURE_KINDS": "advanced",
|
|
2633
2669
|
"MCP_IMAGE_MAX_BASE64": "advanced",
|
|
2634
2670
|
"MCP_NAMESPACE": "advanced",
|
|
2635
2671
|
"MCP_PREFIX": "advanced",
|
|
@@ -2680,9 +2716,11 @@
|
|
|
2680
2716
|
"MaterializedFile": "advanced",
|
|
2681
2717
|
"MaterializedMcp": "advanced",
|
|
2682
2718
|
"MaybeCompactOptions": "advanced",
|
|
2719
|
+
"McpDelivered": "advanced",
|
|
2683
2720
|
"McpElicitRequest": "advanced",
|
|
2684
2721
|
"McpElicitResponse": "advanced",
|
|
2685
|
-
"
|
|
2722
|
+
"McpFailure": "advanced",
|
|
2723
|
+
"McpFailureKind": "advanced",
|
|
2686
2724
|
"McpImageResizer": "advanced",
|
|
2687
2725
|
"McpRefreshResult": "advanced",
|
|
2688
2726
|
"McpServerSpec": "advanced",
|
|
@@ -2777,6 +2815,7 @@
|
|
|
2777
2815
|
"ORG_RULE_DECISION_REASON": "advanced",
|
|
2778
2816
|
"ORG_STATE_FILE": "advanced",
|
|
2779
2817
|
"ORG_UNAVAILABLE_DECISION_REASON": "advanced",
|
|
2818
|
+
"ORIGIN_IMPLIES_REAL_APPROVAL": "advanced",
|
|
2780
2819
|
"ORPHAN_ADOPT_MAX_DEFAULT": "advanced",
|
|
2781
2820
|
"ORPHAN_ADOPT_WINDOW_MS_DEFAULT": "advanced",
|
|
2782
2821
|
"OUTPUT_EFFICIENCY": "advanced",
|
|
@@ -2811,6 +2850,7 @@
|
|
|
2811
2850
|
"OutputChunk": "advanced",
|
|
2812
2851
|
"OwnOrgAdmissionVerdict": "advanced",
|
|
2813
2852
|
"PARK_SELFCHECK_SCOPE_PREFIX": "advanced",
|
|
2853
|
+
"PAUSE_REGISTRY": "advanced",
|
|
2814
2854
|
"PEER_ADDRESS_PREFIXES": "advanced",
|
|
2815
2855
|
"PEER_ADMISSION_DEFAULTS": "advanced",
|
|
2816
2856
|
"PEER_DELIVERY_RECEIPT_STATES": "advanced",
|
|
@@ -2862,6 +2902,7 @@
|
|
|
2862
2902
|
"ParsedPermissionRule": "advanced",
|
|
2863
2903
|
"ParsedScopeKey": "advanced",
|
|
2864
2904
|
"PatchReport": "stable",
|
|
2905
|
+
"PausedCause": "advanced",
|
|
2865
2906
|
"PeerAdmission": "advanced",
|
|
2866
2907
|
"PeerAdmissionConfig": "advanced",
|
|
2867
2908
|
"PeerAdmissionOptions": "advanced",
|
|
@@ -2915,10 +2956,10 @@
|
|
|
2915
2956
|
"PeerSessionResolution": "advanced",
|
|
2916
2957
|
"PeerSessionTempo": "advanced",
|
|
2917
2958
|
"PendingAction": "advanced",
|
|
2959
|
+
"PendingKind": "advanced",
|
|
2918
2960
|
"PendingSteerEntry": "stable",
|
|
2919
2961
|
"PendingSteerInput": "stable",
|
|
2920
2962
|
"PermissionDeniedPayload": "advanced",
|
|
2921
|
-
"PermissionDeniedSource": "advanced",
|
|
2922
2963
|
"PermissionModeClass": "advanced",
|
|
2923
2964
|
"PermissionResult": "advanced",
|
|
2924
2965
|
"PermissionRule": "advanced",
|
|
@@ -2956,6 +2997,7 @@
|
|
|
2956
2997
|
"PrefixInputClass": "advanced",
|
|
2957
2998
|
"ProbeCause": "advanced",
|
|
2958
2999
|
"ProbeCauseOperands": "advanced",
|
|
3000
|
+
"ProcessFingerprint": "advanced",
|
|
2959
3001
|
"ProjectMemoryLoad": "advanced",
|
|
2960
3002
|
"PromotedRecord": "advanced",
|
|
2961
3003
|
"PromptArtifactSource": "advanced",
|
|
@@ -3069,6 +3111,7 @@
|
|
|
3069
3111
|
"ResourceLedger": "advanced",
|
|
3070
3112
|
"ResourceLimitReason": "advanced",
|
|
3071
3113
|
"Result": "stable",
|
|
3114
|
+
"ResumeGate": "advanced",
|
|
3072
3115
|
"ResumeOutcome": "stable",
|
|
3073
3116
|
"ResumePreflightInfo": "advanced",
|
|
3074
3117
|
"ResumePreflightVerdict": "advanced",
|
|
@@ -3141,6 +3184,7 @@
|
|
|
3141
3184
|
"RunWorkflowToolDeps": "advanced",
|
|
3142
3185
|
"Runner": "stable",
|
|
3143
3186
|
"RunnerDeps": "stable",
|
|
3187
|
+
"RunnerSelfSeat": "internal",
|
|
3144
3188
|
"RuntimeCaps": "stable",
|
|
3145
3189
|
"SAFETY_AXIS_VOCABULARY": "advanced",
|
|
3146
3190
|
"SAFETY_MERGE_CONFORMANCE_CORPUS": "advanced",
|
|
@@ -3154,6 +3198,8 @@
|
|
|
3154
3198
|
"SESSION_BOX_PREFIX": "advanced",
|
|
3155
3199
|
"SESSION_CAPTURE_OPTOUT_DIR": "advanced",
|
|
3156
3200
|
"SESSION_LOG_DIGEST_SCHEME": "internal",
|
|
3201
|
+
"SETTLEMENT_IS_REFUSAL": "advanced",
|
|
3202
|
+
"SETTLEMENT_KINDS": "advanced",
|
|
3157
3203
|
"SHARED_MEMORY_LIST_PAGE_SIZE": "advanced",
|
|
3158
3204
|
"SHARED_MEMORY_READ_CAP_BYTES": "advanced",
|
|
3159
3205
|
"SKILL_TOOL_NAME": "internal",
|
|
@@ -3229,6 +3275,8 @@
|
|
|
3229
3275
|
"SessionTreeEntry": "stable",
|
|
3230
3276
|
"SessionWarmup": "advanced",
|
|
3231
3277
|
"SessionWriteOptions": "stable",
|
|
3278
|
+
"Settlement": "advanced",
|
|
3279
|
+
"SettlementKind": "advanced",
|
|
3232
3280
|
"SharedAbortScope": "advanced",
|
|
3233
3281
|
"SharedMemoryDocumentEntry": "advanced",
|
|
3234
3282
|
"SharedMemoryFixture": "advanced",
|
|
@@ -3327,6 +3375,7 @@
|
|
|
3327
3375
|
"TeamMember": "advanced",
|
|
3328
3376
|
"TeamResult": "advanced",
|
|
3329
3377
|
"TeamTurn": "advanced",
|
|
3378
|
+
"TerminalCause": "advanced",
|
|
3330
3379
|
"TerminalClaimIntent": "advanced",
|
|
3331
3380
|
"TerminalClaimOutcome": "advanced",
|
|
3332
3381
|
"TextContent": "advanced",
|
|
@@ -3438,6 +3487,7 @@
|
|
|
3438
3487
|
"WorkflowInternals": "internal",
|
|
3439
3488
|
"WorkflowItemStatus": "advanced",
|
|
3440
3489
|
"WorkflowJournalEntry": "advanced",
|
|
3490
|
+
"WorkflowJournalIncompatibleError": "advanced",
|
|
3441
3491
|
"WorkflowJournalStore": "advanced",
|
|
3442
3492
|
"WorkflowLimits": "advanced",
|
|
3443
3493
|
"WorkflowMaxAgentsError": "advanced",
|
|
@@ -3547,6 +3597,7 @@
|
|
|
3547
3597
|
"chargeUsageRecord": "advanced",
|
|
3548
3598
|
"checkInvariants": "advanced",
|
|
3549
3599
|
"checkToolPolicyProjection": "advanced",
|
|
3600
|
+
"checkpointFrom": "advanced",
|
|
3550
3601
|
"checkpointStoreContract": "advanced",
|
|
3551
3602
|
"checkpointVersionOf": "advanced",
|
|
3552
3603
|
"clampHopChain": "advanced",
|
|
@@ -3554,6 +3605,7 @@
|
|
|
3554
3605
|
"classifyCompoundReadonly": "advanced",
|
|
3555
3606
|
"classifyCompoundReadonlyDetailed": "advanced",
|
|
3556
3607
|
"classifyHttp": "advanced",
|
|
3608
|
+
"classifyMcpFailure": "advanced",
|
|
3557
3609
|
"classifyPromotable": "advanced",
|
|
3558
3610
|
"clearScanFuse": "advanced",
|
|
3559
3611
|
"clearStaleToolResults": "advanced",
|
|
@@ -3774,12 +3826,12 @@
|
|
|
3774
3826
|
"inlineUntrusted": "advanced",
|
|
3775
3827
|
"inspectDegenerate": "advanced",
|
|
3776
3828
|
"isAliasModelId": "advanced",
|
|
3777
|
-
"isApprovalSettledBy": "advanced",
|
|
3778
|
-
"isAskDenyResolution": "advanced",
|
|
3779
3829
|
"isAskOrigin": "advanced",
|
|
3780
3830
|
"isCanonicalPeerAddress": "advanced",
|
|
3781
3831
|
"isCrossSessionInboundSetting": "advanced",
|
|
3782
3832
|
"isDelegatedAgentTerminal": "advanced",
|
|
3833
|
+
"isDeniedBy": "advanced",
|
|
3834
|
+
"isGateKind": "advanced",
|
|
3783
3835
|
"isInstructionEntry": "advanced",
|
|
3784
3836
|
"isIsolated": "advanced",
|
|
3785
3837
|
"isModelGatedForClass": "advanced",
|
|
@@ -3790,6 +3842,7 @@
|
|
|
3790
3842
|
"isPeerSessionProcessAlive": "advanced",
|
|
3791
3843
|
"isPermissionModeClass": "advanced",
|
|
3792
3844
|
"isPersonalScope": "advanced",
|
|
3845
|
+
"isProcessLive": "advanced",
|
|
3793
3846
|
"isQuestionUnavailable": "advanced",
|
|
3794
3847
|
"isRemoteExecutionEnv": "advanced",
|
|
3795
3848
|
"isRetryableRemoteErrorCode": "advanced",
|
|
@@ -3797,6 +3850,7 @@
|
|
|
3797
3850
|
"isSecretEnvKey": "advanced",
|
|
3798
3851
|
"isSelfOrchestrationActive": "advanced",
|
|
3799
3852
|
"isSessionConflict": "stable",
|
|
3853
|
+
"isSettlementKind": "advanced",
|
|
3800
3854
|
"isSuspendable": "advanced",
|
|
3801
3855
|
"isSystemInjectionPriority": "advanced",
|
|
3802
3856
|
"isTerminalTaskNotification": "advanced",
|
|
@@ -3841,7 +3895,6 @@
|
|
|
3841
3895
|
"materializeEntriesToFiles": "advanced",
|
|
3842
3896
|
"materializeMcpTools": "stable",
|
|
3843
3897
|
"maybeCompact": "advanced",
|
|
3844
|
-
"mcpFailureCodeOf": "advanced",
|
|
3845
3898
|
"memoryBackendContract": "stable",
|
|
3846
3899
|
"memoryCaptureOptOutUnpersistedNotice": "advanced",
|
|
3847
3900
|
"memoryCaptureOptedOutNotice": "advanced",
|
|
@@ -3906,6 +3959,7 @@
|
|
|
3906
3959
|
"parseWorkflowMeta": "advanced",
|
|
3907
3960
|
"pathToUri": "advanced",
|
|
3908
3961
|
"pathWithinRoot": "advanced",
|
|
3962
|
+
"pauseOf": "advanced",
|
|
3909
3963
|
"peekMemoryAnnouncements": "advanced",
|
|
3910
3964
|
"peerAdmissionFor": "advanced",
|
|
3911
3965
|
"peerAxisToken": "advanced",
|
|
@@ -3931,6 +3985,7 @@
|
|
|
3931
3985
|
"prepareStarterBatch": "advanced",
|
|
3932
3986
|
"probeParkRoundTrip": "stable",
|
|
3933
3987
|
"probeSearchBackend": "advanced",
|
|
3988
|
+
"processFingerprint": "advanced",
|
|
3934
3989
|
"projectHumanInput": "advanced",
|
|
3935
3990
|
"projectToolManifest": "advanced",
|
|
3936
3991
|
"projectionsToWriteBack": "advanced",
|
|
@@ -3953,6 +4008,7 @@
|
|
|
3953
4008
|
"readSessionCaptureOptOut": "advanced",
|
|
3954
4009
|
"readUsageRecord": "advanced",
|
|
3955
4010
|
"readV2HeaderHints": "advanced",
|
|
4011
|
+
"realApprovalOrgFact": "advanced",
|
|
3956
4012
|
"realPeerClock": "advanced",
|
|
3957
4013
|
"reasoningBudgetShare": "advanced",
|
|
3958
4014
|
"rebuildAutoModeDecider": "advanced",
|
|
@@ -3991,6 +4047,7 @@
|
|
|
3991
4047
|
"resolveBashTimeoutCaps": "advanced",
|
|
3992
4048
|
"resolveBinary": "advanced",
|
|
3993
4049
|
"resolveBuiltinWorkflow": "advanced",
|
|
4050
|
+
"resolveCheckpointStore": "advanced",
|
|
3994
4051
|
"resolveComplianceDenies": "advanced",
|
|
3995
4052
|
"resolveCrossSessionDialogExpiry": "advanced",
|
|
3996
4053
|
"resolveCrossSessionInboundSetting": "advanced",
|
|
@@ -4021,6 +4078,7 @@
|
|
|
4021
4078
|
"resolveUsageWindows": "advanced",
|
|
4022
4079
|
"resolveWriteProtectedTable": "advanced",
|
|
4023
4080
|
"restoreFrozenPaths": "advanced",
|
|
4081
|
+
"resumeGateMatches": "advanced",
|
|
4024
4082
|
"resumeWithVerification": "advanced",
|
|
4025
4083
|
"retiredWorkflowNameAliases": "advanced",
|
|
4026
4084
|
"retryBackoffMs": "advanced",
|
|
@@ -4068,6 +4126,7 @@
|
|
|
4068
4126
|
"scopeCoversCwd": "advanced",
|
|
4069
4127
|
"scopeDirName": "advanced",
|
|
4070
4128
|
"screenApproverAttribution": "advanced",
|
|
4129
|
+
"screenGateOutcome": "advanced",
|
|
4071
4130
|
"screenInboundEntries": "advanced",
|
|
4072
4131
|
"screenRuleSyncState": "advanced",
|
|
4073
4132
|
"scrubSecretEnv": "advanced",
|
|
@@ -4108,6 +4167,7 @@
|
|
|
4108
4167
|
"teacherMode": "advanced",
|
|
4109
4168
|
"termSet": "stable",
|
|
4110
4169
|
"terminalForTier": "advanced",
|
|
4170
|
+
"terminalProjection": "internal",
|
|
4111
4171
|
"tightenTaskSpec": "stable",
|
|
4112
4172
|
"toA2ATaskState": "advanced",
|
|
4113
4173
|
"toolPolicyNameSets": "advanced",
|