@sema-agent/core 7.16.0 → 7.17.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (193) hide show
  1. package/CHANGELOG.md +173 -0
  2. package/dist/agents/builtin-agents.d.ts +3 -3
  3. package/dist/agents/cross-session-envelope.d.ts +0 -1
  4. package/dist/agents/cross-session-envelope.js +0 -1
  5. package/dist/agents/peer-notices.d.ts +0 -9
  6. package/dist/agents/peer-notices.js +0 -63
  7. package/dist/agents/subagent.js +7 -15
  8. package/dist/brain/request-params.d.ts +2 -2
  9. package/dist/config/defaults.d.ts +0 -7
  10. package/dist/config/defaults.js +0 -2
  11. package/dist/core/artifact-host.d.ts +218 -0
  12. package/dist/core/artifact-host.js +92 -0
  13. package/dist/core/ask-origin.d.ts +29 -3
  14. package/dist/core/ask-origin.js +17 -9
  15. package/dist/core/ask-question.d.ts +25 -0
  16. package/dist/core/ask-question.js +4 -0
  17. package/dist/core/ask-unresolvable-notice.d.ts +30 -21
  18. package/dist/core/ask-unresolvable-notice.js +16 -8
  19. package/dist/core/auto-compaction.d.ts +10 -10
  20. package/dist/core/auto-mode-arming.d.ts +2 -2
  21. package/dist/core/background-agent-store.d.ts +5 -5
  22. package/dist/core/background-shell.d.ts +1 -1
  23. package/dist/core/checkpoint-execution-record.d.ts +0 -3
  24. package/dist/core/checkpoint-execution-record.js +0 -4
  25. package/dist/core/checkpoint-store.d.ts +71 -99
  26. package/dist/core/checkpoint-store.js +9 -16
  27. package/dist/core/context-edit.d.ts +36 -104
  28. package/dist/core/context-edit.js +37 -60
  29. package/dist/core/effective-path-target.d.ts +68 -8
  30. package/dist/core/effective-path-target.js +42 -30
  31. package/dist/core/engine-notice.d.ts +46 -32
  32. package/dist/core/env-budget.d.ts +31 -0
  33. package/dist/core/env-budget.js +39 -0
  34. package/dist/core/exec-output-tail.d.ts +5 -5
  35. package/dist/core/file-history-store.js +3 -6
  36. package/dist/core/fs-write-gate-policy.d.ts +1 -1
  37. package/dist/core/fs-write-gate-policy.js +3 -3
  38. package/dist/core/gate-lanes.js +9 -15
  39. package/dist/core/governance-codes.d.ts +1 -1
  40. package/dist/core/governance-codes.js +2 -0
  41. package/dist/core/hands-band.d.ts +1 -1
  42. package/dist/core/hooks.d.ts +18 -17
  43. package/dist/core/lsp-session.d.ts +1 -1
  44. package/dist/core/lsp.d.ts +1 -1
  45. package/dist/core/lsp.js +5 -4
  46. package/dist/core/mcp.d.ts +5 -5
  47. package/dist/core/mcp.js +4 -48
  48. package/dist/core/memory-recall.d.ts +0 -8
  49. package/dist/core/memory.d.ts +1 -1
  50. package/dist/core/oracle-isolation.js +2 -2
  51. package/dist/core/parent-spec-seat.d.ts +66 -0
  52. package/dist/core/parent-spec-seat.js +47 -0
  53. package/dist/core/permission-rule-model.d.ts +11 -6
  54. package/dist/core/permission-rule-model.js +53 -37
  55. package/dist/core/permission-rules.js +8 -3
  56. package/dist/core/protocol-naming.d.ts +2 -2
  57. package/dist/core/remote-env.d.ts +1 -1
  58. package/dist/core/retired-keys.d.ts +19 -0
  59. package/dist/core/retired-keys.js +15 -0
  60. package/dist/core/runner/active-skill-scope.js +3 -3
  61. package/dist/core/runner/assemble-result.d.ts +15 -13
  62. package/dist/core/runner/assemble-result.js +5 -4
  63. package/dist/core/runner/compaction-call-options.d.ts +25 -89
  64. package/dist/core/runner/contracts.d.ts +10 -9
  65. package/dist/core/runner/gate-exit.js +15 -1
  66. package/dist/core/runner/halt-attribution.d.ts +35 -0
  67. package/dist/core/runner/halt-attribution.js +16 -0
  68. package/dist/core/runner/memory-consolidation.d.ts +0 -2
  69. package/dist/core/runner/memory-consolidation.js +0 -1
  70. package/dist/core/runner/prepare-artifact.d.ts +53 -0
  71. package/dist/core/runner/prepare-artifact.js +77 -0
  72. package/dist/core/runner/prepare-caps-and-workflow.d.ts +4 -2
  73. package/dist/core/runner/prepare-caps-and-workflow.js +2 -3
  74. package/dist/core/runner/prepare-config-doors.d.ts +3 -3
  75. package/dist/core/runner/prepare-config-doors.js +5 -2
  76. package/dist/core/runner/prepare-context-lane.d.ts +2 -2
  77. package/dist/core/runner/prepare-context-lane.js +2 -13
  78. package/dist/core/runner/prepare-file-history.d.ts +1 -1
  79. package/dist/core/runner/prepare-file-history.js +3 -52
  80. package/dist/core/runner/prepare-hands-readface.d.ts +4 -7
  81. package/dist/core/runner/prepare-hands-readface.js +3 -2
  82. package/dist/core/runner/prepare-inherited-gate.d.ts +5 -2
  83. package/dist/core/runner/prepare-inherited-gate.js +7 -8
  84. package/dist/core/runner/prepare-memory.d.ts +4 -6
  85. package/dist/core/runner/prepare-memory.js +4 -2
  86. package/dist/core/runner/prepare-policy-chain.d.ts +3 -3
  87. package/dist/core/runner/prepare-policy-chain.js +15 -30
  88. package/dist/core/runner/prepare-prompt-assembly.js +1 -1
  89. package/dist/core/runner/prepare-safety-scan.d.ts +1 -1
  90. package/dist/core/runner/prepare-suspend-saga.js +0 -2
  91. package/dist/core/runner/prepare-task.js +10 -9
  92. package/dist/core/runner/prepare-wiring-manifest.js +9 -7
  93. package/dist/core/runner/resume-admission.js +2 -1
  94. package/dist/core/runner/resume-internals-and-config.js +4 -0
  95. package/dist/core/runner/retired-runner-deps.d.ts +3 -0
  96. package/dist/core/runner/retired-runner-deps.js +7 -0
  97. package/dist/core/runner/run-harness-handlers.js +2 -3
  98. package/dist/core/runner/run-settle-and-teardown.d.ts +1 -1
  99. package/dist/core/runner/run-settle-and-teardown.js +3 -1
  100. package/dist/core/runner/session-file-state-replay.js +3 -3
  101. package/dist/core/runner/session-rule-policy.js +3 -4
  102. package/dist/core/runner/stream-halt-verbs.js +1 -1
  103. package/dist/core/runner/stream-steer-verb.js +1 -4
  104. package/dist/core/runner/workspace-path.js +3 -0
  105. package/dist/core/runner-deps.d.ts +30 -49
  106. package/dist/core/safe-notify.d.ts +1 -1
  107. package/dist/core/sensitive-path-policy.d.ts +1 -1
  108. package/dist/core/sensitive-path-policy.js +4 -4
  109. package/dist/core/session.d.ts +2 -2
  110. package/dist/core/skill-tool-specifier.d.ts +1 -1
  111. package/dist/core/skills-directory.d.ts +1 -1
  112. package/dist/core/store-contracts/checkpoint-store-contract.js +1 -1
  113. package/dist/core/strategy-store.d.ts +8 -11
  114. package/dist/core/task-event.d.ts +20 -17
  115. package/dist/core/task-limits.d.ts +1 -1
  116. package/dist/core/task-notification.d.ts +5 -5
  117. package/dist/core/task-registry-agent.d.ts +5 -5
  118. package/dist/core/task-registry-monitor.d.ts +2 -2
  119. package/dist/core/task-registry-shared.d.ts +27 -27
  120. package/dist/core/task-registry-shared.js +3 -13
  121. package/dist/core/task-registry.d.ts +8 -8
  122. package/dist/core/task-result.d.ts +37 -37
  123. package/dist/core/task-spec.d.ts +5 -5
  124. package/dist/core/task-stream.d.ts +16 -11
  125. package/dist/core/tool-catalog-entries.d.ts +1 -0
  126. package/dist/core/tool-catalog-entries.js +5 -0
  127. package/dist/core/tool-conformance.d.ts +0 -2
  128. package/dist/core/tool-conformance.js +1 -3
  129. package/dist/core/tool-errors.d.ts +5 -0
  130. package/dist/core/tool-errors.js +1 -0
  131. package/dist/core/tool-policy.d.ts +51 -22
  132. package/dist/core/tool-policy.js +28 -5
  133. package/dist/core/tool-result-budget.d.ts +1 -1
  134. package/dist/core/tool-result-store.d.ts +11 -11
  135. package/dist/core/tool-spec.d.ts +34 -38
  136. package/dist/core/tools.d.ts +2 -2
  137. package/dist/core/trace.d.ts +12 -15
  138. package/dist/core/untrusted-text.d.ts +1 -1
  139. package/dist/core/wiring-manifest.d.ts +4 -3
  140. package/dist/core/workflow-journal-store.d.ts +11 -11
  141. package/dist/engine/execution-env/node-execution-env.d.ts +3 -2
  142. package/dist/engine/execution-env/node-execution-env.js +4 -2
  143. package/dist/engine/harness/agent-harness.d.ts +47 -4
  144. package/dist/engine/harness/agent-harness.js +52 -9
  145. package/dist/engine/loop/agent-loop.js +15 -8
  146. package/dist/engine/loop/types.d.ts +5 -0
  147. package/dist/index.d.ts +19 -14
  148. package/dist/index.js +15 -10
  149. package/dist/internal/harness.d.ts +1 -0
  150. package/dist/orchestration/run-spec.d.ts +3 -0
  151. package/dist/orchestration/run-spec.js +3 -3
  152. package/dist/orchestration/run-workflow-tool.d.ts +12 -6
  153. package/dist/orchestration/run-workflow-tool.js +23 -5
  154. package/dist/orchestration/workflow-primitives.d.ts +4 -2
  155. package/dist/orchestration/workflow-primitives.js +1 -4
  156. package/dist/orchestration/workflow-types.d.ts +34 -4
  157. package/dist/orchestration/workflow-types.js +2 -0
  158. package/dist/orchestration/workflow.d.ts +39 -7
  159. package/dist/orchestration/workflow.js +234 -113
  160. package/dist/prompt-assembly/assemble.d.ts +2 -2
  161. package/dist/prompt-assembly/assemble.js +9 -9
  162. package/dist/prompt-assembly/composer.d.ts +6 -7
  163. package/dist/prompt-assembly/composer.js +10 -10
  164. package/dist/prompt-assembly/epoch.js +1 -1
  165. package/dist/prompt-assembly/event-registry.d.ts +0 -21
  166. package/dist/prompt-assembly/packs/sema-default.js +30 -30
  167. package/dist/prompt-assembly/types.d.ts +14 -14
  168. package/dist/prompts/coordinator.d.ts +0 -13
  169. package/dist/prompts/coordinator.js +0 -3
  170. package/dist/stores/file/checkpoint-store.js +1 -5
  171. package/dist/stores/file/file-history-store.js +2 -2
  172. package/dist/stores/file/permission-rule-store.d.ts +4 -35
  173. package/dist/stores/file/permission-rule-store.js +4 -148
  174. package/dist/tools/artifact/artifact-text.d.ts +62 -0
  175. package/dist/tools/artifact/artifact-text.js +68 -0
  176. package/dist/tools/artifact/artifact-tool.d.ts +52 -0
  177. package/dist/tools/artifact/artifact-tool.js +351 -0
  178. package/dist/tools/artifact/local-stub.d.ts +26 -0
  179. package/dist/tools/artifact/local-stub.js +296 -0
  180. package/dist/tools/fs/bash-readonly-classifier.d.ts +74 -8
  181. package/dist/tools/fs/bash-readonly-classifier.js +171 -60
  182. package/dist/tools/fs/fs-bash.d.ts +14 -10
  183. package/dist/tools/fs/fs-bash.js +19 -27
  184. package/dist/tools/fs/fs-search-tools.js +5 -2
  185. package/dist/tools/fs/fs-shared.d.ts +2 -0
  186. package/dist/tools/fs/fs-shared.js +3 -11
  187. package/dist/tools/fs/index.d.ts +4 -0
  188. package/dist/tools/fs/index.js +4 -1
  189. package/dist/tools/fs/safety.d.ts +117 -1
  190. package/dist/tools/fs/safety.js +131 -31
  191. package/dist/tools/fs/search.js +8 -6
  192. package/package.json +2 -1
  193. package/test/export-surface.snapshot.json +115 -39
