@sema-agent/core 7.15.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.
- package/CHANGELOG.md +202 -0
- package/dist/agents/builtin-agents.d.ts +3 -3
- package/dist/agents/cross-session-envelope.d.ts +0 -1
- package/dist/agents/cross-session-envelope.js +0 -1
- package/dist/agents/peer-notices.d.ts +0 -9
- package/dist/agents/peer-notices.js +0 -63
- package/dist/agents/subagent.js +7 -15
- package/dist/brain/request-params.d.ts +2 -2
- package/dist/config/defaults.d.ts +0 -7
- package/dist/config/defaults.js +0 -2
- package/dist/core/artifact-host.d.ts +218 -0
- package/dist/core/artifact-host.js +92 -0
- package/dist/core/ask-origin.d.ts +29 -3
- package/dist/core/ask-origin.js +17 -9
- package/dist/core/ask-question.d.ts +25 -0
- package/dist/core/ask-question.js +4 -0
- package/dist/core/ask-unresolvable-notice.d.ts +30 -21
- package/dist/core/ask-unresolvable-notice.js +16 -8
- package/dist/core/auto-compaction.d.ts +10 -10
- package/dist/core/auto-mode-arming.d.ts +2 -2
- package/dist/core/background-agent-store.d.ts +5 -5
- package/dist/core/background-shell.d.ts +1 -1
- package/dist/core/checkpoint-execution-record.d.ts +0 -3
- package/dist/core/checkpoint-execution-record.js +0 -4
- package/dist/core/checkpoint-store.d.ts +71 -99
- package/dist/core/checkpoint-store.js +9 -16
- package/dist/core/context-edit.d.ts +36 -104
- package/dist/core/context-edit.js +37 -60
- package/dist/core/effective-path-target.d.ts +68 -8
- package/dist/core/effective-path-target.js +42 -30
- package/dist/core/engine-notice.d.ts +46 -32
- package/dist/core/env-budget.d.ts +31 -0
- package/dist/core/env-budget.js +39 -0
- package/dist/core/exec-output-tail.d.ts +5 -5
- package/dist/core/file-history-store.js +3 -6
- package/dist/core/fs-write-gate-policy.d.ts +1 -1
- package/dist/core/fs-write-gate-policy.js +3 -3
- package/dist/core/gate-lanes.js +9 -15
- package/dist/core/governance-codes.d.ts +1 -1
- package/dist/core/governance-codes.js +4 -0
- package/dist/core/hands-band.d.ts +1 -1
- package/dist/core/hooks.d.ts +18 -17
- package/dist/core/lsp-session.d.ts +1 -1
- package/dist/core/lsp.d.ts +1 -1
- package/dist/core/lsp.js +5 -4
- package/dist/core/mcp.d.ts +5 -5
- package/dist/core/mcp.js +4 -48
- package/dist/core/memory-engine/delegation-settlement.d.ts +37 -12
- package/dist/core/memory-engine/delegation-settlement.js +128 -39
- package/dist/core/memory-engine/engine.d.ts +9 -8
- package/dist/core/memory-engine/engine.js +115 -120
- package/dist/core/memory-engine/file-backend.d.ts +17 -5
- package/dist/core/memory-engine/file-backend.js +78 -34
- package/dist/core/memory-engine/index.d.ts +2 -2
- package/dist/core/memory-engine/index.js +2 -2
- package/dist/core/memory-engine/layout.d.ts +152 -54
- package/dist/core/memory-engine/layout.js +441 -104
- package/dist/core/memory-engine/types.d.ts +8 -3
- package/dist/core/memory-engine/types.js +5 -0
- package/dist/core/memory-recall.d.ts +0 -8
- package/dist/core/memory.d.ts +1 -1
- package/dist/core/oracle-isolation.js +2 -2
- package/dist/core/parent-spec-seat.d.ts +66 -0
- package/dist/core/parent-spec-seat.js +47 -0
- package/dist/core/permission-rule-model.d.ts +11 -6
- package/dist/core/permission-rule-model.js +53 -37
- package/dist/core/permission-rules.js +8 -3
- package/dist/core/protocol-naming.d.ts +2 -2
- package/dist/core/remote-env.d.ts +1 -1
- package/dist/core/retired-keys.d.ts +19 -0
- package/dist/core/retired-keys.js +15 -0
- package/dist/core/runner/abort-race.d.ts +3 -3
- package/dist/core/runner/active-skill-scope.d.ts +2 -2
- package/dist/core/runner/active-skill-scope.js +3 -3
- package/dist/core/runner/assemble-result.d.ts +42 -40
- package/dist/core/runner/assemble-result.js +5 -4
- package/dist/core/runner/checkpoint-scope.d.ts +4 -4
- package/dist/core/runner/clock-and-limits.d.ts +3 -3
- package/dist/core/runner/compaction-call-options.d.ts +35 -99
- package/dist/core/runner/compaction-knobs.d.ts +4 -4
- package/dist/core/runner/compaction-seams.d.ts +5 -5
- package/dist/core/runner/contracts.d.ts +232 -233
- package/dist/core/runner/decide-continuation.d.ts +6 -6
- package/dist/core/runner/denial-limit-arms.d.ts +8 -8
- package/dist/core/runner/derived-route-fallback.d.ts +2 -2
- package/dist/core/runner/gate-exit.d.ts +6 -6
- package/dist/core/runner/gate-exit.js +15 -1
- package/dist/core/runner/git-status-frame.d.ts +7 -7
- package/dist/core/runner/halt-attribution.d.ts +35 -0
- package/dist/core/runner/halt-attribution.js +16 -0
- package/dist/core/runner/inherited-ask-grants.d.ts +6 -6
- package/dist/core/runner/memory-capture-optout.d.ts +1 -1
- package/dist/core/runner/memory-consolidation-driver.d.ts +4 -4
- package/dist/core/runner/memory-consolidation.d.ts +6 -8
- package/dist/core/runner/memory-consolidation.js +0 -1
- package/dist/core/runner/park-commit.d.ts +6 -6
- package/dist/core/runner/permission-rule-lanes.d.ts +19 -19
- package/dist/core/runner/prepare-acquire-reconcile.d.ts +4 -4
- package/dist/core/runner/prepare-artifact.d.ts +53 -0
- package/dist/core/runner/prepare-artifact.js +77 -0
- package/dist/core/runner/prepare-ask-lane.d.ts +3 -3
- package/dist/core/runner/prepare-boundary-parks.d.ts +3 -3
- package/dist/core/runner/prepare-caps-and-workflow.d.ts +9 -7
- package/dist/core/runner/prepare-caps-and-workflow.js +2 -3
- package/dist/core/runner/prepare-config-doors.d.ts +24 -24
- package/dist/core/runner/prepare-config-doors.js +5 -2
- package/dist/core/runner/prepare-context-lane.d.ts +8 -8
- package/dist/core/runner/prepare-context-lane.js +2 -13
- package/dist/core/runner/prepare-defer-classify.d.ts +2 -2
- package/dist/core/runner/prepare-delegation-surface.d.ts +1 -1
- package/dist/core/runner/prepare-file-history.d.ts +3 -3
- package/dist/core/runner/prepare-file-history.js +3 -52
- package/dist/core/runner/prepare-gate-stations.d.ts +5 -5
- package/dist/core/runner/prepare-hands-readface.d.ts +35 -38
- package/dist/core/runner/prepare-hands-readface.js +3 -2
- package/dist/core/runner/prepare-inherited-gate.d.ts +9 -6
- package/dist/core/runner/prepare-inherited-gate.js +7 -8
- package/dist/core/runner/prepare-listings.d.ts +3 -3
- package/dist/core/runner/prepare-lsp.d.ts +3 -3
- package/dist/core/runner/prepare-memory-engine-session.d.ts +5 -5
- package/dist/core/runner/prepare-memory.d.ts +4 -6
- package/dist/core/runner/prepare-memory.js +10 -9
- package/dist/core/runner/prepare-offload-wrappers.d.ts +2 -2
- package/dist/core/runner/prepare-park-ask.d.ts +6 -6
- package/dist/core/runner/prepare-policy-chain.d.ts +7 -7
- package/dist/core/runner/prepare-policy-chain.js +15 -30
- package/dist/core/runner/prepare-prompt-assembly.js +1 -1
- package/dist/core/runner/prepare-prompt-inputs.d.ts +5 -5
- package/dist/core/runner/prepare-protocol-tools.d.ts +1 -1
- package/dist/core/runner/prepare-question-face.d.ts +4 -4
- package/dist/core/runner/prepare-run-refs.d.ts +11 -11
- package/dist/core/runner/prepare-safety-scan.d.ts +2 -2
- package/dist/core/runner/prepare-suspend-saga.d.ts +4 -4
- package/dist/core/runner/prepare-suspend-saga.js +0 -2
- package/dist/core/runner/prepare-task.d.ts +12 -12
- package/dist/core/runner/prepare-task.js +10 -9
- package/dist/core/runner/prepare-tool-disclosure-mount.d.ts +2 -3
- package/dist/core/runner/prepare-wiring-manifest.d.ts +4 -4
- package/dist/core/runner/prepare-wiring-manifest.js +9 -7
- package/dist/core/runner/prepare-workspace-restore.d.ts +1 -1
- package/dist/core/runner/remote-env-retry.d.ts +3 -3
- package/dist/core/runner/resume-admission.d.ts +1 -1
- package/dist/core/runner/resume-admission.js +2 -1
- package/dist/core/runner/resume-claim.d.ts +1 -1
- package/dist/core/runner/resume-internals-and-config.d.ts +1 -1
- package/dist/core/runner/resume-internals-and-config.js +4 -0
- package/dist/core/runner/resume-policy-outcome.d.ts +1 -1
- package/dist/core/runner/resume-preflight.d.ts +1 -1
- package/dist/core/runner/resume-review-outcome.d.ts +1 -1
- package/dist/core/runner/retired-runner-deps.d.ts +3 -0
- package/dist/core/runner/retired-runner-deps.js +7 -0
- package/dist/core/runner/run-brain-sinks.d.ts +1 -1
- package/dist/core/runner/run-clock-and-content.d.ts +4 -4
- package/dist/core/runner/run-compaction-machinery.d.ts +3 -3
- package/dist/core/runner/run-git-lane.d.ts +1 -1
- package/dist/core/runner/run-harness-handlers.d.ts +2 -2
- package/dist/core/runner/run-harness-handlers.js +2 -3
- package/dist/core/runner/run-identity-wiring.d.ts +4 -4
- package/dist/core/runner/run-leg.d.ts +3 -3
- package/dist/core/runner/run-notification-lane.d.ts +2 -2
- package/dist/core/runner/run-reasoning-seat.d.ts +2 -2
- package/dist/core/runner/run-settle-and-teardown.d.ts +5 -5
- package/dist/core/runner/run-settle-and-teardown.js +3 -1
- package/dist/core/runner/run-telemetry-and-budget-seats.d.ts +2 -2
- package/dist/core/runner/run-terminal-adoption.d.ts +5 -5
- package/dist/core/runner/runtask.d.ts +14 -14
- package/dist/core/runner/session-file-state-replay.d.ts +3 -3
- package/dist/core/runner/session-file-state-replay.js +3 -3
- package/dist/core/runner/session-rule-policy.d.ts +2 -2
- package/dist/core/runner/session-rule-policy.js +3 -4
- package/dist/core/runner/steer-admission.d.ts +2 -2
- package/dist/core/runner/stream-halt-verbs.d.ts +1 -1
- package/dist/core/runner/stream-halt-verbs.js +1 -1
- package/dist/core/runner/stream-reap.d.ts +1 -1
- package/dist/core/runner/stream-steer-verb.js +1 -4
- package/dist/core/runner/synthetic-tools.d.ts +8 -8
- package/dist/core/runner/teardown-bounded.d.ts +2 -2
- package/dist/core/runner/tool-defer-gate.d.ts +1 -1
- package/dist/core/runner/tool-disclosure.d.ts +33 -33
- package/dist/core/runner/tool-end-body.d.ts +3 -3
- package/dist/core/runner/tool-face-overlay.d.ts +2 -2
- package/dist/core/runner/tool-output-projection.d.ts +2 -2
- package/dist/core/runner/turn-attachments.d.ts +53 -53
- package/dist/core/runner/usage-accounting.d.ts +4 -4
- package/dist/core/runner/workspace-path.d.ts +1 -1
- package/dist/core/runner/workspace-path.js +3 -0
- package/dist/core/runner-deps.d.ts +30 -49
- package/dist/core/safe-notify.d.ts +1 -1
- package/dist/core/sensitive-path-policy.d.ts +1 -1
- package/dist/core/sensitive-path-policy.js +4 -4
- package/dist/core/session.d.ts +2 -2
- package/dist/core/skill-tool-specifier.d.ts +1 -1
- package/dist/core/skills-directory.d.ts +1 -1
- package/dist/core/store-contracts/checkpoint-store-contract.js +1 -1
- package/dist/core/strategy-store.d.ts +8 -11
- package/dist/core/task-event.d.ts +20 -17
- package/dist/core/task-limits.d.ts +1 -1
- package/dist/core/task-notification.d.ts +5 -5
- package/dist/core/task-registry-agent.d.ts +5 -5
- package/dist/core/task-registry-monitor.d.ts +2 -2
- package/dist/core/task-registry-shared.d.ts +27 -27
- package/dist/core/task-registry-shared.js +3 -13
- package/dist/core/task-registry.d.ts +8 -8
- package/dist/core/task-result.d.ts +37 -37
- package/dist/core/task-spec.d.ts +5 -5
- package/dist/core/task-stream.d.ts +16 -11
- package/dist/core/tool-catalog-entries.d.ts +1 -0
- package/dist/core/tool-catalog-entries.js +5 -0
- package/dist/core/tool-conformance.d.ts +0 -2
- package/dist/core/tool-conformance.js +1 -3
- package/dist/core/tool-errors.d.ts +5 -0
- package/dist/core/tool-errors.js +1 -0
- package/dist/core/tool-policy.d.ts +51 -22
- package/dist/core/tool-policy.js +28 -5
- package/dist/core/tool-result-budget.d.ts +1 -1
- package/dist/core/tool-result-store.d.ts +11 -11
- package/dist/core/tool-spec.d.ts +34 -38
- package/dist/core/tools.d.ts +2 -2
- package/dist/core/trace.d.ts +12 -15
- package/dist/core/untrusted-text.d.ts +1 -1
- package/dist/core/wiring-manifest.d.ts +4 -3
- package/dist/core/workflow-journal-store.d.ts +11 -11
- package/dist/engine/execution-env/node-execution-env.d.ts +3 -2
- package/dist/engine/execution-env/node-execution-env.js +4 -2
- package/dist/engine/harness/agent-harness.d.ts +47 -4
- package/dist/engine/harness/agent-harness.js +52 -9
- package/dist/engine/llm/types.d.ts +1 -1
- package/dist/engine/loop/agent-loop.js +15 -8
- package/dist/engine/loop/types.d.ts +5 -0
- package/dist/index.d.ts +21 -16
- package/dist/index.js +17 -12
- package/dist/internal/harness.d.ts +1 -0
- package/dist/orchestration/run-spec.d.ts +3 -0
- package/dist/orchestration/run-spec.js +3 -3
- package/dist/orchestration/run-workflow-tool.d.ts +12 -6
- package/dist/orchestration/run-workflow-tool.js +23 -5
- package/dist/orchestration/workflow-primitives.d.ts +4 -2
- package/dist/orchestration/workflow-primitives.js +1 -4
- package/dist/orchestration/workflow-types.d.ts +34 -4
- package/dist/orchestration/workflow-types.js +2 -0
- package/dist/orchestration/workflow.d.ts +39 -7
- package/dist/orchestration/workflow.js +234 -113
- package/dist/prompt-assembly/assemble.d.ts +2 -2
- package/dist/prompt-assembly/assemble.js +9 -9
- package/dist/prompt-assembly/composer.d.ts +6 -7
- package/dist/prompt-assembly/composer.js +10 -10
- package/dist/prompt-assembly/epoch.js +1 -1
- package/dist/prompt-assembly/event-registry.d.ts +0 -21
- package/dist/prompt-assembly/packs/sema-default.js +30 -30
- package/dist/prompt-assembly/types.d.ts +14 -14
- package/dist/prompts/coordinator.d.ts +0 -13
- package/dist/prompts/coordinator.js +0 -3
- package/dist/stores/file/checkpoint-store.js +1 -5
- package/dist/stores/file/file-history-store.js +2 -2
- package/dist/stores/file/permission-rule-store.d.ts +4 -35
- package/dist/stores/file/permission-rule-store.js +4 -148
- package/dist/tools/artifact/artifact-text.d.ts +62 -0
- package/dist/tools/artifact/artifact-text.js +68 -0
- package/dist/tools/artifact/artifact-tool.d.ts +52 -0
- package/dist/tools/artifact/artifact-tool.js +351 -0
- package/dist/tools/artifact/local-stub.d.ts +26 -0
- package/dist/tools/artifact/local-stub.js +296 -0
- package/dist/tools/fs/bash-readonly-classifier.d.ts +114 -48
- package/dist/tools/fs/bash-readonly-classifier.js +171 -60
- package/dist/tools/fs/encoding.d.ts +31 -40
- package/dist/tools/fs/fs-bash.d.ts +49 -45
- package/dist/tools/fs/fs-bash.js +19 -27
- package/dist/tools/fs/fs-pdf.d.ts +8 -8
- package/dist/tools/fs/fs-search-tools.d.ts +4 -4
- package/dist/tools/fs/fs-search-tools.js +5 -2
- package/dist/tools/fs/fs-shared.d.ts +146 -158
- package/dist/tools/fs/fs-shared.js +3 -11
- package/dist/tools/fs/fs-write.d.ts +8 -8
- package/dist/tools/fs/gh-rate-limit.d.ts +13 -14
- package/dist/tools/fs/index.d.ts +78 -78
- package/dist/tools/fs/index.js +4 -1
- package/dist/tools/fs/notebook.d.ts +24 -25
- package/dist/tools/fs/pdf.d.ts +3 -3
- package/dist/tools/fs/read-deny.d.ts +22 -22
- package/dist/tools/fs/read-face.d.ts +21 -24
- package/dist/tools/fs/repo-map.d.ts +8 -8
- package/dist/tools/fs/safety.d.ts +233 -130
- package/dist/tools/fs/safety.js +131 -31
- package/dist/tools/fs/search.d.ts +63 -71
- package/dist/tools/fs/search.js +8 -6
- package/package.json +6 -2
- package/test/export-surface.snapshot.json +119 -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":
|
|
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,12 +1913,12 @@
|
|
|
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",
|
|
1886
1919
|
"isIsolated": "function",
|
|
1887
1920
|
"isModelGatedForClass": "function",
|
|
1921
|
+
"isModelPriced": "function",
|
|
1888
1922
|
"isNamespacedCoveringRuleName": "function",
|
|
1889
1923
|
"isPeerDeliveryReceiptState": "function",
|
|
1890
1924
|
"isPeerIdleNoticeKind": "function",
|
|
@@ -1933,6 +1967,7 @@
|
|
|
1933
1967
|
"listWorkflowRuns": "function",
|
|
1934
1968
|
"llmPlanDistiller": "function",
|
|
1935
1969
|
"loadOrchestrationEnv": "function",
|
|
1970
|
+
"localArtifactStub": "function",
|
|
1936
1971
|
"looksDegenerate": "function",
|
|
1937
1972
|
"lookupProjectIdHint": "function",
|
|
1938
1973
|
"loosenReasons": "function",
|
|
@@ -1951,6 +1986,7 @@
|
|
|
1951
1986
|
"materializeMcpTools": "function",
|
|
1952
1987
|
"maybeCompact": "function",
|
|
1953
1988
|
"mcpInjectionDroppedNotice": "function",
|
|
1989
|
+
"mediaTypeOf": "function",
|
|
1954
1990
|
"memoryBackendContract": "function",
|
|
1955
1991
|
"memoryCaptureOptOutUnpersistedNotice": "function",
|
|
1956
1992
|
"memoryCaptureOptedOutNotice": "function",
|
|
@@ -1987,6 +2023,7 @@
|
|
|
1987
2023
|
"normalizePeerName": "function",
|
|
1988
2024
|
"normalizePersistedRuleHit": "function",
|
|
1989
2025
|
"normalizePromptEpoch": "function",
|
|
2026
|
+
"normalizePublishedPath": "function",
|
|
1990
2027
|
"normalizeRules": "function",
|
|
1991
2028
|
"normalizeToolResultProvenance": "function",
|
|
1992
2029
|
"noticeAudienceOf": "function",
|
|
@@ -1997,6 +2034,7 @@
|
|
|
1997
2034
|
"orgRuleVerdictFor": "function",
|
|
1998
2035
|
"originEquals": "function",
|
|
1999
2036
|
"oversizeJournalResult": "function",
|
|
2037
|
+
"parentSpecSeatOf": "function",
|
|
2000
2038
|
"parkedToolIdentity": "function",
|
|
2001
2039
|
"parseAutoModeResponse": "function",
|
|
2002
2040
|
"parseCrossSessionEnvelope": "function",
|
|
@@ -2016,6 +2054,8 @@
|
|
|
2016
2054
|
"parseTeacherAdvice": "function",
|
|
2017
2055
|
"parseWorkflowMeta": "function",
|
|
2018
2056
|
"pathConfinableWriteToolNames": "function",
|
|
2057
|
+
"pathFamilyOf": "function",
|
|
2058
|
+
"pathIdentityOf": "function",
|
|
2019
2059
|
"pathRuleReachOf": "function",
|
|
2020
2060
|
"pathTargetBaseOf": "function",
|
|
2021
2061
|
"pathTargetOf": "function",
|
|
@@ -2028,16 +2068,13 @@
|
|
|
2028
2068
|
"peekMemoryAnnouncements": "function",
|
|
2029
2069
|
"peerAdmissionFor": "function",
|
|
2030
2070
|
"peerAxisToken": "function",
|
|
2031
|
-
"peerDeliveryReceiptLabel": "function",
|
|
2032
2071
|
"peerHeldQueueFor": "function",
|
|
2033
2072
|
"peerHeldQueueIfAny": "function",
|
|
2034
2073
|
"peerHeldQueueKey": "function",
|
|
2035
|
-
"peerIdleDetailOf": "function",
|
|
2036
2074
|
"peerIdleMachineFor": "function",
|
|
2037
2075
|
"peerIdleMachineIfAny": "function",
|
|
2038
2076
|
"peerIdleMachineKey": "function",
|
|
2039
2077
|
"peerIdleNoticeLabel": "function",
|
|
2040
|
-
"peerIdleNoticeSummary": "function",
|
|
2041
2078
|
"peerRecipientSuffix": "function",
|
|
2042
2079
|
"peerSendVerdictSeverity": "function",
|
|
2043
2080
|
"peerSessionBoxHandle": "function",
|
|
@@ -2063,6 +2100,7 @@
|
|
|
2063
2100
|
"queryBackgroundAgents": "function",
|
|
2064
2101
|
"rankOf": "function",
|
|
2065
2102
|
"readAdoptionStatus": "function",
|
|
2103
|
+
"readArtifactHostCapabilities": "function",
|
|
2066
2104
|
"readCcSidecarMessages": "function",
|
|
2067
2105
|
"readCcSidecarTranscript": "function",
|
|
2068
2106
|
"readConsolidationDriverRun": "function",
|
|
@@ -2282,6 +2320,7 @@
|
|
|
2282
2320
|
"warmResume": "function",
|
|
2283
2321
|
"webFetchToolSpec": "function",
|
|
2284
2322
|
"wildcardMatch": "function",
|
|
2323
|
+
"win32NamespaceScreen": "function",
|
|
2285
2324
|
"winnerFromOutcome": "function",
|
|
2286
2325
|
"withCcLock": "function",
|
|
2287
2326
|
"withRetry": "function",
|
|
@@ -2293,6 +2332,7 @@
|
|
|
2293
2332
|
"workflowWhenToUseText": "function",
|
|
2294
2333
|
"workflowsCapability": "function",
|
|
2295
2334
|
"worldStillMatchesMint": "function",
|
|
2335
|
+
"writableRootOf": "function",
|
|
2296
2336
|
"writeRootAdoptionFile": "function",
|
|
2297
2337
|
"writeThenLink": "function",
|
|
2298
2338
|
"writerOf": "function"
|
|
@@ -2317,7 +2357,17 @@
|
|
|
2317
2357
|
"ANNOUNCEMENTS_FILE": "advanced",
|
|
2318
2358
|
"APPROVAL_CARD_REQUIRED_KEYS": "internal",
|
|
2319
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",
|
|
2320
2366
|
"ARTIFACT_LIMITS": "advanced",
|
|
2367
|
+
"ARTIFACT_LIST_SCOPES": "advanced",
|
|
2368
|
+
"ARTIFACT_PLANES": "advanced",
|
|
2369
|
+
"ARTIFACT_PLANE_CONTENT_ORIGIN": "advanced",
|
|
2370
|
+
"ARTIFACT_PUBLISH_CONTEXTS": "advanced",
|
|
2321
2371
|
"ASK_EVIDENCE_ABSENCE_VALUES": "advanced",
|
|
2322
2372
|
"ASK_ORIGINS": "advanced",
|
|
2323
2373
|
"ASK_USER_QUESTION_TOOL_NAME": "advanced",
|
|
@@ -2361,6 +2411,28 @@
|
|
|
2361
2411
|
"AggregateBudgetOptions": "advanced",
|
|
2362
2412
|
"AnthropicBrainConfig": "advanced",
|
|
2363
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",
|
|
2364
2436
|
"ArtifactVerifyResult": "advanced",
|
|
2365
2437
|
"AskAnswerContinuationSource": "advanced",
|
|
2366
2438
|
"AskCarry": "advanced",
|
|
@@ -2527,7 +2599,6 @@
|
|
|
2527
2599
|
"CompactOutcome": "advanced",
|
|
2528
2600
|
"CompactionWindowSafetyInfo": "advanced",
|
|
2529
2601
|
"CompiledEventPrompt": "advanced",
|
|
2530
|
-
"CompiledMessageInjection": "advanced",
|
|
2531
2602
|
"CompiledSection": "advanced",
|
|
2532
2603
|
"CompleteSimpleFn": "advanced",
|
|
2533
2604
|
"ComplianceCapability": "advanced",
|
|
@@ -2591,7 +2662,6 @@
|
|
|
2591
2662
|
"DEFAULT_CONSOLIDATION_BAND": "internal",
|
|
2592
2663
|
"DEFAULT_CONSOLIDATION_MAX_NOTES": "internal",
|
|
2593
2664
|
"DEFAULT_CONSOLIDATION_SEARCH_LIMIT": "internal",
|
|
2594
|
-
"DEFAULT_CONSOLIDATION_TIMEOUT_SEC": "internal",
|
|
2595
2665
|
"DEFAULT_EFFORT_LEVELS": "advanced",
|
|
2596
2666
|
"DEFAULT_FILE_HISTORY_BOUNDARY_KEEP": "advanced",
|
|
2597
2667
|
"DEFAULT_HARVEST_DEADLINE_MS": "advanced",
|
|
@@ -2643,6 +2713,7 @@
|
|
|
2643
2713
|
"ENGINE_NOTICE_CODES": "advanced",
|
|
2644
2714
|
"ENTER_PLAN_MODE_TOOL_NAME": "advanced",
|
|
2645
2715
|
"ENV_LIFETIME_SUSPEND_MARGIN_MS": "internal",
|
|
2716
|
+
"EVAL_STUB_URL_PREFIX": "advanced",
|
|
2646
2717
|
"EVENT_PROMPT_REGISTRY": "advanced",
|
|
2647
2718
|
"EXECUTION_ENVIRONMENT": "advanced",
|
|
2648
2719
|
"EXECUTION_ENVIRONMENT_OPEN_READS": "advanced",
|
|
@@ -2685,7 +2756,6 @@
|
|
|
2685
2756
|
"ExecutionOutcomeConflictError": "stable",
|
|
2686
2757
|
"ExecutionOutcomeRecordWord": "stable",
|
|
2687
2758
|
"ExecutionRecordRowFacts": "advanced",
|
|
2688
|
-
"ExecutionRecordTableCoversEveryWord": "advanced",
|
|
2689
2759
|
"ExecutionVerdict": "advanced",
|
|
2690
2760
|
"ExplainInput": "advanced",
|
|
2691
2761
|
"ExposedMemoryIndexRow": "advanced",
|
|
@@ -2819,7 +2889,6 @@
|
|
|
2819
2889
|
"InvariantViolation": "advanced",
|
|
2820
2890
|
"JOURNAL_OVERSIZE_ERROR_CODE": "advanced",
|
|
2821
2891
|
"KillProcessTreeOptions": "internal",
|
|
2822
|
-
"LEGACY_PENDING_STEER_INPUT_ID": "advanced",
|
|
2823
2892
|
"LINEAGE_FILE": "advanced",
|
|
2824
2893
|
"LIST_AGENTS_MAX_RESULT_CHARS": "advanced",
|
|
2825
2894
|
"LIST_AGENTS_TOOL_ALIAS": "advanced",
|
|
@@ -2829,6 +2898,8 @@
|
|
|
2829
2898
|
"LLM_DISTILLER_CONTRACT_DL2": "advanced",
|
|
2830
2899
|
"LLM_DISTILLER_CONTRACT_DL3": "advanced",
|
|
2831
2900
|
"LOCAL_OWNER_UNSYNCABLE_CODE": "advanced",
|
|
2901
|
+
"LOCAL_STUB_MAX_FILE_BYTES": "advanced",
|
|
2902
|
+
"LOCAL_STUB_MAX_TOTAL_BYTES": "advanced",
|
|
2832
2903
|
"LOCKED_KEY_REGISTRY": "advanced",
|
|
2833
2904
|
"LOWERING_VERSION": "advanced",
|
|
2834
2905
|
"LSP_FAILURE_BRAND": "advanced",
|
|
@@ -2843,6 +2914,8 @@
|
|
|
2843
2914
|
"LlmConsolidationPlanArm": "advanced",
|
|
2844
2915
|
"LlmConsolidationPlanProduct": "advanced",
|
|
2845
2916
|
"LlmDistillerContract": "advanced",
|
|
2917
|
+
"LocalArtifactStub": "advanced",
|
|
2918
|
+
"LocalArtifactStubOptions": "advanced",
|
|
2846
2919
|
"LockedConfig": "advanced",
|
|
2847
2920
|
"LockedKey": "advanced",
|
|
2848
2921
|
"LoweringRecord": "advanced",
|
|
@@ -3040,8 +3113,6 @@
|
|
|
3040
3113
|
"ORG_STATE_FILE": "advanced",
|
|
3041
3114
|
"ORG_UNAVAILABLE_DECISION_REASON": "advanced",
|
|
3042
3115
|
"ORIGIN_IMPLIES_REAL_APPROVAL": "advanced",
|
|
3043
|
-
"ORPHAN_ADOPT_MAX_DEFAULT": "advanced",
|
|
3044
|
-
"ORPHAN_ADOPT_WINDOW_MS_DEFAULT": "advanced",
|
|
3045
3116
|
"OUTPUT_EFFICIENCY": "advanced",
|
|
3046
3117
|
"OffCapabilityModel": "advanced",
|
|
3047
3118
|
"OnAsk": "advanced",
|
|
@@ -3087,7 +3158,6 @@
|
|
|
3087
3158
|
"PEER_HELD_REVIEW_CAUSES": "advanced",
|
|
3088
3159
|
"PEER_HOP_CHAIN_CARRY_WINDOW": "advanced",
|
|
3089
3160
|
"PEER_HOP_CHAIN_WINDOW": "advanced",
|
|
3090
|
-
"PEER_HOP_TOKEN_HEX": "advanced",
|
|
3091
3161
|
"PEER_IDLE_FIRE_DEBOUNCE_MS": "advanced",
|
|
3092
3162
|
"PEER_IDLE_HELD_BACKOFF_MS": "advanced",
|
|
3093
3163
|
"PEER_IDLE_LABEL_MAX": "advanced",
|
|
@@ -3121,6 +3191,8 @@
|
|
|
3121
3191
|
"PROJECT_MARKER_PATH": "advanced",
|
|
3122
3192
|
"PROTOCOL_TABLE": "advanced",
|
|
3123
3193
|
"PackSectionDeclaration": "advanced",
|
|
3194
|
+
"ParentSpecSeat": "advanced",
|
|
3195
|
+
"ParentSpecSeatFields": "advanced",
|
|
3124
3196
|
"ParkLaneReason": "advanced",
|
|
3125
3197
|
"ParkProbeFinding": "advanced",
|
|
3126
3198
|
"ParkProbeFindingCode": "advanced",
|
|
@@ -3131,8 +3203,12 @@
|
|
|
3131
3203
|
"ParsedRule": "advanced",
|
|
3132
3204
|
"ParsedScopeKey": "advanced",
|
|
3133
3205
|
"PatchReport": "stable",
|
|
3206
|
+
"PathFamily": "advanced",
|
|
3207
|
+
"PathIdentity": "advanced",
|
|
3208
|
+
"PathIdentityReading": "advanced",
|
|
3134
3209
|
"PathRuleBase": "advanced",
|
|
3135
3210
|
"PathRuleBases": "advanced",
|
|
3211
|
+
"PathTargetReading": "advanced",
|
|
3136
3212
|
"PausedCause": "advanced",
|
|
3137
3213
|
"PeerAdmission": "advanced",
|
|
3138
3214
|
"PeerAdmissionConfig": "advanced",
|
|
@@ -3230,7 +3306,6 @@
|
|
|
3230
3306
|
"ProbeCause": "advanced",
|
|
3231
3307
|
"ProbeCauseOperands": "advanced",
|
|
3232
3308
|
"ProcessFingerprint": "advanced",
|
|
3233
|
-
"ProgramRunReach": "advanced",
|
|
3234
3309
|
"ProgramRunReachOutcome": "advanced",
|
|
3235
3310
|
"ProjectMemoryLoad": "advanced",
|
|
3236
3311
|
"PromotedRecord": "advanced",
|
|
@@ -3491,8 +3566,6 @@
|
|
|
3491
3566
|
"SchedulerError": "advanced",
|
|
3492
3567
|
"SchedulerErrorCode": "advanced",
|
|
3493
3568
|
"SchedulerToolContext": "advanced",
|
|
3494
|
-
"ScopedNoteHeader": "advanced",
|
|
3495
|
-
"ScopedNoteRecord": "advanced",
|
|
3496
3569
|
"ScoredMemory": "stable",
|
|
3497
3570
|
"ScoredMemoryEntry": "stable",
|
|
3498
3571
|
"SeamProvenance": "advanced",
|
|
@@ -3610,7 +3683,6 @@
|
|
|
3610
3683
|
"TEACHER_PROFILE": "advanced",
|
|
3611
3684
|
"TEACHER_PROMPT": "advanced",
|
|
3612
3685
|
"TEAMMATE_COMMUNICATION_ADDENDUM": "advanced",
|
|
3613
|
-
"TEAMMATE_TASK_LIST_ADDENDUM": "advanced",
|
|
3614
3686
|
"TEAM_DISCUSSION_SCRIPT": "advanced",
|
|
3615
3687
|
"TEAM_DISCUSSION_WORKFLOW_NAME": "advanced",
|
|
3616
3688
|
"TOKEN_CHECKPOINT_VERSION": "advanced",
|
|
@@ -3757,6 +3829,7 @@
|
|
|
3757
3829
|
"WEBFETCH_SUMMARY_GUIDELINES": "advanced",
|
|
3758
3830
|
"WEBFETCH_SUMMARY_MAX_CONTENT": "advanced",
|
|
3759
3831
|
"WEB_FETCH_TOOL_NAME": "advanced",
|
|
3832
|
+
"WIN32_NAMESPACE_REFUSALS": "advanced",
|
|
3760
3833
|
"WORKFLOW_AGENT_MAX_RETRIES": "advanced",
|
|
3761
3834
|
"WORKFLOW_AGENT_PARKED_ERROR_CODE": "advanced",
|
|
3762
3835
|
"WORKFLOW_AGENT_STALL_MS": "advanced",
|
|
@@ -3770,6 +3843,7 @@
|
|
|
3770
3843
|
"WRITE_PROTECTED_DEFAULT_TABLE": "advanced",
|
|
3771
3844
|
"WebFetchConfig": "advanced",
|
|
3772
3845
|
"WebSearchConfig": "advanced",
|
|
3846
|
+
"Win32NamespaceRefusal": "advanced",
|
|
3773
3847
|
"WiringFacts": "advanced",
|
|
3774
3848
|
"WiringLegKind": "advanced",
|
|
3775
3849
|
"WiringManifest": "stable",
|
|
@@ -3848,8 +3922,10 @@
|
|
|
3848
3922
|
"appendPendingSteer": "stable",
|
|
3849
3923
|
"applyFileRestoreViaEnv": "advanced",
|
|
3850
3924
|
"applyMcpToolFaces": "internal",
|
|
3925
|
+
"applyParentSpecSeat": "advanced",
|
|
3851
3926
|
"applyTombstones": "advanced",
|
|
3852
3927
|
"archiveDistillerPlan": "advanced",
|
|
3928
|
+
"artifactAttemptId": "advanced",
|
|
3853
3929
|
"artifactDeclarations": "advanced",
|
|
3854
3930
|
"askUnresolvableNotice": "advanced",
|
|
3855
3931
|
"assembleCodeTools": "advanced",
|
|
@@ -3971,6 +4047,7 @@
|
|
|
3971
4047
|
"createAllowDenyPolicy": "advanced",
|
|
3972
4048
|
"createAnthropicBrain": "stable",
|
|
3973
4049
|
"createApprovalPolicy": "stable",
|
|
4050
|
+
"createArtifactTool": "advanced",
|
|
3974
4051
|
"createAskUserQuestionTool": "advanced",
|
|
3975
4052
|
"createAssistantMessageEventStream": "stable",
|
|
3976
4053
|
"createAutoModeDecider": "advanced",
|
|
@@ -4061,12 +4138,10 @@
|
|
|
4061
4138
|
"describeConfigCatalog": "advanced",
|
|
4062
4139
|
"describeCrossSessionHoldCause": "advanced",
|
|
4063
4140
|
"describeDefaultPack": "advanced",
|
|
4064
|
-
"describePeerDeliveryReceipt": "advanced",
|
|
4065
4141
|
"describePeerDropReasons": "advanced",
|
|
4066
4142
|
"describePeerIdleSubscription": "advanced",
|
|
4067
4143
|
"describeStaticWiring": "stable",
|
|
4068
4144
|
"describeToolCatalog": "advanced",
|
|
4069
|
-
"describeToolConformanceVectors": "advanced",
|
|
4070
4145
|
"detectCleanArmVerbatimLeak": "advanced",
|
|
4071
4146
|
"detectSecret": "advanced",
|
|
4072
4147
|
"devWorkflowScriptRunner": "stable",
|
|
@@ -4110,9 +4185,7 @@
|
|
|
4110
4185
|
"fileHistoryBoundariesToKeep": "advanced",
|
|
4111
4186
|
"fileHistoryDescribeTrackKey": "advanced",
|
|
4112
4187
|
"fileHistoryExportDigest": "advanced",
|
|
4113
|
-
"fileHistoryKeyFamilyOf": "advanced",
|
|
4114
4188
|
"fileHistoryModeProvenDifferent": "advanced",
|
|
4115
|
-
"fileHistoryPreviewFileDelta": "advanced",
|
|
4116
4189
|
"fileHistoryResolveTrackKey": "advanced",
|
|
4117
4190
|
"fileHistoryStoreContract": "advanced",
|
|
4118
4191
|
"fileHistoryTrackKeyOf": "advanced",
|
|
@@ -4164,6 +4237,7 @@
|
|
|
4164
4237
|
"inlineUntrusted": "advanced",
|
|
4165
4238
|
"inputKeysOf": "advanced",
|
|
4166
4239
|
"inspectDegenerate": "advanced",
|
|
4240
|
+
"isAbsoluteForFamily": "advanced",
|
|
4167
4241
|
"isAliasModelId": "advanced",
|
|
4168
4242
|
"isAskOrigin": "advanced",
|
|
4169
4243
|
"isAutoModeDenySource": "advanced",
|
|
@@ -4174,12 +4248,12 @@
|
|
|
4174
4248
|
"isDeclaredWrite": "advanced",
|
|
4175
4249
|
"isDelegatedAgentTerminal": "advanced",
|
|
4176
4250
|
"isDeniedBy": "advanced",
|
|
4177
|
-
"isExecutionOutcomeRecordWord": "advanced",
|
|
4178
4251
|
"isFullyReadable": "advanced",
|
|
4179
4252
|
"isGateKind": "advanced",
|
|
4180
4253
|
"isInstructionEntry": "advanced",
|
|
4181
4254
|
"isIsolated": "advanced",
|
|
4182
4255
|
"isModelGatedForClass": "advanced",
|
|
4256
|
+
"isModelPriced": "advanced",
|
|
4183
4257
|
"isNamespacedCoveringRuleName": "advanced",
|
|
4184
4258
|
"isPeerDeliveryReceiptState": "advanced",
|
|
4185
4259
|
"isPeerIdleNoticeKind": "advanced",
|
|
@@ -4228,6 +4302,7 @@
|
|
|
4228
4302
|
"listWorkflowRuns": "advanced",
|
|
4229
4303
|
"llmPlanDistiller": "advanced",
|
|
4230
4304
|
"loadOrchestrationEnv": "advanced",
|
|
4305
|
+
"localArtifactStub": "advanced",
|
|
4231
4306
|
"looksDegenerate": "advanced",
|
|
4232
4307
|
"lookupProjectIdHint": "advanced",
|
|
4233
4308
|
"loosenReasons": "advanced",
|
|
@@ -4246,6 +4321,7 @@
|
|
|
4246
4321
|
"materializeMcpTools": "stable",
|
|
4247
4322
|
"maybeCompact": "advanced",
|
|
4248
4323
|
"mcpInjectionDroppedNotice": "advanced",
|
|
4324
|
+
"mediaTypeOf": "advanced",
|
|
4249
4325
|
"memoryBackendContract": "stable",
|
|
4250
4326
|
"memoryCaptureOptOutUnpersistedNotice": "advanced",
|
|
4251
4327
|
"memoryCaptureOptedOutNotice": "advanced",
|
|
@@ -4282,6 +4358,7 @@
|
|
|
4282
4358
|
"normalizePeerName": "advanced",
|
|
4283
4359
|
"normalizePersistedRuleHit": "advanced",
|
|
4284
4360
|
"normalizePromptEpoch": "advanced",
|
|
4361
|
+
"normalizePublishedPath": "advanced",
|
|
4285
4362
|
"normalizeRules": "advanced",
|
|
4286
4363
|
"normalizeToolResultProvenance": "advanced",
|
|
4287
4364
|
"noticeAudienceOf": "advanced",
|
|
@@ -4292,6 +4369,7 @@
|
|
|
4292
4369
|
"orgRuleVerdictFor": "advanced",
|
|
4293
4370
|
"originEquals": "stable",
|
|
4294
4371
|
"oversizeJournalResult": "advanced",
|
|
4372
|
+
"parentSpecSeatOf": "advanced",
|
|
4295
4373
|
"parkedToolIdentity": "advanced",
|
|
4296
4374
|
"parseAutoModeResponse": "advanced",
|
|
4297
4375
|
"parseCrossSessionEnvelope": "advanced",
|
|
@@ -4311,6 +4389,8 @@
|
|
|
4311
4389
|
"parseTeacherAdvice": "advanced",
|
|
4312
4390
|
"parseWorkflowMeta": "advanced",
|
|
4313
4391
|
"pathConfinableWriteToolNames": "advanced",
|
|
4392
|
+
"pathFamilyOf": "advanced",
|
|
4393
|
+
"pathIdentityOf": "advanced",
|
|
4314
4394
|
"pathRuleReachOf": "advanced",
|
|
4315
4395
|
"pathTargetBaseOf": "advanced",
|
|
4316
4396
|
"pathTargetOf": "advanced",
|
|
@@ -4323,16 +4403,13 @@
|
|
|
4323
4403
|
"peekMemoryAnnouncements": "advanced",
|
|
4324
4404
|
"peerAdmissionFor": "advanced",
|
|
4325
4405
|
"peerAxisToken": "advanced",
|
|
4326
|
-
"peerDeliveryReceiptLabel": "advanced",
|
|
4327
4406
|
"peerHeldQueueFor": "advanced",
|
|
4328
4407
|
"peerHeldQueueIfAny": "advanced",
|
|
4329
4408
|
"peerHeldQueueKey": "advanced",
|
|
4330
|
-
"peerIdleDetailOf": "advanced",
|
|
4331
4409
|
"peerIdleMachineFor": "advanced",
|
|
4332
4410
|
"peerIdleMachineIfAny": "advanced",
|
|
4333
4411
|
"peerIdleMachineKey": "advanced",
|
|
4334
4412
|
"peerIdleNoticeLabel": "advanced",
|
|
4335
|
-
"peerIdleNoticeSummary": "advanced",
|
|
4336
4413
|
"peerRecipientSuffix": "advanced",
|
|
4337
4414
|
"peerSendVerdictSeverity": "advanced",
|
|
4338
4415
|
"peerSessionBoxHandle": "advanced",
|
|
@@ -4358,6 +4435,7 @@
|
|
|
4358
4435
|
"queryBackgroundAgents": "advanced",
|
|
4359
4436
|
"rankOf": "advanced",
|
|
4360
4437
|
"readAdoptionStatus": "advanced",
|
|
4438
|
+
"readArtifactHostCapabilities": "advanced",
|
|
4361
4439
|
"readCcSidecarMessages": "advanced",
|
|
4362
4440
|
"readCcSidecarTranscript": "advanced",
|
|
4363
4441
|
"readConsolidationDriverRun": "advanced",
|
|
@@ -4577,6 +4655,7 @@
|
|
|
4577
4655
|
"warmResume": "advanced",
|
|
4578
4656
|
"webFetchToolSpec": "advanced",
|
|
4579
4657
|
"wildcardMatch": "advanced",
|
|
4658
|
+
"win32NamespaceScreen": "advanced",
|
|
4580
4659
|
"winnerFromOutcome": "stable",
|
|
4581
4660
|
"withCcLock": "advanced",
|
|
4582
4661
|
"withRetry": "advanced",
|
|
@@ -4588,6 +4667,7 @@
|
|
|
4588
4667
|
"workflowWhenToUseText": "advanced",
|
|
4589
4668
|
"workflowsCapability": "advanced",
|
|
4590
4669
|
"worldStillMatchesMint": "advanced",
|
|
4670
|
+
"writableRootOf": "advanced",
|
|
4591
4671
|
"writeRootAdoptionFile": "advanced",
|
|
4592
4672
|
"writeThenLink": "advanced",
|
|
4593
4673
|
"writerOf": "advanced"
|