@sema-agent/core 7.5.1 → 7.6.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 +61 -0
- package/dist/agents/cascade.d.ts +2 -2
- package/dist/agents/cascade.js +12 -10
- package/dist/agents/repair-loop.d.ts +5 -3
- package/dist/agents/repair-loop.js +13 -15
- package/dist/agents/subagent.d.ts +24 -42
- 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.js +9 -9
- package/dist/agents/team.d.ts +4 -3
- package/dist/agents/team.js +10 -8
- package/dist/agents/verify.d.ts +3 -3
- package/dist/agents/verify.js +17 -17
- package/dist/core/a2a.js +2 -1
- 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/gate-outcome.d.ts +189 -0
- package/dist/core/gate-outcome.js +70 -0
- package/dist/core/hooks.d.ts +18 -92
- package/dist/core/hooks.js +88 -85
- package/dist/core/mcp-failure.d.ts +104 -0
- package/dist/core/mcp-failure.js +128 -0
- package/dist/core/mcp.d.ts +21 -77
- package/dist/core/mcp.js +76 -150
- package/dist/core/pause-registry.d.ts +131 -0
- package/dist/core/pause-registry.js +27 -0
- package/dist/core/protocol-table.d.ts +5 -0
- package/dist/core/protocol-table.js +1 -0
- package/dist/core/runner/abort-race.d.ts +41 -0
- package/dist/core/runner/abort-race.js +38 -0
- package/dist/core/runner/assemble-result.d.ts +32 -41
- package/dist/core/runner/assemble-result.js +55 -74
- package/dist/core/runner/checkpoint-scope.d.ts +15 -3
- package/dist/core/runner/checkpoint-scope.js +3 -0
- package/dist/core/runner/compaction-call-options.d.ts +1 -1
- package/dist/core/runner/content-ask-bindings.d.ts +27 -0
- package/dist/core/runner/content-ask-bindings.js +1 -0
- package/dist/core/runner/contracts.d.ts +144 -50
- package/dist/core/runner/denial-limit-arms.d.ts +24 -1
- package/dist/core/runner/denial-limit-arms.js +24 -3
- package/dist/core/runner/gate-exit.d.ts +74 -0
- package/dist/core/runner/gate-exit.js +55 -0
- package/dist/core/runner/inherited-ask-grants.d.ts +46 -0
- package/dist/core/runner/inherited-ask-grants.js +29 -0
- package/dist/core/runner/park-commit.d.ts +102 -0
- package/dist/core/runner/park-commit.js +31 -0
- package/dist/core/runner/{prepare-permission-rules.d.ts → permission-rule-lanes.d.ts} +109 -3
- package/dist/core/runner/{prepare-permission-rules.js → permission-rule-lanes.js} +47 -1
- package/dist/core/runner/prepare-ask-lane.d.ts +107 -0
- package/dist/core/runner/prepare-ask-lane.js +131 -0
- package/dist/core/runner/prepare-boundary-parks.d.ts +102 -0
- package/dist/core/runner/prepare-boundary-parks.js +169 -0
- package/dist/core/runner/prepare-caps-and-workflow.js +1 -1
- package/dist/core/runner/prepare-context-lane.d.ts +119 -0
- package/dist/core/runner/prepare-context-lane.js +230 -0
- package/dist/core/runner/prepare-gate-stations.d.ts +174 -0
- package/dist/core/runner/prepare-gate-stations.js +265 -0
- package/dist/core/runner/prepare-hands-readface.d.ts +4 -4
- package/dist/core/runner/prepare-inherited-gate.d.ts +4 -4
- package/dist/core/runner/prepare-inherited-gate.js +1 -1
- package/dist/core/runner/prepare-memory-engine-session.d.ts +84 -0
- package/dist/core/runner/prepare-memory-engine-session.js +233 -0
- package/dist/core/runner/prepare-memory.d.ts +44 -26
- package/dist/core/runner/prepare-park-ask.d.ts +162 -0
- package/dist/core/runner/prepare-park-ask.js +377 -0
- package/dist/core/runner/prepare-policy-chain.d.ts +208 -0
- package/dist/core/runner/prepare-policy-chain.js +584 -0
- package/dist/core/runner/prepare-project-context.d.ts +1 -13
- package/dist/core/runner/prepare-project-context.js +1 -3
- package/dist/core/runner/prepare-prompt-assembly.d.ts +95 -0
- package/dist/core/runner/prepare-prompt-assembly.js +162 -0
- package/dist/core/runner/prepare-prompt-inputs.d.ts +1 -20
- package/dist/core/runner/prepare-protocol-tools.d.ts +3 -3
- package/dist/core/runner/prepare-protocol-tools.js +0 -3
- package/dist/core/runner/prepare-question-face.d.ts +3 -21
- package/dist/core/runner/prepare-question-face.js +2 -1
- package/dist/core/runner/prepare-safety-scan.d.ts +0 -5
- package/dist/core/runner/prepare-safety-scan.js +1 -2
- package/dist/core/runner/prepare-suspend-saga.d.ts +170 -0
- package/dist/core/runner/prepare-suspend-saga.js +308 -0
- package/dist/core/runner/prepare-task.d.ts +9 -136
- package/dist/core/runner/prepare-task.js +47 -2745
- package/dist/core/runner/prepare-turn-wiring.d.ts +154 -0
- package/dist/core/runner/prepare-turn-wiring.js +201 -0
- package/dist/core/runner/prepare-wiring-manifest.d.ts +17 -17
- package/dist/core/runner/prepare-wiring-manifest.js +16 -10
- package/dist/core/runner/prepare-workspace-restore.d.ts +2 -29
- package/dist/core/runner/prepare-workspace-restore.js +3 -16
- package/dist/core/runner/prompt-hash-salt.d.ts +1 -0
- package/dist/core/runner/prompt-hash-salt.js +2 -0
- package/dist/core/runner/remote-env-retry.d.ts +29 -0
- package/dist/core/runner/remote-env-retry.js +16 -0
- package/dist/core/runner/runtask.d.ts +16 -31
- package/dist/core/runner/runtask.js +110 -121
- package/dist/core/runner/terminal-projection.d.ts +22 -0
- package/dist/core/runner/terminal-projection.js +28 -0
- package/dist/core/session.d.ts +12 -0
- package/dist/core/session.js +3 -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/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/types.d.ts +67 -164
- 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 +10 -7
- package/dist/index.js +8 -5
- package/dist/orchestration/builtin-workflows.d.ts +2 -2
- package/dist/orchestration/builtin-workflows.js +1 -1
- package/dist/orchestration/goal.js +8 -7
- package/dist/orchestration/run-spec.js +5 -3
- package/dist/orchestration/run-workflow-tool.d.ts +1 -1
- 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 +11 -0
- 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.js +1 -1
- package/package.json +3 -1
- package/test/export-surface.snapshot.json +74 -22
- /package/dist/core/runner/{prepare-announce-once.d.ts → announce-once-ledger.d.ts} +0 -0
- /package/dist/core/runner/{prepare-announce-once.js → announce-once-ledger.js} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sema-agent/core",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.6.0",
|
|
4
4
|
"description": "Stateless, task-oriented AI agent core",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "BUSL-1.1",
|
|
@@ -76,7 +76,9 @@
|
|
|
76
76
|
"gate:wire": "node scripts/wire-changes.mjs",
|
|
77
77
|
"gate:layering": "node scripts/verify-layering.mjs",
|
|
78
78
|
"gate:phase-api": "node scripts/verify-phase-api.mjs",
|
|
79
|
+
"gate:closed-sets": "node scripts/verify-closed-sets.mjs",
|
|
79
80
|
"gate:agent-returns": "node scripts/verify-agent-returns.mjs",
|
|
81
|
+
"gate:contract-sentences": "node scripts/verify-contract-sentences.mjs",
|
|
80
82
|
"gate:all": "node scripts/gate-all.mjs"
|
|
81
83
|
},
|
|
82
84
|
"dependencies": {
|
|
@@ -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": 2098,
|
|
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",
|
|
@@ -995,6 +1006,7 @@
|
|
|
995
1006
|
"ResourceLedger": "interface",
|
|
996
1007
|
"ResourceLimitReason": "type",
|
|
997
1008
|
"Result": "type",
|
|
1009
|
+
"ResumeGate": "type",
|
|
998
1010
|
"ResumeOutcome": "type",
|
|
999
1011
|
"ResumePreflightInfo": "interface",
|
|
1000
1012
|
"ResumePreflightVerdict": "type",
|
|
@@ -1080,6 +1092,8 @@
|
|
|
1080
1092
|
"SESSION_BOX_PREFIX": "variable",
|
|
1081
1093
|
"SESSION_CAPTURE_OPTOUT_DIR": "variable",
|
|
1082
1094
|
"SESSION_LOG_DIGEST_SCHEME": "variable",
|
|
1095
|
+
"SETTLEMENT_IS_REFUSAL": "variable",
|
|
1096
|
+
"SETTLEMENT_KINDS": "variable",
|
|
1083
1097
|
"SHARED_MEMORY_LIST_PAGE_SIZE": "variable",
|
|
1084
1098
|
"SHARED_MEMORY_READ_CAP_BYTES": "variable",
|
|
1085
1099
|
"SKILL_TOOL_NAME": "variable",
|
|
@@ -1155,6 +1169,8 @@
|
|
|
1155
1169
|
"SessionTreeEntry": "type",
|
|
1156
1170
|
"SessionWarmup": "interface",
|
|
1157
1171
|
"SessionWriteOptions": "interface",
|
|
1172
|
+
"Settlement": "type",
|
|
1173
|
+
"SettlementKind": "type",
|
|
1158
1174
|
"SharedAbortScope": "class",
|
|
1159
1175
|
"SharedMemoryDocumentEntry": "interface",
|
|
1160
1176
|
"SharedMemoryFixture": "interface",
|
|
@@ -1253,6 +1269,7 @@
|
|
|
1253
1269
|
"TeamMember": "interface",
|
|
1254
1270
|
"TeamResult": "interface",
|
|
1255
1271
|
"TeamTurn": "interface",
|
|
1272
|
+
"TerminalCause": "type",
|
|
1256
1273
|
"TerminalClaimIntent": "type",
|
|
1257
1274
|
"TerminalClaimOutcome": "type",
|
|
1258
1275
|
"TextContent": "interface",
|
|
@@ -1364,6 +1381,7 @@
|
|
|
1364
1381
|
"WorkflowInternals": "interface",
|
|
1365
1382
|
"WorkflowItemStatus": "type",
|
|
1366
1383
|
"WorkflowJournalEntry": "interface",
|
|
1384
|
+
"WorkflowJournalIncompatibleError": "class",
|
|
1367
1385
|
"WorkflowJournalStore": "interface",
|
|
1368
1386
|
"WorkflowLimits": "interface",
|
|
1369
1387
|
"WorkflowMaxAgentsError": "class",
|
|
@@ -1473,6 +1491,7 @@
|
|
|
1473
1491
|
"chargeUsageRecord": "function",
|
|
1474
1492
|
"checkInvariants": "function",
|
|
1475
1493
|
"checkToolPolicyProjection": "function",
|
|
1494
|
+
"checkpointFrom": "function",
|
|
1476
1495
|
"checkpointStoreContract": "function",
|
|
1477
1496
|
"checkpointVersionOf": "function",
|
|
1478
1497
|
"clampHopChain": "function",
|
|
@@ -1480,6 +1499,7 @@
|
|
|
1480
1499
|
"classifyCompoundReadonly": "function",
|
|
1481
1500
|
"classifyCompoundReadonlyDetailed": "function",
|
|
1482
1501
|
"classifyHttp": "function",
|
|
1502
|
+
"classifyMcpFailure": "function",
|
|
1483
1503
|
"classifyPromotable": "function",
|
|
1484
1504
|
"clearScanFuse": "function",
|
|
1485
1505
|
"clearStaleToolResults": "function",
|
|
@@ -1700,12 +1720,12 @@
|
|
|
1700
1720
|
"inlineUntrusted": "function",
|
|
1701
1721
|
"inspectDegenerate": "function",
|
|
1702
1722
|
"isAliasModelId": "function",
|
|
1703
|
-
"isApprovalSettledBy": "function",
|
|
1704
|
-
"isAskDenyResolution": "function",
|
|
1705
1723
|
"isAskOrigin": "function",
|
|
1706
1724
|
"isCanonicalPeerAddress": "function",
|
|
1707
1725
|
"isCrossSessionInboundSetting": "function",
|
|
1708
1726
|
"isDelegatedAgentTerminal": "function",
|
|
1727
|
+
"isDeniedBy": "function",
|
|
1728
|
+
"isGateKind": "function",
|
|
1709
1729
|
"isInstructionEntry": "function",
|
|
1710
1730
|
"isIsolated": "function",
|
|
1711
1731
|
"isModelGatedForClass": "function",
|
|
@@ -1723,6 +1743,7 @@
|
|
|
1723
1743
|
"isSecretEnvKey": "function",
|
|
1724
1744
|
"isSelfOrchestrationActive": "function",
|
|
1725
1745
|
"isSessionConflict": "function",
|
|
1746
|
+
"isSettlementKind": "function",
|
|
1726
1747
|
"isSuspendable": "function",
|
|
1727
1748
|
"isSystemInjectionPriority": "function",
|
|
1728
1749
|
"isTerminalTaskNotification": "function",
|
|
@@ -1767,7 +1788,6 @@
|
|
|
1767
1788
|
"materializeEntriesToFiles": "function",
|
|
1768
1789
|
"materializeMcpTools": "function",
|
|
1769
1790
|
"maybeCompact": "function",
|
|
1770
|
-
"mcpFailureCodeOf": "function",
|
|
1771
1791
|
"memoryBackendContract": "function",
|
|
1772
1792
|
"memoryCaptureOptOutUnpersistedNotice": "function",
|
|
1773
1793
|
"memoryCaptureOptedOutNotice": "function",
|
|
@@ -1832,6 +1852,7 @@
|
|
|
1832
1852
|
"parseWorkflowMeta": "function",
|
|
1833
1853
|
"pathToUri": "function",
|
|
1834
1854
|
"pathWithinRoot": "function",
|
|
1855
|
+
"pauseOf": "function",
|
|
1835
1856
|
"peekMemoryAnnouncements": "function",
|
|
1836
1857
|
"peerAdmissionFor": "function",
|
|
1837
1858
|
"peerAxisToken": "function",
|
|
@@ -1879,6 +1900,7 @@
|
|
|
1879
1900
|
"readSessionCaptureOptOut": "function",
|
|
1880
1901
|
"readUsageRecord": "function",
|
|
1881
1902
|
"readV2HeaderHints": "function",
|
|
1903
|
+
"realApprovalOrgFact": "function",
|
|
1882
1904
|
"realPeerClock": "variable",
|
|
1883
1905
|
"reasoningBudgetShare": "function",
|
|
1884
1906
|
"rebuildAutoModeDecider": "function",
|
|
@@ -1917,6 +1939,7 @@
|
|
|
1917
1939
|
"resolveBashTimeoutCaps": "function",
|
|
1918
1940
|
"resolveBinary": "function",
|
|
1919
1941
|
"resolveBuiltinWorkflow": "function",
|
|
1942
|
+
"resolveCheckpointStore": "function",
|
|
1920
1943
|
"resolveComplianceDenies": "function",
|
|
1921
1944
|
"resolveCrossSessionDialogExpiry": "function",
|
|
1922
1945
|
"resolveCrossSessionInboundSetting": "function",
|
|
@@ -1947,6 +1970,7 @@
|
|
|
1947
1970
|
"resolveUsageWindows": "function",
|
|
1948
1971
|
"resolveWriteProtectedTable": "function",
|
|
1949
1972
|
"restoreFrozenPaths": "function",
|
|
1973
|
+
"resumeGateMatches": "function",
|
|
1950
1974
|
"resumeWithVerification": "function",
|
|
1951
1975
|
"retiredWorkflowNameAliases": "function",
|
|
1952
1976
|
"retryBackoffMs": "function",
|
|
@@ -1994,6 +2018,7 @@
|
|
|
1994
2018
|
"scopeCoversCwd": "function",
|
|
1995
2019
|
"scopeDirName": "function",
|
|
1996
2020
|
"screenApproverAttribution": "function",
|
|
2021
|
+
"screenGateOutcome": "function",
|
|
1997
2022
|
"screenInboundEntries": "function",
|
|
1998
2023
|
"screenRuleSyncState": "function",
|
|
1999
2024
|
"scrubSecretEnv": "function",
|
|
@@ -2034,6 +2059,7 @@
|
|
|
2034
2059
|
"teacherMode": "function",
|
|
2035
2060
|
"termSet": "function",
|
|
2036
2061
|
"terminalForTier": "function",
|
|
2062
|
+
"terminalProjection": "function",
|
|
2037
2063
|
"tightenTaskSpec": "function",
|
|
2038
2064
|
"toA2ATaskState": "function",
|
|
2039
2065
|
"toolPolicyNameSets": "function",
|
|
@@ -2094,10 +2120,8 @@
|
|
|
2094
2120
|
"AGGREGATE_MEDIA_BUDGET_BYTES": "advanced",
|
|
2095
2121
|
"AGGREGATE_TOOL_RESULT_BUDGET_CHARS": "advanced",
|
|
2096
2122
|
"ANNOUNCEMENTS_FILE": "advanced",
|
|
2097
|
-
"APPROVAL_SETTLED_BY_VALUES": "advanced",
|
|
2098
2123
|
"APPROVER_ATTRIBUTION_MAX_CHARS": "advanced",
|
|
2099
2124
|
"ARTIFACT_LIMITS": "advanced",
|
|
2100
|
-
"ASK_DENY_RESOLUTION_VALUES": "advanced",
|
|
2101
2125
|
"ASK_EVIDENCE_ABSENCE_VALUES": "advanced",
|
|
2102
2126
|
"ASK_ORIGINS": "advanced",
|
|
2103
2127
|
"AUTONOMOUS_LOOP_DYNAMIC_SENTINEL": "advanced",
|
|
@@ -2137,12 +2161,10 @@
|
|
|
2137
2161
|
"AggregateBudgetOptions": "advanced",
|
|
2138
2162
|
"AnthropicBrainConfig": "advanced",
|
|
2139
2163
|
"AppendLog": "advanced",
|
|
2140
|
-
"ApprovalSettledBy": "stable",
|
|
2141
2164
|
"ArtifactVerifyResult": "advanced",
|
|
2142
2165
|
"AskAnswerContinuationSource": "advanced",
|
|
2143
2166
|
"AskCarry": "advanced",
|
|
2144
2167
|
"AskDelegationProvenance": "advanced",
|
|
2145
|
-
"AskDenyResolution": "advanced",
|
|
2146
2168
|
"AskEffective": "advanced",
|
|
2147
2169
|
"AskEvidenceAbsence": "advanced",
|
|
2148
2170
|
"AskOrigin": "advanced",
|
|
@@ -2275,7 +2297,10 @@
|
|
|
2275
2297
|
"Checkpoint": "stable",
|
|
2276
2298
|
"CheckpointError": "stable",
|
|
2277
2299
|
"CheckpointFaultMode": "advanced",
|
|
2300
|
+
"CheckpointFields": "advanced",
|
|
2278
2301
|
"CheckpointGate": "advanced",
|
|
2302
|
+
"CheckpointPause": "advanced",
|
|
2303
|
+
"CheckpointRow": "advanced",
|
|
2279
2304
|
"CheckpointState": "advanced",
|
|
2280
2305
|
"CheckpointStore": "stable",
|
|
2281
2306
|
"CheckpointSummary": "stable",
|
|
@@ -2376,6 +2401,8 @@
|
|
|
2376
2401
|
"DEGRADED_DIAGNOSTIC_TYPE": "advanced",
|
|
2377
2402
|
"DELEGATION_MAX_CONCURRENT_DEFAULT": "advanced",
|
|
2378
2403
|
"DELEGATION_MAX_PER_SESSION_DEFAULT": "advanced",
|
|
2404
|
+
"DENIED_BY_MAY_VETO": "advanced",
|
|
2405
|
+
"DENIED_BY_VALUES": "advanced",
|
|
2379
2406
|
"DESIGN_REVIEW_PROMPTS": "advanced",
|
|
2380
2407
|
"DISCUSSION_SCRIPT": "advanced",
|
|
2381
2408
|
"DISCUSSION_WORKFLOW_NAME": "advanced",
|
|
@@ -2392,6 +2419,7 @@
|
|
|
2392
2419
|
"DenialLimitFallback": "advanced",
|
|
2393
2420
|
"DenialLimitFallbackFace": "advanced",
|
|
2394
2421
|
"DenialLimitVerdict": "advanced",
|
|
2422
|
+
"DeniedBy": "advanced",
|
|
2395
2423
|
"DeveloperTaskConfig": "advanced",
|
|
2396
2424
|
"DistillerCandidate": "advanced",
|
|
2397
2425
|
"DistillerChatAnswer": "advanced",
|
|
@@ -2509,6 +2537,9 @@
|
|
|
2509
2537
|
"GLOBAL_USAGE_KEY": "advanced",
|
|
2510
2538
|
"GOAL_COMPLETION_GUIDANCE": "advanced",
|
|
2511
2539
|
"GOVERNANCE_CODES": "advanced",
|
|
2540
|
+
"GateDisposition": "advanced",
|
|
2541
|
+
"GateKind": "advanced",
|
|
2542
|
+
"GateOutcome": "stable",
|
|
2512
2543
|
"GateVerdict": "advanced",
|
|
2513
2544
|
"GoalBudgetCause": "advanced",
|
|
2514
2545
|
"GoalResult": "advanced",
|
|
@@ -2629,7 +2660,8 @@
|
|
|
2629
2660
|
"MAX_STEER_INPUT_ID_CHARS": "advanced",
|
|
2630
2661
|
"MAX_SUPPORTED_CHECKPOINT_VERSION": "advanced",
|
|
2631
2662
|
"MAX_WORKFLOW_ITEMS": "advanced",
|
|
2632
|
-
"
|
|
2663
|
+
"MCP_DELIVERY_VERDICTS": "advanced",
|
|
2664
|
+
"MCP_FAILURE_KINDS": "advanced",
|
|
2633
2665
|
"MCP_IMAGE_MAX_BASE64": "advanced",
|
|
2634
2666
|
"MCP_NAMESPACE": "advanced",
|
|
2635
2667
|
"MCP_PREFIX": "advanced",
|
|
@@ -2680,9 +2712,11 @@
|
|
|
2680
2712
|
"MaterializedFile": "advanced",
|
|
2681
2713
|
"MaterializedMcp": "advanced",
|
|
2682
2714
|
"MaybeCompactOptions": "advanced",
|
|
2715
|
+
"McpDelivered": "advanced",
|
|
2683
2716
|
"McpElicitRequest": "advanced",
|
|
2684
2717
|
"McpElicitResponse": "advanced",
|
|
2685
|
-
"
|
|
2718
|
+
"McpFailure": "advanced",
|
|
2719
|
+
"McpFailureKind": "advanced",
|
|
2686
2720
|
"McpImageResizer": "advanced",
|
|
2687
2721
|
"McpRefreshResult": "advanced",
|
|
2688
2722
|
"McpServerSpec": "advanced",
|
|
@@ -2777,6 +2811,7 @@
|
|
|
2777
2811
|
"ORG_RULE_DECISION_REASON": "advanced",
|
|
2778
2812
|
"ORG_STATE_FILE": "advanced",
|
|
2779
2813
|
"ORG_UNAVAILABLE_DECISION_REASON": "advanced",
|
|
2814
|
+
"ORIGIN_IMPLIES_REAL_APPROVAL": "advanced",
|
|
2780
2815
|
"ORPHAN_ADOPT_MAX_DEFAULT": "advanced",
|
|
2781
2816
|
"ORPHAN_ADOPT_WINDOW_MS_DEFAULT": "advanced",
|
|
2782
2817
|
"OUTPUT_EFFICIENCY": "advanced",
|
|
@@ -2811,6 +2846,7 @@
|
|
|
2811
2846
|
"OutputChunk": "advanced",
|
|
2812
2847
|
"OwnOrgAdmissionVerdict": "advanced",
|
|
2813
2848
|
"PARK_SELFCHECK_SCOPE_PREFIX": "advanced",
|
|
2849
|
+
"PAUSE_REGISTRY": "advanced",
|
|
2814
2850
|
"PEER_ADDRESS_PREFIXES": "advanced",
|
|
2815
2851
|
"PEER_ADMISSION_DEFAULTS": "advanced",
|
|
2816
2852
|
"PEER_DELIVERY_RECEIPT_STATES": "advanced",
|
|
@@ -2862,6 +2898,7 @@
|
|
|
2862
2898
|
"ParsedPermissionRule": "advanced",
|
|
2863
2899
|
"ParsedScopeKey": "advanced",
|
|
2864
2900
|
"PatchReport": "stable",
|
|
2901
|
+
"PausedCause": "advanced",
|
|
2865
2902
|
"PeerAdmission": "advanced",
|
|
2866
2903
|
"PeerAdmissionConfig": "advanced",
|
|
2867
2904
|
"PeerAdmissionOptions": "advanced",
|
|
@@ -2915,10 +2952,10 @@
|
|
|
2915
2952
|
"PeerSessionResolution": "advanced",
|
|
2916
2953
|
"PeerSessionTempo": "advanced",
|
|
2917
2954
|
"PendingAction": "advanced",
|
|
2955
|
+
"PendingKind": "advanced",
|
|
2918
2956
|
"PendingSteerEntry": "stable",
|
|
2919
2957
|
"PendingSteerInput": "stable",
|
|
2920
2958
|
"PermissionDeniedPayload": "advanced",
|
|
2921
|
-
"PermissionDeniedSource": "advanced",
|
|
2922
2959
|
"PermissionModeClass": "advanced",
|
|
2923
2960
|
"PermissionResult": "advanced",
|
|
2924
2961
|
"PermissionRule": "advanced",
|
|
@@ -3069,6 +3106,7 @@
|
|
|
3069
3106
|
"ResourceLedger": "advanced",
|
|
3070
3107
|
"ResourceLimitReason": "advanced",
|
|
3071
3108
|
"Result": "stable",
|
|
3109
|
+
"ResumeGate": "advanced",
|
|
3072
3110
|
"ResumeOutcome": "stable",
|
|
3073
3111
|
"ResumePreflightInfo": "advanced",
|
|
3074
3112
|
"ResumePreflightVerdict": "advanced",
|
|
@@ -3154,6 +3192,8 @@
|
|
|
3154
3192
|
"SESSION_BOX_PREFIX": "advanced",
|
|
3155
3193
|
"SESSION_CAPTURE_OPTOUT_DIR": "advanced",
|
|
3156
3194
|
"SESSION_LOG_DIGEST_SCHEME": "internal",
|
|
3195
|
+
"SETTLEMENT_IS_REFUSAL": "advanced",
|
|
3196
|
+
"SETTLEMENT_KINDS": "advanced",
|
|
3157
3197
|
"SHARED_MEMORY_LIST_PAGE_SIZE": "advanced",
|
|
3158
3198
|
"SHARED_MEMORY_READ_CAP_BYTES": "advanced",
|
|
3159
3199
|
"SKILL_TOOL_NAME": "internal",
|
|
@@ -3229,6 +3269,8 @@
|
|
|
3229
3269
|
"SessionTreeEntry": "stable",
|
|
3230
3270
|
"SessionWarmup": "advanced",
|
|
3231
3271
|
"SessionWriteOptions": "stable",
|
|
3272
|
+
"Settlement": "advanced",
|
|
3273
|
+
"SettlementKind": "advanced",
|
|
3232
3274
|
"SharedAbortScope": "advanced",
|
|
3233
3275
|
"SharedMemoryDocumentEntry": "advanced",
|
|
3234
3276
|
"SharedMemoryFixture": "advanced",
|
|
@@ -3327,6 +3369,7 @@
|
|
|
3327
3369
|
"TeamMember": "advanced",
|
|
3328
3370
|
"TeamResult": "advanced",
|
|
3329
3371
|
"TeamTurn": "advanced",
|
|
3372
|
+
"TerminalCause": "advanced",
|
|
3330
3373
|
"TerminalClaimIntent": "advanced",
|
|
3331
3374
|
"TerminalClaimOutcome": "advanced",
|
|
3332
3375
|
"TextContent": "advanced",
|
|
@@ -3438,6 +3481,7 @@
|
|
|
3438
3481
|
"WorkflowInternals": "internal",
|
|
3439
3482
|
"WorkflowItemStatus": "advanced",
|
|
3440
3483
|
"WorkflowJournalEntry": "advanced",
|
|
3484
|
+
"WorkflowJournalIncompatibleError": "advanced",
|
|
3441
3485
|
"WorkflowJournalStore": "advanced",
|
|
3442
3486
|
"WorkflowLimits": "advanced",
|
|
3443
3487
|
"WorkflowMaxAgentsError": "advanced",
|
|
@@ -3547,6 +3591,7 @@
|
|
|
3547
3591
|
"chargeUsageRecord": "advanced",
|
|
3548
3592
|
"checkInvariants": "advanced",
|
|
3549
3593
|
"checkToolPolicyProjection": "advanced",
|
|
3594
|
+
"checkpointFrom": "advanced",
|
|
3550
3595
|
"checkpointStoreContract": "advanced",
|
|
3551
3596
|
"checkpointVersionOf": "advanced",
|
|
3552
3597
|
"clampHopChain": "advanced",
|
|
@@ -3554,6 +3599,7 @@
|
|
|
3554
3599
|
"classifyCompoundReadonly": "advanced",
|
|
3555
3600
|
"classifyCompoundReadonlyDetailed": "advanced",
|
|
3556
3601
|
"classifyHttp": "advanced",
|
|
3602
|
+
"classifyMcpFailure": "advanced",
|
|
3557
3603
|
"classifyPromotable": "advanced",
|
|
3558
3604
|
"clearScanFuse": "advanced",
|
|
3559
3605
|
"clearStaleToolResults": "advanced",
|
|
@@ -3774,12 +3820,12 @@
|
|
|
3774
3820
|
"inlineUntrusted": "advanced",
|
|
3775
3821
|
"inspectDegenerate": "advanced",
|
|
3776
3822
|
"isAliasModelId": "advanced",
|
|
3777
|
-
"isApprovalSettledBy": "advanced",
|
|
3778
|
-
"isAskDenyResolution": "advanced",
|
|
3779
3823
|
"isAskOrigin": "advanced",
|
|
3780
3824
|
"isCanonicalPeerAddress": "advanced",
|
|
3781
3825
|
"isCrossSessionInboundSetting": "advanced",
|
|
3782
3826
|
"isDelegatedAgentTerminal": "advanced",
|
|
3827
|
+
"isDeniedBy": "advanced",
|
|
3828
|
+
"isGateKind": "advanced",
|
|
3783
3829
|
"isInstructionEntry": "advanced",
|
|
3784
3830
|
"isIsolated": "advanced",
|
|
3785
3831
|
"isModelGatedForClass": "advanced",
|
|
@@ -3797,6 +3843,7 @@
|
|
|
3797
3843
|
"isSecretEnvKey": "advanced",
|
|
3798
3844
|
"isSelfOrchestrationActive": "advanced",
|
|
3799
3845
|
"isSessionConflict": "stable",
|
|
3846
|
+
"isSettlementKind": "advanced",
|
|
3800
3847
|
"isSuspendable": "advanced",
|
|
3801
3848
|
"isSystemInjectionPriority": "advanced",
|
|
3802
3849
|
"isTerminalTaskNotification": "advanced",
|
|
@@ -3841,7 +3888,6 @@
|
|
|
3841
3888
|
"materializeEntriesToFiles": "advanced",
|
|
3842
3889
|
"materializeMcpTools": "stable",
|
|
3843
3890
|
"maybeCompact": "advanced",
|
|
3844
|
-
"mcpFailureCodeOf": "advanced",
|
|
3845
3891
|
"memoryBackendContract": "stable",
|
|
3846
3892
|
"memoryCaptureOptOutUnpersistedNotice": "advanced",
|
|
3847
3893
|
"memoryCaptureOptedOutNotice": "advanced",
|
|
@@ -3906,6 +3952,7 @@
|
|
|
3906
3952
|
"parseWorkflowMeta": "advanced",
|
|
3907
3953
|
"pathToUri": "advanced",
|
|
3908
3954
|
"pathWithinRoot": "advanced",
|
|
3955
|
+
"pauseOf": "advanced",
|
|
3909
3956
|
"peekMemoryAnnouncements": "advanced",
|
|
3910
3957
|
"peerAdmissionFor": "advanced",
|
|
3911
3958
|
"peerAxisToken": "advanced",
|
|
@@ -3953,6 +4000,7 @@
|
|
|
3953
4000
|
"readSessionCaptureOptOut": "advanced",
|
|
3954
4001
|
"readUsageRecord": "advanced",
|
|
3955
4002
|
"readV2HeaderHints": "advanced",
|
|
4003
|
+
"realApprovalOrgFact": "advanced",
|
|
3956
4004
|
"realPeerClock": "advanced",
|
|
3957
4005
|
"reasoningBudgetShare": "advanced",
|
|
3958
4006
|
"rebuildAutoModeDecider": "advanced",
|
|
@@ -3991,6 +4039,7 @@
|
|
|
3991
4039
|
"resolveBashTimeoutCaps": "advanced",
|
|
3992
4040
|
"resolveBinary": "advanced",
|
|
3993
4041
|
"resolveBuiltinWorkflow": "advanced",
|
|
4042
|
+
"resolveCheckpointStore": "advanced",
|
|
3994
4043
|
"resolveComplianceDenies": "advanced",
|
|
3995
4044
|
"resolveCrossSessionDialogExpiry": "advanced",
|
|
3996
4045
|
"resolveCrossSessionInboundSetting": "advanced",
|
|
@@ -4021,6 +4070,7 @@
|
|
|
4021
4070
|
"resolveUsageWindows": "advanced",
|
|
4022
4071
|
"resolveWriteProtectedTable": "advanced",
|
|
4023
4072
|
"restoreFrozenPaths": "advanced",
|
|
4073
|
+
"resumeGateMatches": "advanced",
|
|
4024
4074
|
"resumeWithVerification": "advanced",
|
|
4025
4075
|
"retiredWorkflowNameAliases": "advanced",
|
|
4026
4076
|
"retryBackoffMs": "advanced",
|
|
@@ -4068,6 +4118,7 @@
|
|
|
4068
4118
|
"scopeCoversCwd": "advanced",
|
|
4069
4119
|
"scopeDirName": "advanced",
|
|
4070
4120
|
"screenApproverAttribution": "advanced",
|
|
4121
|
+
"screenGateOutcome": "advanced",
|
|
4071
4122
|
"screenInboundEntries": "advanced",
|
|
4072
4123
|
"screenRuleSyncState": "advanced",
|
|
4073
4124
|
"scrubSecretEnv": "advanced",
|
|
@@ -4108,6 +4159,7 @@
|
|
|
4108
4159
|
"teacherMode": "advanced",
|
|
4109
4160
|
"termSet": "stable",
|
|
4110
4161
|
"terminalForTier": "advanced",
|
|
4162
|
+
"terminalProjection": "internal",
|
|
4111
4163
|
"tightenTaskSpec": "stable",
|
|
4112
4164
|
"toA2ATaskState": "advanced",
|
|
4113
4165
|
"toolPolicyNameSets": "advanced",
|
|
File without changes
|
|
File without changes
|