@sema-agent/core 5.64.0 → 6.0.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 (165) hide show
  1. package/CHANGELOG.md +70 -0
  2. package/dist/agents/subagent.d.ts +2 -2
  3. package/dist/agents/subagent.js +11 -0
  4. package/dist/agents/verify.d.ts +1 -1
  5. package/dist/brain/anthropic.js +1 -1
  6. package/dist/brain/errors.d.ts +29 -0
  7. package/dist/brain/errors.js +20 -0
  8. package/dist/brain/open-responses.js +2 -2
  9. package/dist/brain/route-adjudicator.d.ts +8 -1
  10. package/dist/brain/route-adjudicator.js +1 -0
  11. package/dist/brain/status-sink.js +12 -1
  12. package/dist/brain/stream-engine.js +17 -6
  13. package/dist/core/auto-compaction.d.ts +26 -0
  14. package/dist/core/auto-compaction.js +7 -2
  15. package/dist/core/auto-mode-arming.d.ts +138 -0
  16. package/dist/core/auto-mode-arming.js +181 -0
  17. package/dist/core/auto-mode-defaults.d.ts +13 -0
  18. package/dist/core/auto-mode-defaults.js +5 -0
  19. package/dist/core/auto-mode-prompt.d.ts +14 -3
  20. package/dist/core/auto-mode-prompt.js +10 -7
  21. package/dist/core/auto-mode-rebuild.d.ts +75 -0
  22. package/dist/core/auto-mode-rebuild.js +41 -0
  23. package/dist/core/auto-mode.d.ts +15 -0
  24. package/dist/core/auto-mode.js +4 -2
  25. package/dist/core/checkpoint-store.d.ts +113 -4
  26. package/dist/core/context-edit.d.ts +47 -5
  27. package/dist/core/context-guard.d.ts +1 -1
  28. package/dist/core/file-history-retention.d.ts +106 -0
  29. package/dist/core/file-history-retention.js +36 -0
  30. package/dist/core/file-history-store.d.ts +768 -0
  31. package/dist/core/file-history-store.js +880 -0
  32. package/dist/core/governance-codes.d.ts +2 -1
  33. package/dist/core/governance-codes.js +14 -0
  34. package/dist/core/hooks.d.ts +48 -8
  35. package/dist/core/hooks.js +39 -22
  36. package/dist/core/lsp.d.ts +2 -2
  37. package/dist/core/mcp.d.ts +29 -7
  38. package/dist/core/memory-engine/consolidation-driver.d.ts +11 -0
  39. package/dist/core/memory-engine/consolidation-driver.js +71 -4
  40. package/dist/core/memory-engine/consolidation.d.ts +25 -2
  41. package/dist/core/memory-engine/consolidation.js +4 -1
  42. package/dist/core/memory-engine/distiller.d.ts +84 -1
  43. package/dist/core/memory-engine/distiller.js +68 -0
  44. package/dist/core/memory-engine/dual-root.js +6 -0
  45. package/dist/core/memory-engine/engine.d.ts +329 -15
  46. package/dist/core/memory-engine/engine.js +364 -34
  47. package/dist/core/memory-engine/file-backend.d.ts +30 -0
  48. package/dist/core/memory-engine/file-backend.js +14 -13
  49. package/dist/core/memory-engine/frontmatter.d.ts +22 -1
  50. package/dist/core/memory-engine/frontmatter.js +3 -0
  51. package/dist/core/memory-engine/header-hints.d.ts +5 -0
  52. package/dist/core/memory-engine/index.d.ts +5 -4
  53. package/dist/core/memory-engine/index.js +5 -4
  54. package/dist/core/memory-engine/layout.d.ts +88 -2
  55. package/dist/core/memory-engine/layout.js +112 -3
  56. package/dist/core/memory-engine/provenance-wording.d.ts +7 -0
  57. package/dist/core/memory-engine/provenance-wording.js +3 -0
  58. package/dist/core/memory-engine/tools.d.ts +89 -8
  59. package/dist/core/memory-engine/tools.js +263 -22
  60. package/dist/core/memory-engine/types.d.ts +80 -1
  61. package/dist/core/memory-recall.d.ts +6 -0
  62. package/dist/core/memory.d.ts +27 -1
  63. package/dist/core/memory.js +16 -2
  64. package/dist/core/permission-rule-consent.d.ts +20 -0
  65. package/dist/core/permission-rule-consent.js +12 -3
  66. package/dist/core/permission-rule-model.d.ts +67 -7
  67. package/dist/core/permission-rule-model.js +53 -7
  68. package/dist/core/permission-rule-store.js +15 -10
  69. package/dist/core/permission-rule-sync.js +15 -11
  70. package/dist/core/remote-env.d.ts +3 -3
  71. package/dist/core/retention-policy.d.ts +9 -0
  72. package/dist/core/retention-policy.js +5 -2
  73. package/dist/core/retention.d.ts +13 -2
  74. package/dist/core/runner/assemble-result.d.ts +19 -1
  75. package/dist/core/runner/assemble-result.js +17 -2
  76. package/dist/core/runner/compaction-call-options.d.ts +93 -0
  77. package/dist/core/runner/compaction-call-options.js +3 -0
  78. package/dist/core/runner/memory-capture-optout.d.ts +80 -0
  79. package/dist/core/runner/memory-capture-optout.js +53 -0
  80. package/dist/core/runner/prepare-config-doors.d.ts +5 -0
  81. package/dist/core/runner/prepare-config-doors.js +16 -0
  82. package/dist/core/runner/prepare-hands-readface.d.ts +119 -5
  83. package/dist/core/runner/prepare-hands-readface.js +103 -8
  84. package/dist/core/runner/prepare-memory.d.ts +88 -0
  85. package/dist/core/runner/prepare-memory.js +306 -25
  86. package/dist/core/runner/prepare-task.d.ts +156 -5
  87. package/dist/core/runner/prepare-task.js +488 -98
  88. package/dist/core/runner/runtask.d.ts +27 -20
  89. package/dist/core/runner/runtask.js +283 -99
  90. package/dist/core/runner/session-file-state-replay.d.ts +18 -10
  91. package/dist/core/runner/session-file-state-replay.js +52 -1
  92. package/dist/core/runner/tool-disclosure.js +2 -1
  93. package/dist/core/runner/turn-attachments.d.ts +22 -12
  94. package/dist/core/session-store.d.ts +1 -1
  95. package/dist/core/session-store.js +6 -1
  96. package/dist/core/session.d.ts +34 -1
  97. package/dist/core/store-contracts/file-history-store-contract.d.ts +3 -0
  98. package/dist/core/store-contracts/file-history-store-contract.js +720 -0
  99. package/dist/core/stub-env.d.ts +4 -0
  100. package/dist/core/stub-env.js +1 -0
  101. package/dist/core/task-registry-shared.js +30 -2
  102. package/dist/core/tool-errors.js +1 -0
  103. package/dist/core/tool-policy.d.ts +172 -1
  104. package/dist/core/tool-policy.js +32 -1
  105. package/dist/core/tool-result-store.js +2 -1
  106. package/dist/core/trace.d.ts +24 -0
  107. package/dist/core/types.d.ts +875 -97
  108. package/dist/core/types.js +4 -3
  109. package/dist/core/untrusted-text.d.ts +1 -1
  110. package/dist/core/untrusted-text.js +8 -0
  111. package/dist/core/workflow-run-store-contract.js +17 -0
  112. package/dist/core/workflow-run-store.d.ts +20 -0
  113. package/dist/core/workflow-run-store.js +1 -0
  114. package/dist/engine/compaction/compaction.d.ts +88 -10
  115. package/dist/engine/compaction/compaction.js +109 -30
  116. package/dist/engine/execution-env/node-execution-env.d.ts +9 -1
  117. package/dist/engine/execution-env/node-execution-env.js +28 -0
  118. package/dist/engine/harness/agent-harness.d.ts +52 -1
  119. package/dist/engine/harness/agent-harness.js +36 -1
  120. package/dist/engine/harness/types.d.ts +44 -1
  121. package/dist/engine/llm/types.d.ts +50 -4
  122. package/dist/engine/loop/agent-loop.d.ts +5 -1
  123. package/dist/engine/loop/agent-loop.js +25 -0
  124. package/dist/engine/loop/types.d.ts +19 -0
  125. package/dist/engine/lsp/node-lsp-manager.d.ts +1 -1
  126. package/dist/engine/session/session.js +1 -1
  127. package/dist/index.d.ts +18 -8
  128. package/dist/index.js +14 -6
  129. package/dist/orchestration/run-workflow-tool.d.ts +20 -2
  130. package/dist/orchestration/run-workflow-tool.js +22 -3
  131. package/dist/orchestration/workflow-governance.d.ts +59 -1
  132. package/dist/orchestration/workflow-governance.js +61 -8
  133. package/dist/orchestration/workflow-meta.d.ts +4 -2
  134. package/dist/orchestration/workflow-primitives.js +56 -13
  135. package/dist/orchestration/workflow-types.d.ts +112 -1
  136. package/dist/orchestration/workflow-types.js +2 -2
  137. package/dist/orchestration/workflow.d.ts +20 -0
  138. package/dist/orchestration/workflow.js +182 -14
  139. package/dist/prompt-assembly/event-registry.js +1 -1
  140. package/dist/prompts/default.d.ts +15 -7
  141. package/dist/prompts/default.js +3 -0
  142. package/dist/stores/file/file-history-store.d.ts +368 -0
  143. package/dist/stores/file/file-history-store.js +1248 -0
  144. package/dist/stores/file/index.d.ts +22 -13
  145. package/dist/stores/file/index.js +4 -4
  146. package/dist/stores/file/permission-rule-store.js +1 -0
  147. package/dist/stores/file/strategy-store.d.ts +3 -3
  148. package/dist/tools/fs/bash-readonly-classifier.d.ts +87 -3
  149. package/dist/tools/fs/bash-readonly-classifier.js +106 -4
  150. package/dist/tools/fs/fs-bash.js +9 -5
  151. package/dist/tools/fs/fs-shared.d.ts +52 -1
  152. package/dist/tools/fs/fs-shared.js +14 -0
  153. package/dist/tools/fs/fs-write.d.ts +5 -5
  154. package/dist/tools/fs/fs-write.js +71 -14
  155. package/dist/tools/fs/index.d.ts +6 -1
  156. package/dist/tools/fs/index.js +1 -1
  157. package/dist/tools/web.js +2 -1
  158. package/package.json +5 -1
  159. package/test/export-surface.snapshot.json +159 -23
  160. package/dist/core/file-snapshot-store.d.ts +0 -165
  161. package/dist/core/file-snapshot-store.js +0 -259
  162. package/dist/core/store-contracts/file-snapshot-store-contract.d.ts +0 -13
  163. package/dist/core/store-contracts/file-snapshot-store-contract.js +0 -134
  164. package/dist/stores/file/file-snapshot-store.d.ts +0 -58
  165. package/dist/stores/file/file-snapshot-store.js +0 -353
