@sema-agent/core 5.56.0 → 5.58.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 +122 -0
- package/dist/agents/cascade.d.ts +1 -1
- package/dist/agents/cumulative-stats.d.ts +1 -1
- package/dist/agents/observer.d.ts +2 -2
- package/dist/agents/peer-admission.d.ts +1 -1
- package/dist/agents/retain-ledger.d.ts +2 -2
- package/dist/agents/roster-store.d.ts +8 -8
- package/dist/agents/send-message-tool.d.ts +13 -2
- package/dist/agents/send-message-tool.js +34 -12
- package/dist/agents/subagent-steps.d.ts +1 -1
- package/dist/agents/subagent.d.ts +13 -13
- package/dist/agents/team.d.ts +15 -6
- package/dist/agents/team.js +1 -0
- package/dist/agents/tool-filter.d.ts +2 -2
- package/dist/agents/verify.d.ts +1 -1
- package/dist/bench/metrics.d.ts +35 -35
- package/dist/brain/anthropic.js +15 -5
- package/dist/brain/circuit-breaker.js +2 -1
- package/dist/brain/degrading.d.ts +1 -1
- package/dist/brain/degrading.js +4 -1
- package/dist/brain/errors.d.ts +3 -3
- package/dist/brain/failover.js +16 -1
- package/dist/brain/open-responses.js +15 -5
- package/dist/brain/openai.js +16 -5
- package/dist/brain/reasoning.d.ts +2 -2
- package/dist/brain/repetition.d.ts +1 -1
- package/dist/brain/request-params.d.ts +30 -27
- package/dist/brain/request-params.js +1 -7
- package/dist/brain/route-adjudicator.d.ts +190 -0
- package/dist/brain/route-adjudicator.js +189 -0
- package/dist/brain/route-conformance.d.ts +55 -0
- package/dist/brain/route-conformance.js +136 -0
- package/dist/brain/routing.js +8 -3
- package/dist/brain/status-sink.d.ts +2 -2
- package/dist/brain/stream-shared.d.ts +1 -1
- package/dist/config/catalog.d.ts +5 -5
- package/dist/core/arg-summary.d.ts +4 -4
- package/dist/core/ask-class.d.ts +2 -2
- package/dist/core/ask-question.d.ts +1 -1
- package/dist/core/auto-compaction.d.ts +15 -15
- package/dist/core/auto-mode.d.ts +5 -5
- package/dist/core/background-agent-store.d.ts +20 -20
- package/dist/core/background-shell.d.ts +4 -4
- package/dist/core/checkpoint-store.d.ts +35 -27
- package/dist/core/context-edit.d.ts +1 -1
- package/dist/core/context-guard.d.ts +1 -1
- package/dist/core/exec-output-tail.d.ts +6 -6
- package/dist/core/file-snapshot-store.d.ts +8 -8
- package/dist/core/git-worktree-env.d.ts +3 -3
- package/dist/core/governance-codes.js +2 -0
- package/dist/core/hooks.d.ts +73 -33
- package/dist/core/hooks.js +87 -25
- package/dist/core/image-downsample.d.ts +1 -1
- package/dist/core/locked-config.d.ts +1 -1
- package/dist/core/lsp.d.ts +1 -1
- package/dist/core/mailbox-store.d.ts +1 -1
- package/dist/core/mcp.d.ts +3 -3
- package/dist/core/mcp.js +4 -4
- package/dist/core/memory-engine/consolidation-driver.d.ts +207 -0
- package/dist/core/memory-engine/consolidation-driver.js +378 -0
- package/dist/core/memory-engine/consolidation.d.ts +46 -2
- package/dist/core/memory-engine/consolidation.js +1 -0
- package/dist/core/memory-engine/data-plane.d.ts +1 -1
- package/dist/core/memory-engine/distiller.d.ts +550 -0
- package/dist/core/memory-engine/distiller.js +598 -0
- package/dist/core/memory-engine/dual-root.d.ts +1 -1
- package/dist/core/memory-engine/engine.d.ts +62 -8
- package/dist/core/memory-engine/engine.js +40 -4
- package/dist/core/memory-engine/file-backend.d.ts +1 -1
- package/dist/core/memory-engine/index.d.ts +4 -2
- package/dist/core/memory-engine/index.js +4 -2
- package/dist/core/memory-engine/origin-clearance.d.ts +1 -1
- package/dist/core/memory-engine/scope-contract.d.ts +4 -4
- package/dist/core/memory-engine/sync-client.d.ts +16 -16
- package/dist/core/memory-engine/sync.d.ts +4 -4
- package/dist/core/memory-recall.d.ts +1 -1
- package/dist/core/memory.d.ts +2 -2
- package/dist/core/permission-rule-consent.d.ts +230 -36
- package/dist/core/permission-rule-consent.js +258 -54
- package/dist/core/permission-rule-model.d.ts +295 -97
- package/dist/core/permission-rule-model.js +132 -41
- package/dist/core/permission-rules.d.ts +9 -9
- package/dist/core/remote-env.d.ts +8 -8
- package/dist/core/roles.d.ts +3 -3
- package/dist/core/roles.js +1 -0
- package/dist/core/runner/assemble-result.d.ts +2 -2
- package/dist/core/runner/compaction-call-options.d.ts +3 -3
- package/dist/core/runner/memory-consolidation-driver.d.ts +49 -0
- package/dist/core/runner/memory-consolidation-driver.js +60 -0
- package/dist/core/runner/memory-consolidation.d.ts +1 -1
- package/dist/core/runner/prepare-config-doors.d.ts +3 -3
- package/dist/core/runner/prepare-task.d.ts +21 -21
- package/dist/core/runner/prepare-task.js +54 -18
- package/dist/core/runner/prepare-workspace-restore.d.ts +2 -2
- package/dist/core/runner/runtask.d.ts +15 -12
- package/dist/core/runner/runtask.js +48 -0
- package/dist/core/runner/session-rule-policy.d.ts +1 -1
- package/dist/core/runner/teardown-bounded.d.ts +1 -1
- package/dist/core/runner/tool-disclosure.d.ts +2 -2
- package/dist/core/runner/turn-attachments.d.ts +11 -11
- package/dist/core/scheduler.d.ts +10 -5
- package/dist/core/secret-env.d.ts +1 -1
- package/dist/core/sensitive-path-policy.d.ts +1 -1
- package/dist/core/session-policy-store.d.ts +2 -2
- package/dist/core/session-reconcile.d.ts +2 -2
- package/dist/core/session-store.d.ts +3 -3
- package/dist/core/session.d.ts +1 -1
- package/dist/core/shutdown-debug.d.ts +2 -2
- package/dist/core/side-query.d.ts +14 -7
- package/dist/core/spec-contract.d.ts +1 -1
- package/dist/core/store-contracts/contract-harness.d.ts +2 -2
- package/dist/core/store-contracts/contract-kit-version.d.ts +2 -2
- package/dist/core/store-contracts/mailbox-store-contract.d.ts +1 -1
- package/dist/core/store-contracts/mailbox-store-contract.js +1 -1
- package/dist/core/task-notification.d.ts +5 -5
- package/dist/core/task-registry-agent.d.ts +12 -12
- package/dist/core/task-registry-monitor.d.ts +1 -1
- package/dist/core/task-registry-shared.d.ts +41 -41
- package/dist/core/task-registry.d.ts +12 -12
- package/dist/core/tool-detach.d.ts +2 -2
- package/dist/core/tool-errors.d.ts +3 -3
- package/dist/core/tool-policy.d.ts +55 -28
- package/dist/core/tool-result-budget.d.ts +1 -1
- package/dist/core/tool-result-store.d.ts +2 -2
- package/dist/core/tools.d.ts +1 -1
- package/dist/core/trace.d.ts +26 -23
- package/dist/core/types.d.ts +155 -70
- package/dist/core/untrusted-egress.d.ts +1 -1
- package/dist/core/untrusted-text.d.ts +7 -7
- package/dist/core/wiring-manifest.d.ts +5 -5
- package/dist/core/workflow-journal-store.d.ts +14 -14
- package/dist/core/workflow-run-store-contract.d.ts +1 -1
- package/dist/core/workflow-run-store-contract.js +1 -1
- package/dist/core/workflow-run-store.d.ts +4 -4
- package/dist/engine/compaction/compaction.d.ts +3 -3
- package/dist/engine/compaction/utils.d.ts +2 -2
- package/dist/engine/execution-env/kill-tree.d.ts +1 -1
- package/dist/engine/execution-env/node-execution-env.d.ts +8 -8
- package/dist/engine/harness/agent-harness.d.ts +6 -6
- package/dist/engine/harness/agent-harness.js +26 -1
- package/dist/engine/harness/messages.d.ts +1 -1
- package/dist/engine/harness/types.d.ts +15 -11
- package/dist/engine/llm/types.d.ts +79 -14
- package/dist/engine/loop/agent-loop.d.ts +3 -3
- package/dist/engine/loop/types.d.ts +4 -4
- package/dist/engine/lsp/node-lsp-manager.d.ts +2 -2
- package/dist/engine/session/import-validate.d.ts +1 -1
- package/dist/engine/session/log-digest.d.ts +1 -1
- package/dist/engine/session/memory-repo.d.ts +2 -2
- package/dist/engine/session/session.d.ts +4 -4
- package/dist/fixtures/index.d.ts +4 -4
- package/dist/index.d.ts +8 -4
- package/dist/index.js +5 -2
- package/dist/internal/llm.d.ts +1 -1
- package/dist/orchestration/goal.d.ts +1 -1
- package/dist/orchestration/run-spec.d.ts +1 -1
- package/dist/orchestration/run-workflow-tool.d.ts +12 -12
- package/dist/orchestration/workflow-governance.d.ts +4 -4
- package/dist/orchestration/workflow-observe.d.ts +1 -1
- package/dist/orchestration/workflow-script-runner.d.ts +1 -1
- package/dist/orchestration/workflow-script-store.d.ts +9 -9
- package/dist/orchestration/workflow-size-guideline.d.ts +1 -1
- package/dist/orchestration/workflow-types.d.ts +5 -5
- package/dist/orchestration/workflow.d.ts +10 -10
- package/dist/prompt-assembly/artifact-store.d.ts +1 -1
- package/dist/prompt-assembly/artifact.d.ts +1 -1
- package/dist/prompt-assembly/assemble.d.ts +1 -1
- package/dist/prompt-assembly/composer.d.ts +2 -2
- package/dist/prompt-assembly/epoch.d.ts +2 -2
- package/dist/prompt-assembly/event-registry.d.ts +1 -1
- package/dist/prompt-assembly/explain.d.ts +3 -3
- package/dist/prompt-assembly/tool-catalog.d.ts +1 -1
- package/dist/prompt-assembly/turn-snapshot.d.ts +4 -4
- package/dist/prompt-assembly/types.d.ts +12 -12
- package/dist/prompts/coordinator.d.ts +1 -1
- package/dist/prompts/default.d.ts +10 -10
- package/dist/prompts/default.js +2 -0
- package/dist/prompts/simple-sections.d.ts +3 -3
- package/dist/prompts/supervisor.d.ts +2 -2
- package/dist/scenarios/full-body.d.ts +3 -3
- package/dist/scenarios/scenario-registry.d.ts +6 -2
- package/dist/scenarios/scenario-registry.js +4 -2
- package/dist/stores/cc/sidecar-transcript.d.ts +3 -3
- package/dist/stores/file/fs-atomic.d.ts +2 -2
- package/dist/stores/file/index.d.ts +1 -1
- package/dist/stores/file/session-store.d.ts +2 -2
- package/dist/stores/file/workflow-journal-store.d.ts +4 -4
- package/dist/tools/fs/bash-readonly-classifier.d.ts +1 -1
- package/dist/tools/fs/encoding.d.ts +4 -4
- package/dist/tools/fs/fs-bash.d.ts +3 -3
- package/dist/tools/fs/fs-pdf.d.ts +1 -1
- package/dist/tools/fs/fs-shared.d.ts +6 -6
- package/dist/tools/fs/index.d.ts +2 -2
- package/dist/tools/fs/index.js +8 -1
- package/dist/tools/fs/notebook.d.ts +1 -1
- package/dist/tools/fs/pdf.d.ts +1 -1
- package/dist/tools/fs/read-deny.d.ts +1 -1
- package/dist/tools/fs/safety.d.ts +9 -9
- package/dist/tools/fs/search.d.ts +2 -2
- package/dist/tools/monitor.d.ts +3 -3
- package/dist/tools/scheduler-tools.js +28 -6
- package/dist/tools/task-list.d.ts +2 -2
- package/dist/tools/web.d.ts +19 -4
- package/dist/tools/web.js +8 -2
- package/dist/tools/worktree.d.ts +5 -5
- package/dist/tools/worktree.js +2 -2
- package/package.json +1 -1
- package/test/export-surface.snapshot.json +74 -3
|
@@ -1,6 +1,6 @@
|
|
|
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
|
-
"count":
|
|
3
|
+
"count": 1749,
|
|
4
4
|
"exports": {
|
|
5
5
|
"A2ATaskState": "type",
|
|
6
6
|
"A2ATaskStateReversal": "type",
|
|
@@ -139,6 +139,9 @@
|
|
|
139
139
|
"COMPLIANCE_CAPABILITIES": "variable",
|
|
140
140
|
"CONFIG_CATALOG_VERSION": "variable",
|
|
141
141
|
"CONSOLIDATION_DEFAULTS": "variable",
|
|
142
|
+
"CONSOLIDATION_DRIVER_PLANS_DIR": "variable",
|
|
143
|
+
"CONSOLIDATION_DRIVER_RUNS_FILE": "variable",
|
|
144
|
+
"CONSOLIDATION_RUN_STOP_REASONS": "variable",
|
|
142
145
|
"CONSOLIDATION_SYSTEM_PROMPT": "variable",
|
|
143
146
|
"CONTRACT_KIT_ENGINE_VERSION": "variable",
|
|
144
147
|
"COORDINATOR_ROLE_PROMPT": "variable",
|
|
@@ -201,6 +204,13 @@
|
|
|
201
204
|
"ConsolidateScopeDeps": "interface",
|
|
202
205
|
"ConsolidateScopeOptions": "interface",
|
|
203
206
|
"ConsolidationCommitReceipt": "interface",
|
|
207
|
+
"ConsolidationDistillFn": "type",
|
|
208
|
+
"ConsolidationDriveCycleRow": "interface",
|
|
209
|
+
"ConsolidationDriveEngine": "interface",
|
|
210
|
+
"ConsolidationDriveResult": "interface",
|
|
211
|
+
"ConsolidationDriverEngine": "interface",
|
|
212
|
+
"ConsolidationDriverRunRow": "interface",
|
|
213
|
+
"ConsolidationFoldState": "interface",
|
|
204
214
|
"ConsolidationGateRow": "interface",
|
|
205
215
|
"ConsolidationIntent": "type",
|
|
206
216
|
"ConsolidationIntentCredentialRow": "interface",
|
|
@@ -214,6 +224,8 @@
|
|
|
214
224
|
"ConsolidationReconcileReport": "interface",
|
|
215
225
|
"ConsolidationRefusedError": "class",
|
|
216
226
|
"ConsolidationResolveReceipt": "interface",
|
|
227
|
+
"ConsolidationRunReceipt": "interface",
|
|
228
|
+
"ConsolidationRunStopReason": "type",
|
|
217
229
|
"ConsolidationStats": "interface",
|
|
218
230
|
"ConstraintChainEntry": "type",
|
|
219
231
|
"Context": "interface",
|
|
@@ -249,6 +261,7 @@
|
|
|
249
261
|
"DESIGN_REVIEW_PROMPTS": "variable",
|
|
250
262
|
"DISCUSSION_SCRIPT": "variable",
|
|
251
263
|
"DISCUSSION_WORKFLOW_NAME": "variable",
|
|
264
|
+
"DISTILLER_DEFAULT_MAX_INPUTS_PER_PRODUCT": "variable",
|
|
252
265
|
"DURABLE_AGENT_HANDLE_RE": "variable",
|
|
253
266
|
"DecisionReason": "type",
|
|
254
267
|
"DefaultPackDescription": "interface",
|
|
@@ -258,6 +271,10 @@
|
|
|
258
271
|
"DelegationLifecycleEvent": "type",
|
|
259
272
|
"DelegationTaskType": "type",
|
|
260
273
|
"DeveloperTaskConfig": "interface",
|
|
274
|
+
"DistillerCandidate": "interface",
|
|
275
|
+
"DistillerChatAnswer": "interface",
|
|
276
|
+
"DistillerChatFn": "type",
|
|
277
|
+
"DistillerChatRequest": "interface",
|
|
261
278
|
"DocumentContent": "interface",
|
|
262
279
|
"EMPTY_RULE_STORE": "variable",
|
|
263
280
|
"EMPTY_USAGE_WINDOW_RECORD": "variable",
|
|
@@ -269,6 +286,7 @@
|
|
|
269
286
|
"EXPLORE_SYSTEM_PROMPT": "variable",
|
|
270
287
|
"EXPLORE_WHEN_TO_USE": "variable",
|
|
271
288
|
"EXPLORE_WHEN_TO_USE_LEAN": "variable",
|
|
289
|
+
"EditedRuleTextPrecheck": "type",
|
|
272
290
|
"EffectiveConfigField": "interface",
|
|
273
291
|
"EffectiveMemoryScopes": "type",
|
|
274
292
|
"EffectivePermissionRule": "interface",
|
|
@@ -342,6 +360,7 @@
|
|
|
342
360
|
"FileWorkflowRunStoreOptions": "interface",
|
|
343
361
|
"FsWriteGatePolicyOptions": "interface",
|
|
344
362
|
"FunctionContract": "interface",
|
|
363
|
+
"FuseSchedule": "interface",
|
|
345
364
|
"GENERAL_PURPOSE_SUBAGENT_TYPE": "variable",
|
|
346
365
|
"GIT_STATUS_MAX_CHARS": "variable",
|
|
347
366
|
"GLOBAL_USAGE_KEY": "variable",
|
|
@@ -380,7 +399,6 @@
|
|
|
380
399
|
"ImageDownsampler": "type",
|
|
381
400
|
"ImageInput": "type",
|
|
382
401
|
"ImportPreview": "interface",
|
|
383
|
-
"ImportResult": "interface",
|
|
384
402
|
"ImportedSettingsLayer": "type",
|
|
385
403
|
"InMemoryBackgroundAgentStore": "class",
|
|
386
404
|
"InMemoryCheckpointStore": "class",
|
|
@@ -405,6 +423,10 @@
|
|
|
405
423
|
"KillProcessTreeOptions": "type",
|
|
406
424
|
"LEGACY_PENDING_STEER_INPUT_ID": "variable",
|
|
407
425
|
"LINEAGE_FILE": "variable",
|
|
426
|
+
"LLM_DISTILLER_CONTRACT": "variable",
|
|
427
|
+
"LLM_DISTILLER_CONTRACTS": "variable",
|
|
428
|
+
"LLM_DISTILLER_CONTRACT_DL2": "variable",
|
|
429
|
+
"LLM_DISTILLER_CONTRACT_DL3": "variable",
|
|
408
430
|
"LOCAL_OWNER_UNSYNCABLE_CODE": "variable",
|
|
409
431
|
"LOCKED_KEY_REGISTRY": "variable",
|
|
410
432
|
"LOWERING_VERSION": "variable",
|
|
@@ -414,6 +436,9 @@
|
|
|
414
436
|
"LayeredRecallResult": "type",
|
|
415
437
|
"LineagePendingTxn": "interface",
|
|
416
438
|
"LineagePromotion": "interface",
|
|
439
|
+
"LlmConsolidationPlan": "interface",
|
|
440
|
+
"LlmConsolidationPlanProduct": "interface",
|
|
441
|
+
"LlmDistillerContract": "interface",
|
|
417
442
|
"LockedConfig": "interface",
|
|
418
443
|
"LockedKey": "type",
|
|
419
444
|
"LoweringRecord": "interface",
|
|
@@ -451,6 +476,7 @@
|
|
|
451
476
|
"MCP_NAMESPACE": "variable",
|
|
452
477
|
"MCP_PREFIX": "variable",
|
|
453
478
|
"MEMORY_ANNOUNCEMENTS_MAX": "variable",
|
|
479
|
+
"MEMORY_DISTILLER_CONTRACT_V1": "variable",
|
|
454
480
|
"MEMORY_ENGINE_TOOL_NAMES": "variable",
|
|
455
481
|
"MEMORY_EXPOSURE_BANNER": "variable",
|
|
456
482
|
"MEMORY_EXPOSURE_HANDLE_TAG": "variable",
|
|
@@ -498,6 +524,7 @@
|
|
|
498
524
|
"MemoryBackend": "interface",
|
|
499
525
|
"MemoryBackendContractHooks": "interface",
|
|
500
526
|
"MemoryBundleImportPlan": "interface",
|
|
527
|
+
"MemoryConsolidationDriverDeps": "interface",
|
|
501
528
|
"MemoryConsolidationOptions": "interface",
|
|
502
529
|
"MemoryEngine": "class",
|
|
503
530
|
"MemoryEngineOptions": "interface",
|
|
@@ -544,6 +571,7 @@
|
|
|
544
571
|
"MemoryVectorMode": "type",
|
|
545
572
|
"Message": "type",
|
|
546
573
|
"MigrateScopeReport": "interface",
|
|
574
|
+
"MintLlmConsolidationPlanResult": "type",
|
|
547
575
|
"Model": "interface",
|
|
548
576
|
"ModelCriteria": "interface",
|
|
549
577
|
"ModelMention": "interface",
|
|
@@ -659,11 +687,14 @@
|
|
|
659
687
|
"PersistedAllowRule": "interface",
|
|
660
688
|
"PersistedOrgRuleState": "interface",
|
|
661
689
|
"PersistedRuleAnswer": "type",
|
|
690
|
+
"PersistedRuleCoverage": "interface",
|
|
662
691
|
"PersistedRuleHit": "interface",
|
|
692
|
+
"PersistedRuleHitRule": "interface",
|
|
663
693
|
"PersistedRuleMatch": "type",
|
|
664
694
|
"PersistedRuleTool": "type",
|
|
665
695
|
"PersistedRuleUnreadable": "interface",
|
|
666
696
|
"PlacedSessionRow": "type",
|
|
697
|
+
"PlanParseRepairs": "interface",
|
|
667
698
|
"PlatformLimitReason": "type",
|
|
668
699
|
"PostCompactContext": "interface",
|
|
669
700
|
"PostToolBatchCall": "interface",
|
|
@@ -729,6 +760,7 @@
|
|
|
729
760
|
"RETRYABLE_REMOTE_ERROR_CODES": "variable",
|
|
730
761
|
"ROLE_TIER_DEFAULTS": "variable",
|
|
731
762
|
"ROOT_ADOPTION_FILE": "variable",
|
|
763
|
+
"ROUTE_ADJUDICATION_CONFORMANCE_CORPUS": "variable",
|
|
732
764
|
"RULE_SYNC_DROP_CODES": "variable",
|
|
733
765
|
"RUN_WORKFLOW_TOOL_NAME": "variable",
|
|
734
766
|
"RawPrefixInputs": "interface",
|
|
@@ -753,6 +785,7 @@
|
|
|
753
785
|
"RedactionReport": "interface",
|
|
754
786
|
"RedactionSource": "type",
|
|
755
787
|
"RedeemResult": "type",
|
|
788
|
+
"RedeemedBatchMember": "type",
|
|
756
789
|
"RedemptionAuthorization": "interface",
|
|
757
790
|
"RegisterMonitorInput": "interface",
|
|
758
791
|
"RemoteConnectConfig": "interface",
|
|
@@ -801,6 +834,15 @@
|
|
|
801
834
|
"RosterEntry": "interface",
|
|
802
835
|
"RosterGcOptions": "interface",
|
|
803
836
|
"RosterStore": "interface",
|
|
837
|
+
"RouteAdjudication": "type",
|
|
838
|
+
"RouteAdjudicationVector": "interface",
|
|
839
|
+
"RouteCredential": "interface",
|
|
840
|
+
"RouteCredentialSource": "type",
|
|
841
|
+
"RoutePairingConfig": "interface",
|
|
842
|
+
"RoutePairingPosture": "type",
|
|
843
|
+
"RoutePairingStatus": "type",
|
|
844
|
+
"RouteRefusalCode": "type",
|
|
845
|
+
"RouteRefusalDetail": "interface",
|
|
804
846
|
"RoutingBrainOptions": "interface",
|
|
805
847
|
"RuleAdd": "interface",
|
|
806
848
|
"RuleAddDelta": "interface",
|
|
@@ -812,12 +854,13 @@
|
|
|
812
854
|
"RuleConsentDeps": "interface",
|
|
813
855
|
"RuleDeleteDelta": "interface",
|
|
814
856
|
"RuleDot": "interface",
|
|
857
|
+
"RuleOffer": "type",
|
|
858
|
+
"RuleOffer2": "type",
|
|
815
859
|
"RuleOwner": "type",
|
|
816
860
|
"RuleQuarantineReason": "type",
|
|
817
861
|
"RuleReject": "interface",
|
|
818
862
|
"RuleRejectCode": "type",
|
|
819
863
|
"RuleScope": "type",
|
|
820
|
-
"RuleSuggestion": "interface",
|
|
821
864
|
"RuleSyncDrop": "interface",
|
|
822
865
|
"RuleSyncDropReason": "type",
|
|
823
866
|
"RuleSyncFrontier": "type",
|
|
@@ -830,6 +873,7 @@
|
|
|
830
873
|
"RuleTombstone": "interface",
|
|
831
874
|
"RuleWriteDelta": "type",
|
|
832
875
|
"RunInternals": "interface",
|
|
876
|
+
"RunMemoryConsolidationOptions": "interface",
|
|
833
877
|
"RunScenarioOptions": "interface",
|
|
834
878
|
"RunScenarioResult": "type",
|
|
835
879
|
"RunSpecOptions": "interface",
|
|
@@ -866,6 +910,7 @@
|
|
|
866
910
|
"SafetyAxis": "interface",
|
|
867
911
|
"SafetyMergeVector": "interface",
|
|
868
912
|
"SandboxTier": "type",
|
|
913
|
+
"SanitizedLlmGroups": "interface",
|
|
869
914
|
"ScanFinding": "interface",
|
|
870
915
|
"ScannedEntryFile": "interface",
|
|
871
916
|
"ScenarioId": "type",
|
|
@@ -890,6 +935,8 @@
|
|
|
890
935
|
"SectionRenderInputs": "interface",
|
|
891
936
|
"SeedStrategiesReport": "interface",
|
|
892
937
|
"SeedStrategyEntry": "type",
|
|
938
|
+
"SegmentCoverage": "interface",
|
|
939
|
+
"SegmentRuleSuggestion": "interface",
|
|
893
940
|
"SelectiveRecallOptions": "interface",
|
|
894
941
|
"SelectiveRecallResult": "type",
|
|
895
942
|
"SemaTaskHandle": "interface",
|
|
@@ -939,6 +986,7 @@
|
|
|
939
986
|
"SpecContract": "interface",
|
|
940
987
|
"SqlToolOptions": "interface",
|
|
941
988
|
"StablePromptContext": "interface",
|
|
989
|
+
"StaleRuleApprovalRecord": "interface",
|
|
942
990
|
"StaleToolResultOffloadOptions": "interface",
|
|
943
991
|
"Static": "type",
|
|
944
992
|
"StaticWiringDeps": "type",
|
|
@@ -1142,6 +1190,7 @@
|
|
|
1142
1190
|
"acquireCcLock": "function",
|
|
1143
1191
|
"addDotsOf": "function",
|
|
1144
1192
|
"addWorktree": "function",
|
|
1193
|
+
"adjudicateModelRoute": "function",
|
|
1145
1194
|
"admitMemoryScopes": "function",
|
|
1146
1195
|
"adoptFilePermissionRuleStore": "function",
|
|
1147
1196
|
"adoptLocalDataRoot": "function",
|
|
@@ -1153,6 +1202,7 @@
|
|
|
1153
1202
|
"appendPendingSteer": "function",
|
|
1154
1203
|
"applyManifest": "function",
|
|
1155
1204
|
"applyTombstones": "function",
|
|
1205
|
+
"archiveDistillerPlan": "function",
|
|
1156
1206
|
"artifactDeclarations": "function",
|
|
1157
1207
|
"assembleCodeTools": "function",
|
|
1158
1208
|
"assertAdoptionBootGate": "function",
|
|
@@ -1243,6 +1293,7 @@
|
|
|
1243
1293
|
"constitutionBlocks": "function",
|
|
1244
1294
|
"constraintChainDigest": "function",
|
|
1245
1295
|
"constraintChainEntryOf": "function",
|
|
1296
|
+
"contractGroupingDiff": "function",
|
|
1246
1297
|
"cosineDistance": "function",
|
|
1247
1298
|
"countElicitOptIns": "function",
|
|
1248
1299
|
"createAgentContinuationVerb": "function",
|
|
@@ -1331,6 +1382,7 @@
|
|
|
1331
1382
|
"distilledEquals": "function",
|
|
1332
1383
|
"dotAtOrBelowFrontier": "function",
|
|
1333
1384
|
"drainMemoryAnnouncements": "function",
|
|
1385
|
+
"driveConsolidationToFixpoint": "function",
|
|
1334
1386
|
"durableParkGapFor": "function",
|
|
1335
1387
|
"durableParkGapOf": "function",
|
|
1336
1388
|
"editBudget": "function",
|
|
@@ -1386,6 +1438,7 @@
|
|
|
1386
1438
|
"guardedMemoryStore": "function",
|
|
1387
1439
|
"harnessContext": "function",
|
|
1388
1440
|
"harvestFilesToPatches": "function",
|
|
1441
|
+
"hasAuthCarrier": "function",
|
|
1389
1442
|
"hasBackgroundShell": "function",
|
|
1390
1443
|
"hasDestroy": "function",
|
|
1391
1444
|
"hasScheduler": "function",
|
|
@@ -1394,6 +1447,7 @@
|
|
|
1394
1447
|
"htmlToText": "function",
|
|
1395
1448
|
"inlineUntrusted": "function",
|
|
1396
1449
|
"inspectDegenerate": "function",
|
|
1450
|
+
"isAliasModelId": "function",
|
|
1397
1451
|
"isApprovalSettledBy": "function",
|
|
1398
1452
|
"isAskDenyResolution": "function",
|
|
1399
1453
|
"isDelegatedAgentTerminal": "function",
|
|
@@ -1426,6 +1480,7 @@
|
|
|
1426
1480
|
"listAdoptionQuarantine": "function",
|
|
1427
1481
|
"listCcSidecarAgents": "function",
|
|
1428
1482
|
"listWorkflowRuns": "function",
|
|
1483
|
+
"llmPlanDistiller": "function",
|
|
1429
1484
|
"loadOrchestrationEnv": "function",
|
|
1430
1485
|
"looksDegenerate": "function",
|
|
1431
1486
|
"lookupProjectIdHint": "function",
|
|
@@ -1444,6 +1499,7 @@
|
|
|
1444
1499
|
"memoryBackendContract": "function",
|
|
1445
1500
|
"memoryConsolidationCommittedNotice": "function",
|
|
1446
1501
|
"memoryConsolidationConflictNotice": "function",
|
|
1502
|
+
"memoryConsolidationIncompleteNotice": "function",
|
|
1447
1503
|
"memoryConsolidationRecommendedNotice": "function",
|
|
1448
1504
|
"memoryConsolidationRefusedNotice": "function",
|
|
1449
1505
|
"memoryExposureIndexRow": "function",
|
|
@@ -1453,6 +1509,7 @@
|
|
|
1453
1509
|
"migrateScope": "function",
|
|
1454
1510
|
"mintCheckpointId": "function",
|
|
1455
1511
|
"mintCheckpointToken": "function",
|
|
1512
|
+
"mintLlmConsolidationPlan": "function",
|
|
1456
1513
|
"mintReminderMark": "function",
|
|
1457
1514
|
"mintRuleTicket": "function",
|
|
1458
1515
|
"mintSystemReminder": "function",
|
|
@@ -1461,6 +1518,7 @@
|
|
|
1461
1518
|
"mysqlQuery": "function",
|
|
1462
1519
|
"nextSyncBaseline": "function",
|
|
1463
1520
|
"normalizeAgentName": "function",
|
|
1521
|
+
"normalizeBaseUrl": "function",
|
|
1464
1522
|
"normalizeForExactMatch": "function",
|
|
1465
1523
|
"normalizeMemorySpec": "function",
|
|
1466
1524
|
"normalizePersistedRuleHit": "function",
|
|
@@ -1469,6 +1527,7 @@
|
|
|
1469
1527
|
"normalizeToolResultProvenance": "function",
|
|
1470
1528
|
"noticeAudienceOf": "function",
|
|
1471
1529
|
"ok": "function",
|
|
1530
|
+
"openAiCompatChatSeat": "function",
|
|
1472
1531
|
"openSystemReminder": "function",
|
|
1473
1532
|
"orgRuleStatePersistenceOf": "function",
|
|
1474
1533
|
"orgRuleVerdictFor": "function",
|
|
@@ -1477,6 +1536,7 @@
|
|
|
1477
1536
|
"parseAllowRuleText": "function",
|
|
1478
1537
|
"parseAutoModeResponse": "function",
|
|
1479
1538
|
"parseEntryFile": "function",
|
|
1539
|
+
"parseJsonAnswer": "function",
|
|
1480
1540
|
"parseLeadingCommandName": "function",
|
|
1481
1541
|
"parseModelMention": "function",
|
|
1482
1542
|
"parsePermissionRule": "function",
|
|
@@ -1494,6 +1554,8 @@
|
|
|
1494
1554
|
"peerAxisToken": "function",
|
|
1495
1555
|
"permissionRuleSyncContract": "function",
|
|
1496
1556
|
"pgQuery": "function",
|
|
1557
|
+
"planParseRepairs": "function",
|
|
1558
|
+
"precheckEditedRuleText": "function",
|
|
1497
1559
|
"prepareCardApproval": "function",
|
|
1498
1560
|
"prepareCcImport": "function",
|
|
1499
1561
|
"prepareStarterBatch": "function",
|
|
@@ -1510,6 +1572,7 @@
|
|
|
1510
1572
|
"readAdoptionStatus": "function",
|
|
1511
1573
|
"readCcSidecarMessages": "function",
|
|
1512
1574
|
"readCcSidecarTranscript": "function",
|
|
1575
|
+
"readConsolidationDriverRun": "function",
|
|
1513
1576
|
"readDegradation": "function",
|
|
1514
1577
|
"readIntentCredentials": "function",
|
|
1515
1578
|
"readJsonlRecords": "function",
|
|
@@ -1554,6 +1617,7 @@
|
|
|
1554
1617
|
"resolveFrozenPaths": "function",
|
|
1555
1618
|
"resolveLinkedIds": "function",
|
|
1556
1619
|
"resolveLockedKeys": "function",
|
|
1620
|
+
"resolveMemoryConsolidationDriver": "function",
|
|
1557
1621
|
"resolveMemoryEngineRoot": "function",
|
|
1558
1622
|
"resolveModel": "function",
|
|
1559
1623
|
"resolvePeerAdmissionConfig": "function",
|
|
@@ -1563,6 +1627,7 @@
|
|
|
1563
1627
|
"resolveReadFace": "function",
|
|
1564
1628
|
"resolveReasoning": "function",
|
|
1565
1629
|
"resolveReasoningProfile": "function",
|
|
1630
|
+
"resolveRouteCredential": "function",
|
|
1566
1631
|
"resolveSubagentTranscriptTier": "function",
|
|
1567
1632
|
"resolveTaskLimits": "function",
|
|
1568
1633
|
"resolveTaskModel": "function",
|
|
@@ -1573,13 +1638,17 @@
|
|
|
1573
1638
|
"retiredWorkflowNameAliases": "function",
|
|
1574
1639
|
"retryBackoffMs": "function",
|
|
1575
1640
|
"riskSeverity": "function",
|
|
1641
|
+
"routePairingStatus": "function",
|
|
1642
|
+
"routeRefusalText": "function",
|
|
1576
1643
|
"ruleAdmitsCommand": "function",
|
|
1644
|
+
"ruleOffersOfRecord": "function",
|
|
1577
1645
|
"ruleSyncVector": "function",
|
|
1578
1646
|
"runCascade": "function",
|
|
1579
1647
|
"runDeveloperTask": "function",
|
|
1580
1648
|
"runExecGate": "function",
|
|
1581
1649
|
"runGoal": "function",
|
|
1582
1650
|
"runMemoryConsolidation": "function",
|
|
1651
|
+
"runMemoryConsolidationDriver": "function",
|
|
1583
1652
|
"runOracle": "function",
|
|
1584
1653
|
"runRepairLoop": "function",
|
|
1585
1654
|
"runScenario": "function",
|
|
@@ -1594,6 +1663,7 @@
|
|
|
1594
1663
|
"sameRuleOwner": "function",
|
|
1595
1664
|
"sameScope": "function",
|
|
1596
1665
|
"sanitizeCcAgentName": "function",
|
|
1666
|
+
"sanitizeLlmGroups": "function",
|
|
1597
1667
|
"sanitizePathComponent": "function",
|
|
1598
1668
|
"sanitizeScope": "function",
|
|
1599
1669
|
"sanitizeUntrustedText": "function",
|
|
@@ -1602,6 +1672,7 @@
|
|
|
1602
1672
|
"scanMemoryFileName": "function",
|
|
1603
1673
|
"scanMemoryWrite": "function",
|
|
1604
1674
|
"scanRemediation": "function",
|
|
1675
|
+
"scheduleUnderFuse": "function",
|
|
1605
1676
|
"scopeCoversCwd": "function",
|
|
1606
1677
|
"scopeDirName": "function",
|
|
1607
1678
|
"screenApproverAttribution": "function",
|