@@ -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": 2295,
4
+ "count": 2333,
5
5
  "exports": {
6
6
  "A2ATaskState": "type",
7
7
  "A2ATaskStateReversal": "type",
@@ -22,7 +22,17 @@
22
22
  "ANNOUNCEMENTS_FILE": "variable",
23
23
  "APPROVAL_CARD_REQUIRED_KEYS": "variable",
24
24
  "APPROVER_ATTRIBUTION_MAX_CHARS": "variable",
25
+ "ARTIFACT_ACTIONS": "variable",
26
+ "ARTIFACT_ACTION_HOST_METHOD": "variable",
27
+ "ARTIFACT_CARD": "variable",
28
+ "ARTIFACT_FAILURE_RESULT_CODE": "variable",
29
+ "ARTIFACT_HOST_ERROR_CODE": "variable",
30
+ "ARTIFACT_HOST_FAILURE_CODES": "variable",
25
31
  "ARTIFACT_LIMITS": "variable",
32
+ "ARTIFACT_LIST_SCOPES": "variable",
33
+ "ARTIFACT_PLANES": "variable",
34
+ "ARTIFACT_PLANE_CONTENT_ORIGIN": "variable",
35
+ "ARTIFACT_PUBLISH_CONTEXTS": "variable",
26
36
  "ASK_EVIDENCE_ABSENCE_VALUES": "variable",
27
37
  "ASK_ORIGINS": "variable",
28
38
  "ASK_USER_QUESTION_TOOL_NAME": "variable",
@@ -66,6 +76,28 @@
66
76
  "AggregateBudgetOptions": "interface",
67
77
  "AnthropicBrainConfig": "interface",
68
78
  "AppendLog": "class",
79
+ "ArtifactAction": "type",
80
+ "ArtifactCallContext": "interface",
81
+ "ArtifactConflictSnapshot": "interface",
82
+ "ArtifactFileContent": "interface",
83
+ "ArtifactFileOutcome": "type",
84
+ "ArtifactFilesOutcome": "type",
85
+ "ArtifactHost": "interface",
86
+ "ArtifactHostCapabilities": "interface",
87
+ "ArtifactHostCapabilitiesVerdict": "type",
88
+ "ArtifactHostFailureCode": "type",
89
+ "ArtifactListOutcome": "type",
90
+ "ArtifactListRow": "interface",
91
+ "ArtifactListScope": "type",
92
+ "ArtifactLocalRead": "type",
93
+ "ArtifactPlane": "type",
94
+ "ArtifactPublishContext": "type",
95
+ "ArtifactPublishOutcome": "type",
96
+ "ArtifactPublishRequest": "interface",
97
+ "ArtifactReadOutcome": "type",
98
+ "ArtifactRef": "interface",
99
+ "ArtifactResultCode": "type",
100
+ "ArtifactToolOptions": "interface",
69
101
  "ArtifactVerifyResult": "type",
70
102
  "AskAnswerContinuationSource": "type",
71
103
  "AskCarry": "interface",
@@ -232,7 +264,6 @@
232
264
  "CompactOutcome": "type",
233
265
  "CompactionWindowSafetyInfo": "interface",
234
266
  "CompiledEventPrompt": "interface",
235
- "CompiledMessageInjection": "interface",
236
267
  "CompiledSection": "interface",
237
268
  "CompleteSimpleFn": "type",
238
269
  "ComplianceCapability": "type",
@@ -296,7 +327,6 @@
296
327
  "DEFAULT_CONSOLIDATION_BAND": "variable",
297
328
  "DEFAULT_CONSOLIDATION_MAX_NOTES": "variable",
298
329
  "DEFAULT_CONSOLIDATION_SEARCH_LIMIT": "variable",
299
- "DEFAULT_CONSOLIDATION_TIMEOUT_SEC": "variable",
300
330
  "DEFAULT_EFFORT_LEVELS": "variable",
301
331
  "DEFAULT_FILE_HISTORY_BOUNDARY_KEEP": "variable",
302
332
  "DEFAULT_HARVEST_DEADLINE_MS": "variable",
@@ -348,6 +378,7 @@
348
378
  "ENGINE_NOTICE_CODES": "variable",
349
379
  "ENTER_PLAN_MODE_TOOL_NAME": "variable",
350
380
  "ENV_LIFETIME_SUSPEND_MARGIN_MS": "variable",
381
+ "EVAL_STUB_URL_PREFIX": "variable",
351
382
  "EVENT_PROMPT_REGISTRY": "variable",
352
383
  "EXECUTION_ENVIRONMENT": "variable",
353
384
  "EXECUTION_ENVIRONMENT_OPEN_READS": "variable",
@@ -390,7 +421,6 @@
390
421
  "ExecutionOutcomeConflictError": "class",
391
422
  "ExecutionOutcomeRecordWord": "type",
392
423
  "ExecutionRecordRowFacts": "interface",
393
- "ExecutionRecordTableCoversEveryWord": "type",
394
424
  "ExecutionVerdict": "type",
395
425
  "ExplainInput": "interface",
396
426
  "ExposedMemoryIndexRow": "interface",
@@ -524,7 +554,6 @@
524
554
  "InvariantViolation": "interface",
525
555
  "JOURNAL_OVERSIZE_ERROR_CODE": "variable",
526
556
  "KillProcessTreeOptions": "type",
527
- "LEGACY_PENDING_STEER_INPUT_ID": "variable",
528
557
  "LINEAGE_FILE": "variable",
529
558
  "LIST_AGENTS_MAX_RESULT_CHARS": "variable",
530
559
  "LIST_AGENTS_TOOL_ALIAS": "variable",
@@ -534,6 +563,8 @@
534
563
  "LLM_DISTILLER_CONTRACT_DL2": "variable",
535
564
  "LLM_DISTILLER_CONTRACT_DL3": "variable",
536
565
  "LOCAL_OWNER_UNSYNCABLE_CODE": "variable",
566
+ "LOCAL_STUB_MAX_FILE_BYTES": "variable",
567
+ "LOCAL_STUB_MAX_TOTAL_BYTES": "variable",
537
568
  "LOCKED_KEY_REGISTRY": "variable",
538
569
  "LOWERING_VERSION": "variable",
539
570
  "LSP_FAILURE_BRAND": "variable",
@@ -548,6 +579,8 @@
548
579
  "LlmConsolidationPlanArm": "interface",
549
580
  "LlmConsolidationPlanProduct": "interface",
550
581
  "LlmDistillerContract": "interface",
582
+ "LocalArtifactStub": "class",
583
+ "LocalArtifactStubOptions": "interface",
551
584
  "LockedConfig": "interface",
552
585
  "LockedKey": "type",
553
586
  "LoweringRecord": "interface",
@@ -745,8 +778,6 @@
745
778
  "ORG_STATE_FILE": "variable",
746
779
  "ORG_UNAVAILABLE_DECISION_REASON": "variable",
747
780
  "ORIGIN_IMPLIES_REAL_APPROVAL": "variable",
748
- "ORPHAN_ADOPT_MAX_DEFAULT": "variable",
749
- "ORPHAN_ADOPT_WINDOW_MS_DEFAULT": "variable",
750
781
  "OUTPUT_EFFICIENCY": "variable",
751
782
  "OffCapabilityModel": "interface",
752
783
  "OnAsk": "type",
@@ -792,7 +823,6 @@
792
823
  "PEER_HELD_REVIEW_CAUSES": "variable",
793
824
  "PEER_HOP_CHAIN_CARRY_WINDOW": "variable",
794
825
  "PEER_HOP_CHAIN_WINDOW": "variable",
795
- "PEER_HOP_TOKEN_HEX": "variable",
796
826
  "PEER_IDLE_FIRE_DEBOUNCE_MS": "variable",
797
827
  "PEER_IDLE_HELD_BACKOFF_MS": "variable",
798
828
  "PEER_IDLE_LABEL_MAX": "variable",
@@ -826,6 +856,8 @@
826
856
  "PROJECT_MARKER_PATH": "variable",
827
857
  "PROTOCOL_TABLE": "variable",
828
858
  "PackSectionDeclaration": "interface",
859
+ "ParentSpecSeat": "interface",
860
+ "ParentSpecSeatFields": "type",
829
861
  "ParkLaneReason": "type",
830
862
  "ParkProbeFinding": "interface",
831
863
  "ParkProbeFindingCode": "type",
@@ -836,8 +868,12 @@
836
868
  "ParsedRule": "interface",
837
869
  "ParsedScopeKey": "type",
838
870
  "PatchReport": "interface",
871
+ "PathFamily": "type",
872
+ "PathIdentity": "type",
873
+ "PathIdentityReading": "type",
839
874
  "PathRuleBase": "type",
840
875
  "PathRuleBases": "type",
876
+ "PathTargetReading": "type",
841
877
  "PausedCause": "type",
842
878
  "PeerAdmission": "interface",
843
879
  "PeerAdmissionConfig": "interface",
@@ -935,7 +971,6 @@
935
971
  "ProbeCause": "interface",
936
972
  "ProbeCauseOperands": "interface",
937
973
  "ProcessFingerprint": "interface",
938
- "ProgramRunReach": "type",
939
974
  "ProgramRunReachOutcome": "type",
940
975
  "ProjectMemoryLoad": "interface",
941
976
  "PromotedRecord": "interface",
@@ -1196,8 +1231,6 @@
1196
1231
  "SchedulerError": "class",
1197
1232
  "SchedulerErrorCode": "type",
1198
1233
  "SchedulerToolContext": "interface",
1199
- "ScopedNoteHeader": "interface",
1200
- "ScopedNoteRecord": "interface",
1201
1234
  "ScoredMemory": "interface",
1202
1235
  "ScoredMemoryEntry": "interface",
1203
1236
  "SeamProvenance": "type",
@@ -1315,7 +1348,6 @@
1315
1348
  "TEACHER_PROFILE": "variable",
1316
1349
  "TEACHER_PROMPT": "variable",
1317
1350
  "TEAMMATE_COMMUNICATION_ADDENDUM": "variable",
1318
- "TEAMMATE_TASK_LIST_ADDENDUM": "variable",
1319
1351
  "TEAM_DISCUSSION_SCRIPT": "variable",
1320
1352
  "TEAM_DISCUSSION_WORKFLOW_NAME": "variable",
1321
1353
  "TOKEN_CHECKPOINT_VERSION": "variable",
@@ -1462,6 +1494,7 @@
1462
1494
  "WEBFETCH_SUMMARY_GUIDELINES": "variable",
1463
1495
  "WEBFETCH_SUMMARY_MAX_CONTENT": "variable",
1464
1496
  "WEB_FETCH_TOOL_NAME": "variable",
1497
+ "WIN32_NAMESPACE_REFUSALS": "variable",
1465
1498
  "WORKFLOW_AGENT_MAX_RETRIES": "variable",
1466
1499
  "WORKFLOW_AGENT_PARKED_ERROR_CODE": "variable",
1467
1500
  "WORKFLOW_AGENT_STALL_MS": "variable",
@@ -1475,6 +1508,7 @@
1475
1508
  "WRITE_PROTECTED_DEFAULT_TABLE": "variable",
1476
1509
  "WebFetchConfig": "interface",
1477
1510
  "WebSearchConfig": "interface",
1511
+ "Win32NamespaceRefusal": "type",
1478
1512
  "WiringFacts": "interface",
1479
1513
  "WiringLegKind": "type",
1480
1514
  "WiringManifest": "interface",
@@ -1553,8 +1587,10 @@
1553
1587
  "appendPendingSteer": "function",
1554
1588
  "applyFileRestoreViaEnv": "function",
1555
1589
  "applyMcpToolFaces": "function",
1590
+ "applyParentSpecSeat": "function",
1556
1591
  "applyTombstones": "function",
1557
1592
  "archiveDistillerPlan": "function",
1593
+ "artifactAttemptId": "function",
1558
1594
  "artifactDeclarations": "function",
1559
1595
  "askUnresolvableNotice": "function",
1560
1596
  "assembleCodeTools": "function",
@@ -1676,6 +1712,7 @@
1676
1712
  "createAllowDenyPolicy": "function",
1677
1713
  "createAnthropicBrain": "function",
1678
1714
  "createApprovalPolicy": "function",
1715
+ "createArtifactTool": "function",
1679
1716
  "createAskUserQuestionTool": "function",
1680
1717
  "createAssistantMessageEventStream": "function",
1681
1718
  "createAutoModeDecider": "function",
@@ -1766,12 +1803,10 @@
1766
1803
  "describeConfigCatalog": "function",
1767
1804
  "describeCrossSessionHoldCause": "function",
1768
1805
  "describeDefaultPack": "function",
1769
- "describePeerDeliveryReceipt": "function",
1770
1806
  "describePeerDropReasons": "function",
1771
1807
  "describePeerIdleSubscription": "function",
1772
1808
  "describeStaticWiring": "function",
1773
1809
  "describeToolCatalog": "function",
1774
- "describeToolConformanceVectors": "function",
1775
1810
  "detectCleanArmVerbatimLeak": "function",
1776
1811
  "detectSecret": "function",
1777
1812
  "devWorkflowScriptRunner": "variable",
@@ -1815,9 +1850,7 @@
1815
1850
  "fileHistoryBoundariesToKeep": "function",
1816
1851
  "fileHistoryDescribeTrackKey": "function",
1817
1852
  "fileHistoryExportDigest": "function",
1818
- "fileHistoryKeyFamilyOf": "function",
1819
1853
  "fileHistoryModeProvenDifferent": "function",
1820
- "fileHistoryPreviewFileDelta": "function",
1821
1854
  "fileHistoryResolveTrackKey": "function",
1822
1855
  "fileHistoryStoreContract": "function",
1823
1856
  "fileHistoryTrackKeyOf": "function",
@@ -1869,6 +1902,7 @@
1869
1902
  "inlineUntrusted": "function",
1870
1903
  "inputKeysOf": "function",
1871
1904
  "inspectDegenerate": "function",
1905
+ "isAbsoluteForFamily": "function",
1872
1906
  "isAliasModelId": "function",
1873
1907
  "isAskOrigin": "function",
1874
1908
  "isAutoModeDenySource": "function",
@@ -1879,7 +1913,6 @@
1879
1913
  "isDeclaredWrite": "function",
1880
1914
  "isDelegatedAgentTerminal": "function",
1881
1915
  "isDeniedBy": "function",
1882
- "isExecutionOutcomeRecordWord": "function",
1883
1916
  "isFullyReadable": "function",
1884
1917
  "isGateKind": "function",
1885
1918
  "isInstructionEntry": "function",
@@ -1934,6 +1967,7 @@
1934
1967
  "listWorkflowRuns": "function",
1935
1968
  "llmPlanDistiller": "function",
1936
1969
  "loadOrchestrationEnv": "function",
1970
+ "localArtifactStub": "function",
1937
1971
  "looksDegenerate": "function",
1938
1972
  "lookupProjectIdHint": "function",
1939
1973
  "loosenReasons": "function",
@@ -1952,6 +1986,7 @@
1952
1986
  "materializeMcpTools": "function",
1953
1987
  "maybeCompact": "function",
1954
1988
  "mcpInjectionDroppedNotice": "function",
1989
+ "mediaTypeOf": "function",
1955
1990
  "memoryBackendContract": "function",
1956
1991
  "memoryCaptureOptOutUnpersistedNotice": "function",
1957
1992
  "memoryCaptureOptedOutNotice": "function",
@@ -1988,6 +2023,7 @@
1988
2023
  "normalizePeerName": "function",
1989
2024
  "normalizePersistedRuleHit": "function",
1990
2025
  "normalizePromptEpoch": "function",
2026
+ "normalizePublishedPath": "function",
1991
2027
  "normalizeRules": "function",
1992
2028
  "normalizeToolResultProvenance": "function",
1993
2029
  "noticeAudienceOf": "function",
@@ -1998,6 +2034,7 @@
1998
2034
  "orgRuleVerdictFor": "function",
1999
2035
  "originEquals": "function",
2000
2036
  "oversizeJournalResult": "function",
2037
+ "parentSpecSeatOf": "function",
2001
2038
  "parkedToolIdentity": "function",
2002
2039
  "parseAutoModeResponse": "function",
2003
2040
  "parseCrossSessionEnvelope": "function",
@@ -2017,6 +2054,8 @@
2017
2054
  "parseTeacherAdvice": "function",
2018
2055
  "parseWorkflowMeta": "function",
2019
2056
  "pathConfinableWriteToolNames": "function",
2057
+ "pathFamilyOf": "function",
2058
+ "pathIdentityOf": "function",
2020
2059
  "pathRuleReachOf": "function",
2021
2060
  "pathTargetBaseOf": "function",
2022
2061
  "pathTargetOf": "function",
@@ -2029,16 +2068,13 @@
2029
2068
  "peekMemoryAnnouncements": "function",
2030
2069
  "peerAdmissionFor": "function",
2031
2070
  "peerAxisToken": "function",
2032
- "peerDeliveryReceiptLabel": "function",
2033
2071
  "peerHeldQueueFor": "function",
2034
2072
  "peerHeldQueueIfAny": "function",
2035
2073
  "peerHeldQueueKey": "function",
2036
- "peerIdleDetailOf": "function",
2037
2074
  "peerIdleMachineFor": "function",
2038
2075
  "peerIdleMachineIfAny": "function",
2039
2076
  "peerIdleMachineKey": "function",
2040
2077
  "peerIdleNoticeLabel": "function",
2041
- "peerIdleNoticeSummary": "function",
2042
2078
  "peerRecipientSuffix": "function",
2043
2079
  "peerSendVerdictSeverity": "function",
2044
2080
  "peerSessionBoxHandle": "function",
@@ -2064,6 +2100,7 @@
2064
2100
  "queryBackgroundAgents": "function",
2065
2101
  "rankOf": "function",
2066
2102
  "readAdoptionStatus": "function",
2103
+ "readArtifactHostCapabilities": "function",
2067
2104
  "readCcSidecarMessages": "function",
2068
2105
  "readCcSidecarTranscript": "function",
2069
2106
  "readConsolidationDriverRun": "function",
@@ -2283,6 +2320,7 @@
2283
2320
  "warmResume": "function",
2284
2321
  "webFetchToolSpec": "function",
2285
2322
  "wildcardMatch": "function",
2323
+ "win32NamespaceScreen": "function",
2286
2324
  "winnerFromOutcome": "function",
2287
2325
  "withCcLock": "function",
2288
2326
  "withRetry": "function",
@@ -2319,7 +2357,17 @@
2319
2357
  "ANNOUNCEMENTS_FILE": "advanced",
2320
2358
  "APPROVAL_CARD_REQUIRED_KEYS": "internal",
2321
2359
  "APPROVER_ATTRIBUTION_MAX_CHARS": "advanced",
2360
+ "ARTIFACT_ACTIONS": "advanced",
2361
+ "ARTIFACT_ACTION_HOST_METHOD": "advanced",
2362
+ "ARTIFACT_CARD": "advanced",
2363
+ "ARTIFACT_FAILURE_RESULT_CODE": "advanced",
2364
+ "ARTIFACT_HOST_ERROR_CODE": "advanced",
2365
+ "ARTIFACT_HOST_FAILURE_CODES": "advanced",
2322
2366
  "ARTIFACT_LIMITS": "advanced",
2367
+ "ARTIFACT_LIST_SCOPES": "advanced",
2368
+ "ARTIFACT_PLANES": "advanced",
2369
+ "ARTIFACT_PLANE_CONTENT_ORIGIN": "advanced",
2370
+ "ARTIFACT_PUBLISH_CONTEXTS": "advanced",
2323
2371
  "ASK_EVIDENCE_ABSENCE_VALUES": "advanced",
2324
2372
  "ASK_ORIGINS": "advanced",
2325
2373
  "ASK_USER_QUESTION_TOOL_NAME": "advanced",
@@ -2363,6 +2411,28 @@
2363
2411
  "AggregateBudgetOptions": "advanced",
2364
2412
  "AnthropicBrainConfig": "advanced",
2365
2413
  "AppendLog": "advanced",
2414
+ "ArtifactAction": "advanced",
2415
+ "ArtifactCallContext": "advanced",
2416
+ "ArtifactConflictSnapshot": "advanced",
2417
+ "ArtifactFileContent": "advanced",
2418
+ "ArtifactFileOutcome": "advanced",
2419
+ "ArtifactFilesOutcome": "advanced",
2420
+ "ArtifactHost": "advanced",
2421
+ "ArtifactHostCapabilities": "advanced",
2422
+ "ArtifactHostCapabilitiesVerdict": "advanced",
2423
+ "ArtifactHostFailureCode": "advanced",
2424
+ "ArtifactListOutcome": "advanced",
2425
+ "ArtifactListRow": "advanced",
2426
+ "ArtifactListScope": "advanced",
2427
+ "ArtifactLocalRead": "advanced",
2428
+ "ArtifactPlane": "advanced",
2429
+ "ArtifactPublishContext": "advanced",
2430
+ "ArtifactPublishOutcome": "advanced",
2431
+ "ArtifactPublishRequest": "advanced",
2432
+ "ArtifactReadOutcome": "advanced",
2433
+ "ArtifactRef": "advanced",
2434
+ "ArtifactResultCode": "advanced",
2435
+ "ArtifactToolOptions": "advanced",
2366
2436
  "ArtifactVerifyResult": "advanced",
2367
2437
  "AskAnswerContinuationSource": "advanced",
2368
2438
  "AskCarry": "advanced",
@@ -2529,7 +2599,6 @@
2529
2599
  "CompactOutcome": "advanced",
2530
2600
  "CompactionWindowSafetyInfo": "advanced",
2531
2601
  "CompiledEventPrompt": "advanced",
2532
- "CompiledMessageInjection": "advanced",
2533
2602
  "CompiledSection": "advanced",
2534
2603
  "CompleteSimpleFn": "advanced",
2535
2604
  "ComplianceCapability": "advanced",
@@ -2593,7 +2662,6 @@
2593
2662
  "DEFAULT_CONSOLIDATION_BAND": "internal",
2594
2663
  "DEFAULT_CONSOLIDATION_MAX_NOTES": "internal",
2595
2664
  "DEFAULT_CONSOLIDATION_SEARCH_LIMIT": "internal",
2596
- "DEFAULT_CONSOLIDATION_TIMEOUT_SEC": "internal",
2597
2665
  "DEFAULT_EFFORT_LEVELS": "advanced",
2598
2666
  "DEFAULT_FILE_HISTORY_BOUNDARY_KEEP": "advanced",
2599
2667
  "DEFAULT_HARVEST_DEADLINE_MS": "advanced",
@@ -2645,6 +2713,7 @@
2645
2713
  "ENGINE_NOTICE_CODES": "advanced",
2646
2714
  "ENTER_PLAN_MODE_TOOL_NAME": "advanced",
2647
2715
  "ENV_LIFETIME_SUSPEND_MARGIN_MS": "internal",
2716
+ "EVAL_STUB_URL_PREFIX": "advanced",
2648
2717
  "EVENT_PROMPT_REGISTRY": "advanced",
2649
2718
  "EXECUTION_ENVIRONMENT": "advanced",
2650
2719
  "EXECUTION_ENVIRONMENT_OPEN_READS": "advanced",
@@ -2687,7 +2756,6 @@
2687
2756
  "ExecutionOutcomeConflictError": "stable",
2688
2757
  "ExecutionOutcomeRecordWord": "stable",
2689
2758
  "ExecutionRecordRowFacts": "advanced",
2690
- "ExecutionRecordTableCoversEveryWord": "advanced",
2691
2759
  "ExecutionVerdict": "advanced",
2692
2760
  "ExplainInput": "advanced",
2693
2761
  "ExposedMemoryIndexRow": "advanced",
@@ -2821,7 +2889,6 @@
2821
2889
  "InvariantViolation": "advanced",
2822
2890
  "JOURNAL_OVERSIZE_ERROR_CODE": "advanced",
2823
2891
  "KillProcessTreeOptions": "internal",
2824
- "LEGACY_PENDING_STEER_INPUT_ID": "advanced",
2825
2892
  "LINEAGE_FILE": "advanced",
2826
2893
  "LIST_AGENTS_MAX_RESULT_CHARS": "advanced",
2827
2894
  "LIST_AGENTS_TOOL_ALIAS": "advanced",
@@ -2831,6 +2898,8 @@
2831
2898
  "LLM_DISTILLER_CONTRACT_DL2": "advanced",
2832
2899
  "LLM_DISTILLER_CONTRACT_DL3": "advanced",
2833
2900
  "LOCAL_OWNER_UNSYNCABLE_CODE": "advanced",
2901
+ "LOCAL_STUB_MAX_FILE_BYTES": "advanced",
2902
+ "LOCAL_STUB_MAX_TOTAL_BYTES": "advanced",
2834
2903
  "LOCKED_KEY_REGISTRY": "advanced",
2835
2904
  "LOWERING_VERSION": "advanced",
2836
2905
  "LSP_FAILURE_BRAND": "advanced",
@@ -2845,6 +2914,8 @@
2845
2914
  "LlmConsolidationPlanArm": "advanced",
2846
2915
  "LlmConsolidationPlanProduct": "advanced",
2847
2916
  "LlmDistillerContract": "advanced",
2917
+ "LocalArtifactStub": "advanced",
2918
+ "LocalArtifactStubOptions": "advanced",
2848
2919
  "LockedConfig": "advanced",
2849
2920
  "LockedKey": "advanced",
2850
2921
  "LoweringRecord": "advanced",
@@ -3042,8 +3113,6 @@
3042
3113
  "ORG_STATE_FILE": "advanced",
3043
3114
  "ORG_UNAVAILABLE_DECISION_REASON": "advanced",
3044
3115
  "ORIGIN_IMPLIES_REAL_APPROVAL": "advanced",
3045
- "ORPHAN_ADOPT_MAX_DEFAULT": "advanced",
3046
- "ORPHAN_ADOPT_WINDOW_MS_DEFAULT": "advanced",
3047
3116
  "OUTPUT_EFFICIENCY": "advanced",
3048
3117
  "OffCapabilityModel": "advanced",
3049
3118
  "OnAsk": "advanced",
@@ -3089,7 +3158,6 @@
3089
3158
  "PEER_HELD_REVIEW_CAUSES": "advanced",
3090
3159
  "PEER_HOP_CHAIN_CARRY_WINDOW": "advanced",
3091
3160
  "PEER_HOP_CHAIN_WINDOW": "advanced",
3092
- "PEER_HOP_TOKEN_HEX": "advanced",
3093
3161
  "PEER_IDLE_FIRE_DEBOUNCE_MS": "advanced",
3094
3162
  "PEER_IDLE_HELD_BACKOFF_MS": "advanced",
3095
3163
  "PEER_IDLE_LABEL_MAX": "advanced",
@@ -3123,6 +3191,8 @@
3123
3191
  "PROJECT_MARKER_PATH": "advanced",
3124
3192
  "PROTOCOL_TABLE": "advanced",
3125
3193
  "PackSectionDeclaration": "advanced",
3194
+ "ParentSpecSeat": "advanced",
3195
+ "ParentSpecSeatFields": "advanced",
3126
3196
  "ParkLaneReason": "advanced",
3127
3197
  "ParkProbeFinding": "advanced",
3128
3198
  "ParkProbeFindingCode": "advanced",
@@ -3133,8 +3203,12 @@
3133
3203
  "ParsedRule": "advanced",
3134
3204
  "ParsedScopeKey": "advanced",
3135
3205
  "PatchReport": "stable",
3206
+ "PathFamily": "advanced",
3207
+ "PathIdentity": "advanced",
3208
+ "PathIdentityReading": "advanced",
3136
3209
  "PathRuleBase": "advanced",
3137
3210
  "PathRuleBases": "advanced",
3211
+ "PathTargetReading": "advanced",
3138
3212
  "PausedCause": "advanced",
3139
3213
  "PeerAdmission": "advanced",
3140
3214
  "PeerAdmissionConfig": "advanced",
@@ -3232,7 +3306,6 @@
3232
3306
  "ProbeCause": "advanced",
3233
3307
  "ProbeCauseOperands": "advanced",
3234
3308
  "ProcessFingerprint": "advanced",
3235
- "ProgramRunReach": "advanced",
3236
3309
  "ProgramRunReachOutcome": "advanced",
3237
3310
  "ProjectMemoryLoad": "advanced",
3238
3311
  "PromotedRecord": "advanced",
@@ -3493,8 +3566,6 @@
3493
3566
  "SchedulerError": "advanced",
3494
3567
  "SchedulerErrorCode": "advanced",
3495
3568
  "SchedulerToolContext": "advanced",
3496
- "ScopedNoteHeader": "advanced",
3497
- "ScopedNoteRecord": "advanced",
3498
3569
  "ScoredMemory": "stable",
3499
3570
  "ScoredMemoryEntry": "stable",
3500
3571
  "SeamProvenance": "advanced",
@@ -3612,7 +3683,6 @@
3612
3683
  "TEACHER_PROFILE": "advanced",
3613
3684
  "TEACHER_PROMPT": "advanced",
3614
3685
  "TEAMMATE_COMMUNICATION_ADDENDUM": "advanced",
3615
- "TEAMMATE_TASK_LIST_ADDENDUM": "advanced",
3616
3686
  "TEAM_DISCUSSION_SCRIPT": "advanced",
3617
3687
  "TEAM_DISCUSSION_WORKFLOW_NAME": "advanced",
3618
3688
  "TOKEN_CHECKPOINT_VERSION": "advanced",
@@ -3759,6 +3829,7 @@
3759
3829
  "WEBFETCH_SUMMARY_GUIDELINES": "advanced",
3760
3830
  "WEBFETCH_SUMMARY_MAX_CONTENT": "advanced",
3761
3831
  "WEB_FETCH_TOOL_NAME": "advanced",
3832
+ "WIN32_NAMESPACE_REFUSALS": "advanced",
3762
3833
  "WORKFLOW_AGENT_MAX_RETRIES": "advanced",
3763
3834
  "WORKFLOW_AGENT_PARKED_ERROR_CODE": "advanced",
3764
3835
  "WORKFLOW_AGENT_STALL_MS": "advanced",
@@ -3772,6 +3843,7 @@
3772
3843
  "WRITE_PROTECTED_DEFAULT_TABLE": "advanced",
3773
3844
  "WebFetchConfig": "advanced",
3774
3845
  "WebSearchConfig": "advanced",
3846
+ "Win32NamespaceRefusal": "advanced",
3775
3847
  "WiringFacts": "advanced",
3776
3848
  "WiringLegKind": "advanced",
3777
3849
  "WiringManifest": "stable",
@@ -3850,8 +3922,10 @@
3850
3922
  "appendPendingSteer": "stable",
3851
3923
  "applyFileRestoreViaEnv": "advanced",
3852
3924
  "applyMcpToolFaces": "internal",
3925
+ "applyParentSpecSeat": "advanced",
3853
3926
  "applyTombstones": "advanced",
3854
3927
  "archiveDistillerPlan": "advanced",
3928
+ "artifactAttemptId": "advanced",
3855
3929
  "artifactDeclarations": "advanced",
3856
3930
  "askUnresolvableNotice": "advanced",
3857
3931
  "assembleCodeTools": "advanced",
@@ -3973,6 +4047,7 @@
3973
4047
  "createAllowDenyPolicy": "advanced",
3974
4048
  "createAnthropicBrain": "stable",
3975
4049
  "createApprovalPolicy": "stable",
4050
+ "createArtifactTool": "advanced",
3976
4051
  "createAskUserQuestionTool": "advanced",
3977
4052
  "createAssistantMessageEventStream": "stable",
3978
4053
  "createAutoModeDecider": "advanced",
@@ -4063,12 +4138,10 @@
4063
4138
  "describeConfigCatalog": "advanced",
4064
4139
  "describeCrossSessionHoldCause": "advanced",
4065
4140
  "describeDefaultPack": "advanced",
4066
- "describePeerDeliveryReceipt": "advanced",
4067
4141
  "describePeerDropReasons": "advanced",
4068
4142
  "describePeerIdleSubscription": "advanced",
4069
4143
  "describeStaticWiring": "stable",
4070
4144
  "describeToolCatalog": "advanced",
4071
- "describeToolConformanceVectors": "advanced",
4072
4145
  "detectCleanArmVerbatimLeak": "advanced",
4073
4146
  "detectSecret": "advanced",
4074
4147
  "devWorkflowScriptRunner": "stable",
@@ -4112,9 +4185,7 @@
4112
4185
  "fileHistoryBoundariesToKeep": "advanced",
4113
4186
  "fileHistoryDescribeTrackKey": "advanced",
4114
4187
  "fileHistoryExportDigest": "advanced",
4115
- "fileHistoryKeyFamilyOf": "advanced",
4116
4188
  "fileHistoryModeProvenDifferent": "advanced",
4117
- "fileHistoryPreviewFileDelta": "advanced",
4118
4189
  "fileHistoryResolveTrackKey": "advanced",
4119
4190
  "fileHistoryStoreContract": "advanced",
4120
4191
  "fileHistoryTrackKeyOf": "advanced",
@@ -4166,6 +4237,7 @@
4166
4237
  "inlineUntrusted": "advanced",
4167
4238
  "inputKeysOf": "advanced",
4168
4239
  "inspectDegenerate": "advanced",
4240
+ "isAbsoluteForFamily": "advanced",
4169
4241
  "isAliasModelId": "advanced",
4170
4242
  "isAskOrigin": "advanced",
4171
4243
  "isAutoModeDenySource": "advanced",
@@ -4176,7 +4248,6 @@
4176
4248
  "isDeclaredWrite": "advanced",
4177
4249
  "isDelegatedAgentTerminal": "advanced",
4178
4250
  "isDeniedBy": "advanced",
4179
- "isExecutionOutcomeRecordWord": "advanced",
4180
4251
  "isFullyReadable": "advanced",
4181
4252
  "isGateKind": "advanced",
4182
4253
  "isInstructionEntry": "advanced",
@@ -4231,6 +4302,7 @@
4231
4302
  "listWorkflowRuns": "advanced",
4232
4303
  "llmPlanDistiller": "advanced",
4233
4304
  "loadOrchestrationEnv": "advanced",
4305
+ "localArtifactStub": "advanced",
4234
4306
  "looksDegenerate": "advanced",
4235
4307
  "lookupProjectIdHint": "advanced",
4236
4308
  "loosenReasons": "advanced",
@@ -4249,6 +4321,7 @@
4249
4321
  "materializeMcpTools": "stable",
4250
4322
  "maybeCompact": "advanced",
4251
4323
  "mcpInjectionDroppedNotice": "advanced",
4324
+ "mediaTypeOf": "advanced",
4252
4325
  "memoryBackendContract": "stable",
4253
4326
  "memoryCaptureOptOutUnpersistedNotice": "advanced",
4254
4327
  "memoryCaptureOptedOutNotice": "advanced",
@@ -4285,6 +4358,7 @@
4285
4358
  "normalizePeerName": "advanced",
4286
4359
  "normalizePersistedRuleHit": "advanced",
4287
4360
  "normalizePromptEpoch": "advanced",
4361
+ "normalizePublishedPath": "advanced",
4288
4362
  "normalizeRules": "advanced",
4289
4363
  "normalizeToolResultProvenance": "advanced",
4290
4364
  "noticeAudienceOf": "advanced",
@@ -4295,6 +4369,7 @@
4295
4369
  "orgRuleVerdictFor": "advanced",
4296
4370
  "originEquals": "stable",
4297
4371
  "oversizeJournalResult": "advanced",
4372
+ "parentSpecSeatOf": "advanced",
4298
4373
  "parkedToolIdentity": "advanced",
4299
4374
  "parseAutoModeResponse": "advanced",
4300
4375
  "parseCrossSessionEnvelope": "advanced",
@@ -4314,6 +4389,8 @@
4314
4389
  "parseTeacherAdvice": "advanced",
4315
4390
  "parseWorkflowMeta": "advanced",
4316
4391
  "pathConfinableWriteToolNames": "advanced",
4392
+ "pathFamilyOf": "advanced",
4393
+ "pathIdentityOf": "advanced",
4317
4394
  "pathRuleReachOf": "advanced",
4318
4395
  "pathTargetBaseOf": "advanced",
4319
4396
  "pathTargetOf": "advanced",
@@ -4326,16 +4403,13 @@
4326
4403
  "peekMemoryAnnouncements": "advanced",
4327
4404
  "peerAdmissionFor": "advanced",
4328
4405
  "peerAxisToken": "advanced",
4329
- "peerDeliveryReceiptLabel": "advanced",
4330
4406
  "peerHeldQueueFor": "advanced",
4331
4407
  "peerHeldQueueIfAny": "advanced",
4332
4408
  "peerHeldQueueKey": "advanced",
4333
- "peerIdleDetailOf": "advanced",
4334
4409
  "peerIdleMachineFor": "advanced",
4335
4410
  "peerIdleMachineIfAny": "advanced",
4336
4411
  "peerIdleMachineKey": "advanced",
4337
4412
  "peerIdleNoticeLabel": "advanced",
4338
- "peerIdleNoticeSummary": "advanced",
4339
4413
  "peerRecipientSuffix": "advanced",
4340
4414
  "peerSendVerdictSeverity": "advanced",
4341
4415
  "peerSessionBoxHandle": "advanced",
@@ -4361,6 +4435,7 @@
4361
4435
  "queryBackgroundAgents": "advanced",
4362
4436
  "rankOf": "advanced",
4363
4437
  "readAdoptionStatus": "advanced",
4438
+ "readArtifactHostCapabilities": "advanced",
4364
4439
  "readCcSidecarMessages": "advanced",
4365
4440
  "readCcSidecarTranscript": "advanced",
4366
4441
  "readConsolidationDriverRun": "advanced",
@@ -4580,6 +4655,7 @@
4580
4655
  "warmResume": "advanced",
4581
4656
  "webFetchToolSpec": "advanced",
4582
4657
  "wildcardMatch": "advanced",
4658
+ "win32NamespaceScreen": "advanced",
4583
4659
  "winnerFromOutcome": "stable",
4584
4660
  "withCcLock": "advanced",
4585
4661
  "withRetry": "advanced",