@@ -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": 1766,
4
+ "count": 1834,
5
5
  "exports": {
6
6
  "A2ATaskState": "type",
7
7
  "A2ATaskStateReversal": "type",
@@ -28,6 +28,7 @@
28
28
  "AUTONOMOUS_LOOP_PREAMBLE": "variable",
29
29
  "AUTONOMOUS_LOOP_PREAMBLE_PERSISTENT": "variable",
30
30
  "AUTONOMOUS_LOOP_SENTINEL": "variable",
31
+ "AUTO_MODE_ARMING_RECIPE_VERSION": "variable",
31
32
  "AUTO_MODE_BASE_PROMPT": "variable",
32
33
  "AUTO_MODE_DEFAULTS_SENTINEL": "variable",
33
34
  "AUTO_MODE_PERMISSIONS_EXTERNAL": "variable",
@@ -76,10 +77,17 @@
76
77
  "AssertOracleIsolationOptions": "interface",
77
78
  "AssistantMessage": "interface",
78
79
  "AssistantMessageEvent": "type",
80
+ "AutoModeArmingFace": "interface",
81
+ "AutoModeArmingFold": "type",
82
+ "AutoModeArmingRecipe": "interface",
83
+ "AutoModeClassifierCompletion": "type",
79
84
  "AutoModeClassifyFn": "type",
80
85
  "AutoModeClassifyInput": "interface",
81
86
  "AutoModeDecider": "interface",
82
87
  "AutoModeDeciderOptions": "interface",
88
+ "AutoModeRebuildOptions": "interface",
89
+ "AutoModeRebuildRefusal": "type",
90
+ "AutoModeRebuildResult": "type",
83
91
  "AutoModeRules": "interface",
84
92
  "AutoModeVerdict": "type",
85
93
  "AutoModeWindowOptions": "interface",
@@ -180,6 +188,9 @@
180
188
  "CheckpointSummary": "interface",
181
189
  "CheckpointToken": "type",
182
190
  "CircuitBreakerOptions": "interface",
191
+ "CleanArmLeakFinding": "interface",
192
+ "CleanArmLeakVerdict": "interface",
193
+ "CleanMemoryIndexRow": "interface",
183
194
  "CleanMemorySearchHit": "interface",
184
195
  "CodeReviewMode": "type",
185
196
  "CodeToolsConfig": "interface",
@@ -245,6 +256,7 @@
245
256
  "DEFAULT_CONSOLIDATION_SEARCH_LIMIT": "variable",
246
257
  "DEFAULT_CONSOLIDATION_TIMEOUT_SEC": "variable",
247
258
  "DEFAULT_EFFORT_LEVELS": "variable",
259
+ "DEFAULT_FILE_HISTORY_BOUNDARY_KEEP": "variable",
248
260
  "DEFAULT_HARVEST_DEADLINE_MS": "variable",
249
261
  "DEFAULT_HARVEST_FILE_BUDGET": "variable",
250
262
  "DEFAULT_LSP_SERVERS": "variable",
@@ -253,7 +265,6 @@
253
265
  "DEFAULT_MAX_MEMORY_FILES": "variable",
254
266
  "DEFAULT_MAX_SELECTED": "variable",
255
267
  "DEFAULT_REASONING_INTENSITY": "variable",
256
- "DEFAULT_SNAPSHOT_BOUNDS": "variable",
257
268
  "DEFAULT_SUBAGENT_TOOL_NAME": "variable",
258
269
  "DEFAULT_SYSTEM_PROMPT": "variable",
259
270
  "DEFAULT_TIER_ORDER": "variable",
@@ -320,21 +331,35 @@
320
331
  "ExecutionError": "class",
321
332
  "ExecutionErrorCode": "type",
322
333
  "ExplainInput": "interface",
334
+ "ExposedMemoryIndexRow": "interface",
323
335
  "ExposedMemorySearchHit": "interface",
324
336
  "ExternalNotificationInput": "interface",
325
337
  "F012_CHECKPOINT_VERSION": "variable",
326
338
  "FABLE_5_COMPAT": "variable",
339
+ "FILE_HISTORY_DIFF_LINE_BUDGET": "variable",
327
340
  "FORK_DIRECTIVE_FRAME": "variable",
328
341
  "FORK_SUBAGENT_TYPE": "variable",
329
342
  "FROZEN_DENYLIST_FLOOR": "variable",
330
343
  "FileBackgroundAgentStore": "class",
331
344
  "FileBackgroundAgentStoreOptions": "interface",
345
+ "FileBackupCapture": "type",
332
346
  "FileCheckpointStore": "class",
333
347
  "FileCheckpointStoreOptions": "interface",
334
348
  "FileError": "class",
335
349
  "FileErrorCode": "type",
336
- "FileFileSnapshotStore": "class",
337
- "FileFileSnapshotStoreOptions": "interface",
350
+ "FileFileHistoryStore": "class",
351
+ "FileFileHistoryStoreOptions": "interface",
352
+ "FileHistoryDiffStats": "interface",
353
+ "FileHistoryError": "interface",
354
+ "FileHistoryExport": "interface",
355
+ "FileHistoryKeyFamily": "type",
356
+ "FileHistoryRestoreResult": "type",
357
+ "FileHistoryResult": "type",
358
+ "FileHistoryRetentionPolicy": "interface",
359
+ "FileHistoryStore": "interface",
360
+ "FileHistoryTrackKeyDescriptor": "interface",
361
+ "FileHistoryTrackKeyResolution": "type",
362
+ "FileHistoryTrackResult": "type",
338
363
  "FileInfo": "interface",
339
364
  "FileMailboxStore": "class",
340
365
  "FileMailboxStoreOptions": "interface",
@@ -343,14 +368,13 @@
343
368
  "FilePermissionRuleStoreProvider": "class",
344
369
  "FilePromptArtifactStore": "class",
345
370
  "FilePromptSourceStateStore": "class",
371
+ "FileRestoreApplyOptions": "interface",
372
+ "FileRestoreApplyOutcome": "type",
373
+ "FileRestoreTarget": "type",
346
374
  "FileRosterStore": "class",
347
375
  "FileSessionPolicyStore": "class",
348
376
  "FileSessionRepo": "class",
349
377
  "FileSessionRepoOptions": "interface",
350
- "FileSnapshotBounds": "interface",
351
- "FileSnapshotError": "interface",
352
- "FileSnapshotResult": "type",
353
- "FileSnapshotStore": "interface",
354
378
  "FileStorageBackend": "class",
355
379
  "FileStorageBackendOptions": "interface",
356
380
  "FileStorageCorruptReadInfo": "interface",
@@ -407,7 +431,8 @@
407
431
  "ImportedSettingsLayer": "type",
408
432
  "InMemoryBackgroundAgentStore": "class",
409
433
  "InMemoryCheckpointStore": "class",
410
- "InMemoryFileSnapshotStore": "class",
434
+ "InMemoryFileHistoryStore": "class",
435
+ "InMemoryFileHistoryStoreOptions": "interface",
411
436
  "InMemoryMailboxStore": "class",
412
437
  "InMemoryMemoryStore": "class",
413
438
  "InMemoryPermissionRuleStore": "class",
@@ -482,7 +507,9 @@
482
507
  "MCP_NAMESPACE": "variable",
483
508
  "MCP_PREFIX": "variable",
484
509
  "MEMORY_ANNOUNCEMENTS_MAX": "variable",
510
+ "MEMORY_CAPTURE_OPTOUT_NOTICE": "variable",
485
511
  "MEMORY_DISTILLER_CONTRACT_V1": "variable",
512
+ "MEMORY_DISTILLER_PURITY_CONTRACT_V1": "variable",
486
513
  "MEMORY_ENGINE_TOOL_NAMES": "variable",
487
514
  "MEMORY_EXPOSURE_BANNER": "variable",
488
515
  "MEMORY_EXPOSURE_HANDLE_TAG": "variable",
@@ -493,6 +520,7 @@
493
520
  "MEMORY_INDEX_FILENAME": "variable",
494
521
  "MEMORY_INDEX_MAX_BYTES": "variable",
495
522
  "MEMORY_INDEX_MAX_LINES": "variable",
523
+ "MEMORY_INDEX_TOOL_NAME": "variable",
496
524
  "MEMORY_INSTRUCTION_TEMPLATE": "variable",
497
525
  "MEMORY_ORIGIN_CAUSES": "variable",
498
526
  "MEMORY_PREFERENCE_DISCIPLINE": "variable",
@@ -532,6 +560,7 @@
532
560
  "MemoryBundleImportPlan": "interface",
533
561
  "MemoryConsolidationDriverDeps": "interface",
534
562
  "MemoryConsolidationOptions": "interface",
563
+ "MemoryDistillerPurityContract": "interface",
535
564
  "MemoryEngine": "class",
536
565
  "MemoryEngineOptions": "interface",
537
566
  "MemoryEntry": "interface",
@@ -546,6 +575,8 @@
546
575
  "MemoryGateError": "class",
547
576
  "MemoryGetDetails": "interface",
548
577
  "MemoryImportReport": "interface",
578
+ "MemoryIndexDetails": "interface",
579
+ "MemoryIndexRow": "type",
549
580
  "MemoryInjection": "interface",
550
581
  "MemoryListDetails": "type",
551
582
  "MemoryNoteHeader": "interface",
@@ -829,6 +860,8 @@
829
860
  "ResourceLimitReason": "type",
830
861
  "Result": "type",
831
862
  "ResumeOutcome": "type",
863
+ "ResumePreflightInfo": "interface",
864
+ "ResumePreflightVerdict": "type",
832
865
  "ResumeTaskConfig": "type",
833
866
  "RetentionDeclaration": "type",
834
867
  "RetentionDeclaring": "interface",
@@ -905,6 +938,7 @@
905
938
  "SCOPE_SEGMENT_MAX_ENCODED": "variable",
906
939
  "SEMA_DEFAULT_PACK": "variable",
907
940
  "SEND_MESSAGE_TOOL_NAME": "variable",
941
+ "SESSION_CAPTURE_OPTOUT_DIR": "variable",
908
942
  "SESSION_LOG_DIGEST_SCHEME": "variable",
909
943
  "SHARED_MEMORY_LIST_PAGE_SIZE": "variable",
910
944
  "SHARED_MEMORY_READ_CAP_BYTES": "variable",
@@ -918,6 +952,7 @@
918
952
  "SUBAGENT_TRANSCRIPT_RETENTION_DAYS_DEFAULT": "variable",
919
953
  "SUMMARIZE_TOOL_RESULTS": "variable",
920
954
  "SUPERVISOR_PROMPT": "variable",
955
+ "SYSTEM_INJECTION_PRIORITIES": "variable",
921
956
  "SafetyAxis": "interface",
922
957
  "SafetyMergeVector": "interface",
923
958
  "SandboxTier": "type",
@@ -956,6 +991,9 @@
956
991
  "SendMessageToolOptions": "interface",
957
992
  "SerializedCheckpointState": "type",
958
993
  "Session": "interface",
994
+ "SessionCaptureOptOutMarkOutcome": "type",
995
+ "SessionCaptureOptOutRecord": "interface",
996
+ "SessionCaptureRecordStore": "interface",
959
997
  "SessionError": "class",
960
998
  "SessionMetadata": "interface",
961
999
  "SessionPermissionRules": "interface",
@@ -1099,6 +1137,9 @@
1099
1137
  "ToolSpec": "interface",
1100
1138
  "TraceEvent": "type",
1101
1139
  "TracerHook": "type",
1140
+ "TrackEditRequest": "interface",
1141
+ "TrackEditResult": "type",
1142
+ "TrackFileEditHook": "type",
1102
1143
  "TransferEvidence": "interface",
1103
1144
  "TransportLspSession": "class",
1104
1145
  "TripwireResult": "interface",
@@ -1213,7 +1254,7 @@
1213
1254
  "analyzePromptCacheFriendliness": "function",
1214
1255
  "appendHopToken": "function",
1215
1256
  "appendPendingSteer": "function",
1216
- "applyManifest": "function",
1257
+ "applyFileRestoreViaEnv": "function",
1217
1258
  "applyTombstones": "function",
1218
1259
  "archiveDistillerPlan": "function",
1219
1260
  "artifactDeclarations": "function",
@@ -1234,9 +1275,11 @@
1234
1275
  "assertWorkflowSandboxConformance": "function",
1235
1276
  "atomicWriteFile": "function",
1236
1277
  "attachToolContract": "function",
1278
+ "autoModeArmingRecipeOf": "function",
1237
1279
  "backgroundAgentStoreContract": "function",
1238
1280
  "backgroundAgentStoreScopesContract": "function",
1239
1281
  "bashReversibilityProbe": "function",
1282
+ "boundaryPublishVerdict": "function",
1240
1283
  "boundedRedactedSummary": "function",
1241
1284
  "boundedTail": "function",
1242
1285
  "brainToRuntime": "function",
@@ -1267,7 +1310,7 @@
1267
1310
  "capAggregateMediaBytes": "function",
1268
1311
  "capAggregateToolResults": "function",
1269
1312
  "captureBaseline": "function",
1270
- "captureManifest": "function",
1313
+ "captureFileBackupViaEnv": "function",
1271
1314
  "ccSidecarToMessages": "function",
1272
1315
  "chargeUsageRecord": "function",
1273
1316
  "checkInvariants": "function",
@@ -1302,6 +1345,7 @@
1302
1345
  "computeShapeDigest": "function",
1303
1346
  "confirmRuleApproval": "function",
1304
1347
  "consolidateScope": "function",
1348
+ "consolidationExposedFrontmatter": "function",
1305
1349
  "consolidationTypeEligible": "function",
1306
1350
  "constitutionBlocks": "function",
1307
1351
  "constraintChainDigest": "function",
@@ -1309,6 +1353,7 @@
1309
1353
  "contractGroupingDiff": "function",
1310
1354
  "cosineDistance": "function",
1311
1355
  "countElicitOptIns": "function",
1356
+ "countRestoreLineDiff": "function",
1312
1357
  "createAgentContinuationVerb": "function",
1313
1358
  "createAgentTranscriptTool": "function",
1314
1359
  "createAllowDenyPolicy": "function",
@@ -1390,6 +1435,7 @@
1390
1435
  "describeConfigCatalog": "function",
1391
1436
  "describeDefaultPack": "function",
1392
1437
  "describeStaticWiring": "function",
1438
+ "detectCleanArmVerbatimLeak": "function",
1393
1439
  "detectSecret": "function",
1394
1440
  "devWorkflowScriptRunner": "variable",
1395
1441
  "distilledEquals": "function",
@@ -1419,12 +1465,22 @@
1419
1465
  "expandTiers": "function",
1420
1466
  "explainPromptAssembly": "function",
1421
1467
  "fable5Model": "function",
1422
- "fileSnapshotStoreContract": "function",
1468
+ "fileHistoryBoundariesToKeep": "function",
1469
+ "fileHistoryDescribeTrackKey": "function",
1470
+ "fileHistoryExportDigest": "function",
1471
+ "fileHistoryKeyFamilyOf": "function",
1472
+ "fileHistoryModeProvenDifferent": "function",
1473
+ "fileHistoryPreviewFileDelta": "function",
1474
+ "fileHistoryResolveTrackKey": "function",
1475
+ "fileHistoryStoreContract": "function",
1476
+ "fileHistoryTrackKeyOf": "function",
1477
+ "fileSessionCaptureRecordStore": "function",
1423
1478
  "findAdmittingRule": "function",
1424
1479
  "findOrphanToolCalls": "function",
1425
1480
  "findUnverifiableRecursiveDelete": "function",
1426
1481
  "firstSentence": "function",
1427
1482
  "foldAdmissionFreeze": "function",
1483
+ "foldAutoModeArming": "function",
1428
1484
  "foldDelta": "function",
1429
1485
  "formatAllowRuleText": "function",
1430
1486
  "formatDiagnosticsBlock": "function",
@@ -1477,6 +1533,7 @@
1477
1533
  "isSelfOrchestrationActive": "function",
1478
1534
  "isSessionConflict": "function",
1479
1535
  "isSuspendable": "function",
1536
+ "isSystemInjectionPriority": "function",
1480
1537
  "isTerminalTaskNotification": "function",
1481
1538
  "isTerminalWorkflowStatus": "function",
1482
1539
  "isThinkingLevel": "function",
@@ -1494,6 +1551,7 @@
1494
1551
  "lexicalSearchMatch": "function",
1495
1552
  "listAdoptionQuarantine": "function",
1496
1553
  "listCcSidecarAgents": "function",
1554
+ "listSessionCaptureOptOut": "function",
1497
1555
  "listWorkflowRuns": "function",
1498
1556
  "llmPlanDistiller": "function",
1499
1557
  "loadOrchestrationEnv": "function",
@@ -1506,17 +1564,21 @@
1506
1564
  "mailboxBundledOnlyContract": "function",
1507
1565
  "mailboxStoreContract": "function",
1508
1566
  "mailboxTombstonedRecipientContract": "function",
1567
+ "markSessionCaptureOptOut": "function",
1509
1568
  "markTruncated": "function",
1510
1569
  "materializeA2aTools": "function",
1511
1570
  "materializeEntriesToFiles": "function",
1512
1571
  "materializeMcpTools": "function",
1513
1572
  "maybeCompact": "function",
1514
1573
  "memoryBackendContract": "function",
1574
+ "memoryCaptureOptOutUnpersistedNotice": "function",
1575
+ "memoryCaptureOptedOutNotice": "function",
1515
1576
  "memoryConsolidationCommittedNotice": "function",
1516
1577
  "memoryConsolidationConflictNotice": "function",
1517
1578
  "memoryConsolidationIncompleteNotice": "function",
1518
1579
  "memoryConsolidationRecommendedNotice": "function",
1519
1580
  "memoryConsolidationRefusedNotice": "function",
1581
+ "memoryConsolidationWithheldNotice": "function",
1520
1582
  "memoryExposureIndexRow": "function",
1521
1583
  "memorySupersededNote": "function",
1522
1584
  "mergeRecallHits": "function",
@@ -1595,9 +1657,11 @@
1595
1657
  "readJsonlRecords": "function",
1596
1658
  "readPendingSteerQueue": "function",
1597
1659
  "readRootAdoptionFile": "function",
1660
+ "readSessionCaptureOptOut": "function",
1598
1661
  "readUsageRecord": "function",
1599
1662
  "readV2HeaderHints": "function",
1600
1663
  "reasoningBudgetShare": "function",
1664
+ "rebuildAutoModeDecider": "function",
1601
1665
  "rebuildStrictControlPlaneLedger": "function",
1602
1666
  "reconcileInterruptedSession": "function",
1603
1667
  "reconcileMemoryEntries": "function",
@@ -1632,6 +1696,7 @@
1632
1696
  "resolveDelegationEntryCaps": "function",
1633
1697
  "resolveEffectiveConfig": "function",
1634
1698
  "resolveEffort": "function",
1699
+ "resolveFileHistoryRetention": "function",
1635
1700
  "resolveFrozenPaths": "function",
1636
1701
  "resolveLinkedIds": "function",
1637
1702
  "resolveLockedKeys": "function",
@@ -1680,6 +1745,7 @@
1680
1745
  "runWorkflow": "function",
1681
1746
  "sameRuleOwner": "function",
1682
1747
  "sameScope": "function",
1748
+ "sanitizeAutoModeArmingRecipe": "function",
1683
1749
  "sanitizeCcAgentName": "function",
1684
1750
  "sanitizeLlmGroups": "function",
1685
1751
  "sanitizePathComponent": "function",
@@ -1747,6 +1813,7 @@
1747
1813
  "usageRetryAfterMs": "function",
1748
1814
  "uuidv7": "function",
1749
1815
  "validateEntriesForImport": "function",
1816
+ "validateFileHistoryExport": "function",
1750
1817
  "validatePack": "function",
1751
1818
  "validatePendingSteer": "function",
1752
1819
  "validatePermissionRules": "function",
@@ -1766,6 +1833,7 @@
1766
1833
  "workflowScriptReadsClockOrRandom": "function",
1767
1834
  "workflowWhenToUseText": "function",
1768
1835
  "workflowsCapability": "function",
1836
+ "worldStillMatchesMint": "function",
1769
1837
  "writeRootAdoptionFile": "function",
1770
1838
  "writeThenLink": "function",
1771
1839
  "writerOf": "function"
@@ -1796,6 +1864,7 @@
1796
1864
  "AUTONOMOUS_LOOP_PREAMBLE": "advanced",
1797
1865
  "AUTONOMOUS_LOOP_PREAMBLE_PERSISTENT": "advanced",
1798
1866
  "AUTONOMOUS_LOOP_SENTINEL": "advanced",
1867
+ "AUTO_MODE_ARMING_RECIPE_VERSION": "advanced",
1799
1868
  "AUTO_MODE_BASE_PROMPT": "advanced",
1800
1869
  "AUTO_MODE_DEFAULTS_SENTINEL": "advanced",
1801
1870
  "AUTO_MODE_PERMISSIONS_EXTERNAL": "advanced",
@@ -1844,10 +1913,17 @@
1844
1913
  "AssertOracleIsolationOptions": "advanced",
1845
1914
  "AssistantMessage": "stable",
1846
1915
  "AssistantMessageEvent": "stable",
1916
+ "AutoModeArmingFace": "advanced",
1917
+ "AutoModeArmingFold": "advanced",
1918
+ "AutoModeArmingRecipe": "advanced",
1919
+ "AutoModeClassifierCompletion": "advanced",
1847
1920
  "AutoModeClassifyFn": "advanced",
1848
1921
  "AutoModeClassifyInput": "advanced",
1849
1922
  "AutoModeDecider": "advanced",
1850
1923
  "AutoModeDeciderOptions": "advanced",
1924
+ "AutoModeRebuildOptions": "advanced",
1925
+ "AutoModeRebuildRefusal": "advanced",
1926
+ "AutoModeRebuildResult": "advanced",
1851
1927
  "AutoModeRules": "advanced",
1852
1928
  "AutoModeVerdict": "advanced",
1853
1929
  "AutoModeWindowOptions": "advanced",
@@ -1948,6 +2024,9 @@
1948
2024
  "CheckpointSummary": "stable",
1949
2025
  "CheckpointToken": "stable",
1950
2026
  "CircuitBreakerOptions": "advanced",
2027
+ "CleanArmLeakFinding": "advanced",
2028
+ "CleanArmLeakVerdict": "advanced",
2029
+ "CleanMemoryIndexRow": "advanced",
1951
2030
  "CleanMemorySearchHit": "advanced",
1952
2031
  "CodeReviewMode": "advanced",
1953
2032
  "CodeToolsConfig": "advanced",
@@ -2013,6 +2092,7 @@
2013
2092
  "DEFAULT_CONSOLIDATION_SEARCH_LIMIT": "internal",
2014
2093
  "DEFAULT_CONSOLIDATION_TIMEOUT_SEC": "internal",
2015
2094
  "DEFAULT_EFFORT_LEVELS": "advanced",
2095
+ "DEFAULT_FILE_HISTORY_BOUNDARY_KEEP": "advanced",
2016
2096
  "DEFAULT_HARVEST_DEADLINE_MS": "advanced",
2017
2097
  "DEFAULT_HARVEST_FILE_BUDGET": "advanced",
2018
2098
  "DEFAULT_LSP_SERVERS": "internal",
@@ -2021,7 +2101,6 @@
2021
2101
  "DEFAULT_MAX_MEMORY_FILES": "advanced",
2022
2102
  "DEFAULT_MAX_SELECTED": "advanced",
2023
2103
  "DEFAULT_REASONING_INTENSITY": "advanced",
2024
- "DEFAULT_SNAPSHOT_BOUNDS": "advanced",
2025
2104
  "DEFAULT_SUBAGENT_TOOL_NAME": "advanced",
2026
2105
  "DEFAULT_SYSTEM_PROMPT": "advanced",
2027
2106
  "DEFAULT_TIER_ORDER": "advanced",
@@ -2088,21 +2167,35 @@
2088
2167
  "ExecutionError": "stable",
2089
2168
  "ExecutionErrorCode": "internal",
2090
2169
  "ExplainInput": "advanced",
2170
+ "ExposedMemoryIndexRow": "advanced",
2091
2171
  "ExposedMemorySearchHit": "advanced",
2092
2172
  "ExternalNotificationInput": "advanced",
2093
2173
  "F012_CHECKPOINT_VERSION": "advanced",
2094
2174
  "FABLE_5_COMPAT": "advanced",
2175
+ "FILE_HISTORY_DIFF_LINE_BUDGET": "advanced",
2095
2176
  "FORK_DIRECTIVE_FRAME": "advanced",
2096
2177
  "FORK_SUBAGENT_TYPE": "advanced",
2097
2178
  "FROZEN_DENYLIST_FLOOR": "advanced",
2098
2179
  "FileBackgroundAgentStore": "advanced",
2099
2180
  "FileBackgroundAgentStoreOptions": "advanced",
2181
+ "FileBackupCapture": "advanced",
2100
2182
  "FileCheckpointStore": "stable",
2101
2183
  "FileCheckpointStoreOptions": "advanced",
2102
2184
  "FileError": "stable",
2103
2185
  "FileErrorCode": "internal",
2104
- "FileFileSnapshotStore": "advanced",
2105
- "FileFileSnapshotStoreOptions": "advanced",
2186
+ "FileFileHistoryStore": "advanced",
2187
+ "FileFileHistoryStoreOptions": "advanced",
2188
+ "FileHistoryDiffStats": "advanced",
2189
+ "FileHistoryError": "advanced",
2190
+ "FileHistoryExport": "advanced",
2191
+ "FileHistoryKeyFamily": "advanced",
2192
+ "FileHistoryRestoreResult": "advanced",
2193
+ "FileHistoryResult": "advanced",
2194
+ "FileHistoryRetentionPolicy": "advanced",
2195
+ "FileHistoryStore": "advanced",
2196
+ "FileHistoryTrackKeyDescriptor": "advanced",
2197
+ "FileHistoryTrackKeyResolution": "advanced",
2198
+ "FileHistoryTrackResult": "advanced",
2106
2199
  "FileInfo": "stable",
2107
2200
  "FileMailboxStore": "advanced",
2108
2201
  "FileMailboxStoreOptions": "advanced",
@@ -2111,14 +2204,13 @@
2111
2204
  "FilePermissionRuleStoreProvider": "advanced",
2112
2205
  "FilePromptArtifactStore": "advanced",
2113
2206
  "FilePromptSourceStateStore": "advanced",
2207
+ "FileRestoreApplyOptions": "advanced",
2208
+ "FileRestoreApplyOutcome": "advanced",
2209
+ "FileRestoreTarget": "advanced",
2114
2210
  "FileRosterStore": "advanced",
2115
2211
  "FileSessionPolicyStore": "advanced",
2116
2212
  "FileSessionRepo": "stable",
2117
2213
  "FileSessionRepoOptions": "advanced",
2118
- "FileSnapshotBounds": "advanced",
2119
- "FileSnapshotError": "advanced",
2120
- "FileSnapshotResult": "advanced",
2121
- "FileSnapshotStore": "advanced",
2122
2214
  "FileStorageBackend": "stable",
2123
2215
  "FileStorageBackendOptions": "advanced",
2124
2216
  "FileStorageCorruptReadInfo": "advanced",
@@ -2175,7 +2267,8 @@
2175
2267
  "ImportedSettingsLayer": "advanced",
2176
2268
  "InMemoryBackgroundAgentStore": "advanced",
2177
2269
  "InMemoryCheckpointStore": "stable",
2178
- "InMemoryFileSnapshotStore": "advanced",
2270
+ "InMemoryFileHistoryStore": "advanced",
2271
+ "InMemoryFileHistoryStoreOptions": "advanced",
2179
2272
  "InMemoryMailboxStore": "advanced",
2180
2273
  "InMemoryMemoryStore": "stable",
2181
2274
  "InMemoryPermissionRuleStore": "advanced",
@@ -2250,7 +2343,9 @@
2250
2343
  "MCP_NAMESPACE": "advanced",
2251
2344
  "MCP_PREFIX": "advanced",
2252
2345
  "MEMORY_ANNOUNCEMENTS_MAX": "advanced",
2346
+ "MEMORY_CAPTURE_OPTOUT_NOTICE": "advanced",
2253
2347
  "MEMORY_DISTILLER_CONTRACT_V1": "advanced",
2348
+ "MEMORY_DISTILLER_PURITY_CONTRACT_V1": "advanced",
2254
2349
  "MEMORY_ENGINE_TOOL_NAMES": "advanced",
2255
2350
  "MEMORY_EXPOSURE_BANNER": "advanced",
2256
2351
  "MEMORY_EXPOSURE_HANDLE_TAG": "advanced",
@@ -2261,6 +2356,7 @@
2261
2356
  "MEMORY_INDEX_FILENAME": "advanced",
2262
2357
  "MEMORY_INDEX_MAX_BYTES": "advanced",
2263
2358
  "MEMORY_INDEX_MAX_LINES": "advanced",
2359
+ "MEMORY_INDEX_TOOL_NAME": "advanced",
2264
2360
  "MEMORY_INSTRUCTION_TEMPLATE": "advanced",
2265
2361
  "MEMORY_ORIGIN_CAUSES": "advanced",
2266
2362
  "MEMORY_PREFERENCE_DISCIPLINE": "advanced",
@@ -2300,6 +2396,7 @@
2300
2396
  "MemoryBundleImportPlan": "advanced",
2301
2397
  "MemoryConsolidationDriverDeps": "internal",
2302
2398
  "MemoryConsolidationOptions": "advanced",
2399
+ "MemoryDistillerPurityContract": "advanced",
2303
2400
  "MemoryEngine": "stable",
2304
2401
  "MemoryEngineOptions": "advanced",
2305
2402
  "MemoryEntry": "stable",
@@ -2314,6 +2411,8 @@
2314
2411
  "MemoryGateError": "advanced",
2315
2412
  "MemoryGetDetails": "advanced",
2316
2413
  "MemoryImportReport": "advanced",
2414
+ "MemoryIndexDetails": "advanced",
2415
+ "MemoryIndexRow": "advanced",
2317
2416
  "MemoryInjection": "advanced",
2318
2417
  "MemoryListDetails": "advanced",
2319
2418
  "MemoryNoteHeader": "stable",
@@ -2597,6 +2696,8 @@
2597
2696
  "ResourceLimitReason": "advanced",
2598
2697
  "Result": "stable",
2599
2698
  "ResumeOutcome": "stable",
2699
+ "ResumePreflightInfo": "advanced",
2700
+ "ResumePreflightVerdict": "advanced",
2600
2701
  "ResumeTaskConfig": "stable",
2601
2702
  "RetentionDeclaration": "advanced",
2602
2703
  "RetentionDeclaring": "advanced",
@@ -2673,6 +2774,7 @@
2673
2774
  "SCOPE_SEGMENT_MAX_ENCODED": "advanced",
2674
2775
  "SEMA_DEFAULT_PACK": "advanced",
2675
2776
  "SEND_MESSAGE_TOOL_NAME": "advanced",
2777
+ "SESSION_CAPTURE_OPTOUT_DIR": "advanced",
2676
2778
  "SESSION_LOG_DIGEST_SCHEME": "internal",
2677
2779
  "SHARED_MEMORY_LIST_PAGE_SIZE": "advanced",
2678
2780
  "SHARED_MEMORY_READ_CAP_BYTES": "advanced",
@@ -2686,6 +2788,7 @@
2686
2788
  "SUBAGENT_TRANSCRIPT_RETENTION_DAYS_DEFAULT": "advanced",
2687
2789
  "SUMMARIZE_TOOL_RESULTS": "advanced",
2688
2790
  "SUPERVISOR_PROMPT": "advanced",
2791
+ "SYSTEM_INJECTION_PRIORITIES": "advanced",
2689
2792
  "SafetyAxis": "advanced",
2690
2793
  "SafetyMergeVector": "advanced",
2691
2794
  "SandboxTier": "advanced",
@@ -2724,6 +2827,9 @@
2724
2827
  "SendMessageToolOptions": "advanced",
2725
2828
  "SerializedCheckpointState": "advanced",
2726
2829
  "Session": "stable",
2830
+ "SessionCaptureOptOutMarkOutcome": "advanced",
2831
+ "SessionCaptureOptOutRecord": "advanced",
2832
+ "SessionCaptureRecordStore": "advanced",
2727
2833
  "SessionError": "stable",
2728
2834
  "SessionMetadata": "stable",
2729
2835
  "SessionPermissionRules": "advanced",
@@ -2867,6 +2973,9 @@
2867
2973
  "ToolSpec": "stable",
2868
2974
  "TraceEvent": "advanced",
2869
2975
  "TracerHook": "advanced",
2976
+ "TrackEditRequest": "advanced",
2977
+ "TrackEditResult": "advanced",
2978
+ "TrackFileEditHook": "advanced",
2870
2979
  "TransferEvidence": "advanced",
2871
2980
  "TransportLspSession": "advanced",
2872
2981
  "TripwireResult": "advanced",
@@ -2981,7 +3090,7 @@
2981
3090
  "analyzePromptCacheFriendliness": "advanced",
2982
3091
  "appendHopToken": "advanced",
2983
3092
  "appendPendingSteer": "stable",
2984
- "applyManifest": "advanced",
3093
+ "applyFileRestoreViaEnv": "advanced",
2985
3094
  "applyTombstones": "advanced",
2986
3095
  "archiveDistillerPlan": "advanced",
2987
3096
  "artifactDeclarations": "advanced",
@@ -3002,9 +3111,11 @@
3002
3111
  "assertWorkflowSandboxConformance": "advanced",
3003
3112
  "atomicWriteFile": "advanced",
3004
3113
  "attachToolContract": "advanced",
3114
+ "autoModeArmingRecipeOf": "advanced",
3005
3115
  "backgroundAgentStoreContract": "advanced",
3006
3116
  "backgroundAgentStoreScopesContract": "advanced",
3007
3117
  "bashReversibilityProbe": "advanced",
3118
+ "boundaryPublishVerdict": "advanced",
3008
3119
  "boundedRedactedSummary": "advanced",
3009
3120
  "boundedTail": "stable",
3010
3121
  "brainToRuntime": "advanced",
@@ -3035,7 +3146,7 @@
3035
3146
  "capAggregateMediaBytes": "advanced",
3036
3147
  "capAggregateToolResults": "advanced",
3037
3148
  "captureBaseline": "advanced",
3038
- "captureManifest": "advanced",
3149
+ "captureFileBackupViaEnv": "advanced",
3039
3150
  "ccSidecarToMessages": "advanced",
3040
3151
  "chargeUsageRecord": "advanced",
3041
3152
  "checkInvariants": "advanced",
@@ -3070,6 +3181,7 @@
3070
3181
  "computeShapeDigest": "advanced",
3071
3182
  "confirmRuleApproval": "advanced",
3072
3183
  "consolidateScope": "advanced",
3184
+ "consolidationExposedFrontmatter": "advanced",
3073
3185
  "consolidationTypeEligible": "advanced",
3074
3186
  "constitutionBlocks": "advanced",
3075
3187
  "constraintChainDigest": "advanced",
@@ -3077,6 +3189,7 @@
3077
3189
  "contractGroupingDiff": "advanced",
3078
3190
  "cosineDistance": "stable",
3079
3191
  "countElicitOptIns": "advanced",
3192
+ "countRestoreLineDiff": "advanced",
3080
3193
  "createAgentContinuationVerb": "advanced",
3081
3194
  "createAgentTranscriptTool": "advanced",
3082
3195
  "createAllowDenyPolicy": "advanced",
@@ -3158,6 +3271,7 @@
3158
3271
  "describeConfigCatalog": "advanced",
3159
3272
  "describeDefaultPack": "advanced",
3160
3273
  "describeStaticWiring": "stable",
3274
+ "detectCleanArmVerbatimLeak": "advanced",
3161
3275
  "detectSecret": "advanced",
3162
3276
  "devWorkflowScriptRunner": "stable",
3163
3277
  "distilledEquals": "stable",
@@ -3187,12 +3301,22 @@
3187
3301
  "expandTiers": "advanced",
3188
3302
  "explainPromptAssembly": "advanced",
3189
3303
  "fable5Model": "advanced",
3190
- "fileSnapshotStoreContract": "advanced",
3304
+ "fileHistoryBoundariesToKeep": "advanced",
3305
+ "fileHistoryDescribeTrackKey": "advanced",
3306
+ "fileHistoryExportDigest": "advanced",
3307
+ "fileHistoryKeyFamilyOf": "advanced",
3308
+ "fileHistoryModeProvenDifferent": "advanced",
3309
+ "fileHistoryPreviewFileDelta": "advanced",
3310
+ "fileHistoryResolveTrackKey": "advanced",
3311
+ "fileHistoryStoreContract": "advanced",
3312
+ "fileHistoryTrackKeyOf": "advanced",
3313
+ "fileSessionCaptureRecordStore": "advanced",
3191
3314
  "findAdmittingRule": "advanced",
3192
3315
  "findOrphanToolCalls": "advanced",
3193
3316
  "findUnverifiableRecursiveDelete": "advanced",
3194
3317
  "firstSentence": "stable",
3195
3318
  "foldAdmissionFreeze": "advanced",
3319
+ "foldAutoModeArming": "advanced",
3196
3320
  "foldDelta": "advanced",
3197
3321
  "formatAllowRuleText": "advanced",
3198
3322
  "formatDiagnosticsBlock": "advanced",
@@ -3245,6 +3369,7 @@
3245
3369
  "isSelfOrchestrationActive": "advanced",
3246
3370
  "isSessionConflict": "stable",
3247
3371
  "isSuspendable": "advanced",
3372
+ "isSystemInjectionPriority": "advanced",
3248
3373
  "isTerminalTaskNotification": "advanced",
3249
3374
  "isTerminalWorkflowStatus": "advanced",
3250
3375
  "isThinkingLevel": "advanced",
@@ -3262,6 +3387,7 @@
3262
3387
  "lexicalSearchMatch": "stable",
3263
3388
  "listAdoptionQuarantine": "advanced",
3264
3389
  "listCcSidecarAgents": "advanced",
3390
+ "listSessionCaptureOptOut": "advanced",
3265
3391
  "listWorkflowRuns": "advanced",
3266
3392
  "llmPlanDistiller": "advanced",
3267
3393
  "loadOrchestrationEnv": "advanced",
@@ -3274,17 +3400,21 @@
3274
3400
  "mailboxBundledOnlyContract": "advanced",
3275
3401
  "mailboxStoreContract": "advanced",
3276
3402
  "mailboxTombstonedRecipientContract": "advanced",
3403
+ "markSessionCaptureOptOut": "advanced",
3277
3404
  "markTruncated": "advanced",
3278
3405
  "materializeA2aTools": "advanced",
3279
3406
  "materializeEntriesToFiles": "advanced",
3280
3407
  "materializeMcpTools": "stable",
3281
3408
  "maybeCompact": "advanced",
3282
3409
  "memoryBackendContract": "stable",
3410
+ "memoryCaptureOptOutUnpersistedNotice": "advanced",
3411
+ "memoryCaptureOptedOutNotice": "advanced",
3283
3412
  "memoryConsolidationCommittedNotice": "advanced",
3284
3413
  "memoryConsolidationConflictNotice": "advanced",
3285
3414
  "memoryConsolidationIncompleteNotice": "advanced",
3286
3415
  "memoryConsolidationRecommendedNotice": "advanced",
3287
3416
  "memoryConsolidationRefusedNotice": "advanced",
3417
+ "memoryConsolidationWithheldNotice": "advanced",
3288
3418
  "memoryExposureIndexRow": "advanced",
3289
3419
  "memorySupersededNote": "advanced",
3290
3420
  "mergeRecallHits": "advanced",
@@ -3363,9 +3493,11 @@
3363
3493
  "readJsonlRecords": "advanced",
3364
3494
  "readPendingSteerQueue": "advanced",
3365
3495
  "readRootAdoptionFile": "advanced",
3496
+ "readSessionCaptureOptOut": "advanced",
3366
3497
  "readUsageRecord": "advanced",
3367
3498
  "readV2HeaderHints": "advanced",
3368
3499
  "reasoningBudgetShare": "advanced",
3500
+ "rebuildAutoModeDecider": "advanced",
3369
3501
  "rebuildStrictControlPlaneLedger": "advanced",
3370
3502
  "reconcileInterruptedSession": "advanced",
3371
3503
  "reconcileMemoryEntries": "advanced",
@@ -3400,6 +3532,7 @@
3400
3532
  "resolveDelegationEntryCaps": "advanced",
3401
3533
  "resolveEffectiveConfig": "advanced",
3402
3534
  "resolveEffort": "advanced",
3535
+ "resolveFileHistoryRetention": "advanced",
3403
3536
  "resolveFrozenPaths": "advanced",
3404
3537
  "resolveLinkedIds": "advanced",
3405
3538
  "resolveLockedKeys": "advanced",
@@ -3448,6 +3581,7 @@
3448
3581
  "runWorkflow": "stable",
3449
3582
  "sameRuleOwner": "advanced",
3450
3583
  "sameScope": "advanced",
3584
+ "sanitizeAutoModeArmingRecipe": "advanced",
3451
3585
  "sanitizeCcAgentName": "advanced",
3452
3586
  "sanitizeLlmGroups": "advanced",
3453
3587
  "sanitizePathComponent": "advanced",
@@ -3515,6 +3649,7 @@
3515
3649
  "usageRetryAfterMs": "advanced",
3516
3650
  "uuidv7": "stable",
3517
3651
  "validateEntriesForImport": "internal",
3652
+ "validateFileHistoryExport": "advanced",
3518
3653
  "validatePack": "advanced",
3519
3654
  "validatePendingSteer": "stable",
3520
3655
  "validatePermissionRules": "advanced",
@@ -3534,6 +3669,7 @@
3534
3669
  "workflowScriptReadsClockOrRandom": "advanced",
3535
3670
  "workflowWhenToUseText": "advanced",
3536
3671
  "workflowsCapability": "advanced",
3672
+ "worldStillMatchesMint": "advanced",
3537
3673
  "writeRootAdoptionFile": "advanced",
3538
3674
  "writeThenLink": "advanced",
3539
3675
  "writerOf": "advanced"