@sema-agent/core 7.16.0 → 7.17.1
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 +209 -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 +2 -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/engine.js +2 -1
- package/dist/core/memory-engine/layout.d.ts +18 -6
- package/dist/core/memory-engine/layout.js +40 -21
- 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/physical-path.d.ts +37 -0
- package/dist/core/physical-path.js +30 -0
- 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/active-skill-scope.js +3 -3
- package/dist/core/runner/assemble-result.d.ts +15 -13
- package/dist/core/runner/assemble-result.js +5 -4
- package/dist/core/runner/compaction-call-options.d.ts +25 -89
- package/dist/core/runner/contracts.d.ts +11 -10
- package/dist/core/runner/gate-exit.js +15 -1
- package/dist/core/runner/halt-attribution.d.ts +35 -0
- package/dist/core/runner/halt-attribution.js +16 -0
- package/dist/core/runner/memory-consolidation.d.ts +0 -2
- package/dist/core/runner/memory-consolidation.js +0 -1
- package/dist/core/runner/prepare-artifact.d.ts +52 -0
- package/dist/core/runner/prepare-artifact.js +63 -0
- package/dist/core/runner/prepare-caps-and-workflow.d.ts +4 -2
- package/dist/core/runner/prepare-caps-and-workflow.js +2 -3
- package/dist/core/runner/prepare-config-doors.d.ts +3 -3
- package/dist/core/runner/prepare-config-doors.js +5 -2
- package/dist/core/runner/prepare-context-lane.d.ts +2 -2
- package/dist/core/runner/prepare-context-lane.js +2 -13
- package/dist/core/runner/prepare-file-history.d.ts +1 -1
- package/dist/core/runner/prepare-file-history.js +3 -52
- package/dist/core/runner/prepare-hands-readface.d.ts +4 -7
- package/dist/core/runner/prepare-hands-readface.js +3 -2
- package/dist/core/runner/prepare-inherited-gate.d.ts +5 -2
- package/dist/core/runner/prepare-inherited-gate.js +7 -8
- package/dist/core/runner/prepare-memory.d.ts +4 -6
- package/dist/core/runner/prepare-memory.js +4 -2
- package/dist/core/runner/prepare-policy-chain.d.ts +3 -3
- 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-question-face.js +2 -1
- package/dist/core/runner/prepare-safety-scan.d.ts +1 -1
- package/dist/core/runner/prepare-suspend-saga.js +0 -2
- package/dist/core/runner/prepare-task.js +12 -11
- package/dist/core/runner/prepare-wiring-manifest.js +9 -7
- package/dist/core/runner/resume-admission.js +2 -1
- package/dist/core/runner/resume-internals-and-config.js +4 -0
- 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-harness-handlers.js +5 -3
- package/dist/core/runner/run-settle-and-teardown.d.ts +1 -1
- package/dist/core/runner/run-settle-and-teardown.js +3 -1
- package/dist/core/runner/session-file-state-replay.js +3 -3
- package/dist/core/runner/session-rule-policy.js +3 -4
- package/dist/core/runner/stream-halt-verbs.js +1 -1
- package/dist/core/runner/stream-steer-verb.js +1 -4
- 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 +11 -12
- 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/skills-directory.js +4 -3
- package/dist/core/spec-contract.js +5 -4
- 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 +32 -28
- package/dist/core/task-registry-shared.js +4 -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 +6 -1
- 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 +66 -22
- package/dist/core/tool-policy.js +31 -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 +8 -5
- package/dist/engine/harness/agent-harness.d.ts +47 -4
- package/dist/engine/harness/agent-harness.js +52 -9
- package/dist/engine/loop/agent-loop.js +15 -8
- package/dist/engine/loop/types.d.ts +5 -0
- package/dist/index.d.ts +20 -14
- package/dist/index.js +16 -10
- 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-script-store.js +9 -25
- 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 +237 -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/cc/task-list-store.js +2 -10
- package/dist/stores/file/checkpoint-store.js +1 -5
- package/dist/stores/file/file-history-store.js +2 -2
- package/dist/stores/file/fs-atomic.d.ts +15 -18
- package/dist/stores/file/fs-atomic.js +4 -14
- package/dist/stores/file/mailbox-store.d.ts +7 -11
- package/dist/stores/file/mailbox-store.js +4 -11
- 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 +297 -0
- package/dist/tools/fs/bash-readonly-classifier.d.ts +90 -8
- package/dist/tools/fs/bash-readonly-classifier.js +294 -70
- package/dist/tools/fs/fs-bash.d.ts +14 -10
- package/dist/tools/fs/fs-bash.js +50 -33
- package/dist/tools/fs/fs-search-tools.js +5 -2
- package/dist/tools/fs/fs-shared.d.ts +2 -0
- package/dist/tools/fs/fs-shared.js +3 -11
- package/dist/tools/fs/index.d.ts +4 -0
- package/dist/tools/fs/index.js +4 -1
- package/dist/tools/fs/safety.d.ts +117 -1
- package/dist/tools/fs/safety.js +131 -31
- package/dist/tools/fs/search.js +8 -6
- package/package.json +2 -1
- 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": 2335,
|
|
5
5
|
"exports": {
|
|
6
6
|
"A2ATaskState": "type",
|
|
7
7
|
"A2ATaskStateReversal": "type",
|
|
@@ -22,7 +22,17 @@
|
|
|
22
22
|
"ANNOUNCEMENTS_FILE": "variable",
|
|
23
23
|
"APPROVAL_CARD_REQUIRED_KEYS": "variable",
|
|
24
24
|
"APPROVER_ATTRIBUTION_MAX_CHARS": "variable",
|
|
25
|
+
"ARTIFACT_ACTIONS": "variable",
|
|
26
|
+
"ARTIFACT_ACTION_HOST_METHOD": "variable",
|
|
27
|
+
"ARTIFACT_CARD": "variable",
|
|
28
|
+
"ARTIFACT_FAILURE_RESULT_CODE": "variable",
|
|
29
|
+
"ARTIFACT_HOST_ERROR_CODE": "variable",
|
|
30
|
+
"ARTIFACT_HOST_FAILURE_CODES": "variable",
|
|
25
31
|
"ARTIFACT_LIMITS": "variable",
|
|
32
|
+
"ARTIFACT_LIST_SCOPES": "variable",
|
|
33
|
+
"ARTIFACT_PLANES": "variable",
|
|
34
|
+
"ARTIFACT_PLANE_CONTENT_ORIGIN": "variable",
|
|
35
|
+
"ARTIFACT_PUBLISH_CONTEXTS": "variable",
|
|
26
36
|
"ASK_EVIDENCE_ABSENCE_VALUES": "variable",
|
|
27
37
|
"ASK_ORIGINS": "variable",
|
|
28
38
|
"ASK_USER_QUESTION_TOOL_NAME": "variable",
|
|
@@ -66,6 +76,28 @@
|
|
|
66
76
|
"AggregateBudgetOptions": "interface",
|
|
67
77
|
"AnthropicBrainConfig": "interface",
|
|
68
78
|
"AppendLog": "class",
|
|
79
|
+
"ArtifactAction": "type",
|
|
80
|
+
"ArtifactCallContext": "interface",
|
|
81
|
+
"ArtifactConflictSnapshot": "interface",
|
|
82
|
+
"ArtifactFileContent": "interface",
|
|
83
|
+
"ArtifactFileOutcome": "type",
|
|
84
|
+
"ArtifactFilesOutcome": "type",
|
|
85
|
+
"ArtifactHost": "interface",
|
|
86
|
+
"ArtifactHostCapabilities": "interface",
|
|
87
|
+
"ArtifactHostCapabilitiesVerdict": "type",
|
|
88
|
+
"ArtifactHostFailureCode": "type",
|
|
89
|
+
"ArtifactListOutcome": "type",
|
|
90
|
+
"ArtifactListRow": "interface",
|
|
91
|
+
"ArtifactListScope": "type",
|
|
92
|
+
"ArtifactLocalRead": "type",
|
|
93
|
+
"ArtifactPlane": "type",
|
|
94
|
+
"ArtifactPublishContext": "type",
|
|
95
|
+
"ArtifactPublishOutcome": "type",
|
|
96
|
+
"ArtifactPublishRequest": "interface",
|
|
97
|
+
"ArtifactReadOutcome": "type",
|
|
98
|
+
"ArtifactRef": "interface",
|
|
99
|
+
"ArtifactResultCode": "type",
|
|
100
|
+
"ArtifactToolOptions": "interface",
|
|
69
101
|
"ArtifactVerifyResult": "type",
|
|
70
102
|
"AskAnswerContinuationSource": "type",
|
|
71
103
|
"AskCarry": "interface",
|
|
@@ -232,7 +264,6 @@
|
|
|
232
264
|
"CompactOutcome": "type",
|
|
233
265
|
"CompactionWindowSafetyInfo": "interface",
|
|
234
266
|
"CompiledEventPrompt": "interface",
|
|
235
|
-
"CompiledMessageInjection": "interface",
|
|
236
267
|
"CompiledSection": "interface",
|
|
237
268
|
"CompleteSimpleFn": "type",
|
|
238
269
|
"ComplianceCapability": "type",
|
|
@@ -296,7 +327,6 @@
|
|
|
296
327
|
"DEFAULT_CONSOLIDATION_BAND": "variable",
|
|
297
328
|
"DEFAULT_CONSOLIDATION_MAX_NOTES": "variable",
|
|
298
329
|
"DEFAULT_CONSOLIDATION_SEARCH_LIMIT": "variable",
|
|
299
|
-
"DEFAULT_CONSOLIDATION_TIMEOUT_SEC": "variable",
|
|
300
330
|
"DEFAULT_EFFORT_LEVELS": "variable",
|
|
301
331
|
"DEFAULT_FILE_HISTORY_BOUNDARY_KEEP": "variable",
|
|
302
332
|
"DEFAULT_HARVEST_DEADLINE_MS": "variable",
|
|
@@ -348,6 +378,7 @@
|
|
|
348
378
|
"ENGINE_NOTICE_CODES": "variable",
|
|
349
379
|
"ENTER_PLAN_MODE_TOOL_NAME": "variable",
|
|
350
380
|
"ENV_LIFETIME_SUSPEND_MARGIN_MS": "variable",
|
|
381
|
+
"EVAL_STUB_URL_PREFIX": "variable",
|
|
351
382
|
"EVENT_PROMPT_REGISTRY": "variable",
|
|
352
383
|
"EXECUTION_ENVIRONMENT": "variable",
|
|
353
384
|
"EXECUTION_ENVIRONMENT_OPEN_READS": "variable",
|
|
@@ -390,7 +421,6 @@
|
|
|
390
421
|
"ExecutionOutcomeConflictError": "class",
|
|
391
422
|
"ExecutionOutcomeRecordWord": "type",
|
|
392
423
|
"ExecutionRecordRowFacts": "interface",
|
|
393
|
-
"ExecutionRecordTableCoversEveryWord": "type",
|
|
394
424
|
"ExecutionVerdict": "type",
|
|
395
425
|
"ExplainInput": "interface",
|
|
396
426
|
"ExposedMemoryIndexRow": "interface",
|
|
@@ -524,7 +554,6 @@
|
|
|
524
554
|
"InvariantViolation": "interface",
|
|
525
555
|
"JOURNAL_OVERSIZE_ERROR_CODE": "variable",
|
|
526
556
|
"KillProcessTreeOptions": "type",
|
|
527
|
-
"LEGACY_PENDING_STEER_INPUT_ID": "variable",
|
|
528
557
|
"LINEAGE_FILE": "variable",
|
|
529
558
|
"LIST_AGENTS_MAX_RESULT_CHARS": "variable",
|
|
530
559
|
"LIST_AGENTS_TOOL_ALIAS": "variable",
|
|
@@ -534,6 +563,8 @@
|
|
|
534
563
|
"LLM_DISTILLER_CONTRACT_DL2": "variable",
|
|
535
564
|
"LLM_DISTILLER_CONTRACT_DL3": "variable",
|
|
536
565
|
"LOCAL_OWNER_UNSYNCABLE_CODE": "variable",
|
|
566
|
+
"LOCAL_STUB_MAX_FILE_BYTES": "variable",
|
|
567
|
+
"LOCAL_STUB_MAX_TOTAL_BYTES": "variable",
|
|
537
568
|
"LOCKED_KEY_REGISTRY": "variable",
|
|
538
569
|
"LOWERING_VERSION": "variable",
|
|
539
570
|
"LSP_FAILURE_BRAND": "variable",
|
|
@@ -548,6 +579,8 @@
|
|
|
548
579
|
"LlmConsolidationPlanArm": "interface",
|
|
549
580
|
"LlmConsolidationPlanProduct": "interface",
|
|
550
581
|
"LlmDistillerContract": "interface",
|
|
582
|
+
"LocalArtifactStub": "class",
|
|
583
|
+
"LocalArtifactStubOptions": "interface",
|
|
551
584
|
"LockedConfig": "interface",
|
|
552
585
|
"LockedKey": "type",
|
|
553
586
|
"LoweringRecord": "interface",
|
|
@@ -745,8 +778,6 @@
|
|
|
745
778
|
"ORG_STATE_FILE": "variable",
|
|
746
779
|
"ORG_UNAVAILABLE_DECISION_REASON": "variable",
|
|
747
780
|
"ORIGIN_IMPLIES_REAL_APPROVAL": "variable",
|
|
748
|
-
"ORPHAN_ADOPT_MAX_DEFAULT": "variable",
|
|
749
|
-
"ORPHAN_ADOPT_WINDOW_MS_DEFAULT": "variable",
|
|
750
781
|
"OUTPUT_EFFICIENCY": "variable",
|
|
751
782
|
"OffCapabilityModel": "interface",
|
|
752
783
|
"OnAsk": "type",
|
|
@@ -792,7 +823,6 @@
|
|
|
792
823
|
"PEER_HELD_REVIEW_CAUSES": "variable",
|
|
793
824
|
"PEER_HOP_CHAIN_CARRY_WINDOW": "variable",
|
|
794
825
|
"PEER_HOP_CHAIN_WINDOW": "variable",
|
|
795
|
-
"PEER_HOP_TOKEN_HEX": "variable",
|
|
796
826
|
"PEER_IDLE_FIRE_DEBOUNCE_MS": "variable",
|
|
797
827
|
"PEER_IDLE_HELD_BACKOFF_MS": "variable",
|
|
798
828
|
"PEER_IDLE_LABEL_MAX": "variable",
|
|
@@ -826,6 +856,8 @@
|
|
|
826
856
|
"PROJECT_MARKER_PATH": "variable",
|
|
827
857
|
"PROTOCOL_TABLE": "variable",
|
|
828
858
|
"PackSectionDeclaration": "interface",
|
|
859
|
+
"ParentSpecSeat": "interface",
|
|
860
|
+
"ParentSpecSeatFields": "type",
|
|
829
861
|
"ParkLaneReason": "type",
|
|
830
862
|
"ParkProbeFinding": "interface",
|
|
831
863
|
"ParkProbeFindingCode": "type",
|
|
@@ -836,8 +868,12 @@
|
|
|
836
868
|
"ParsedRule": "interface",
|
|
837
869
|
"ParsedScopeKey": "type",
|
|
838
870
|
"PatchReport": "interface",
|
|
871
|
+
"PathFamily": "type",
|
|
872
|
+
"PathIdentity": "type",
|
|
873
|
+
"PathIdentityReading": "type",
|
|
839
874
|
"PathRuleBase": "type",
|
|
840
875
|
"PathRuleBases": "type",
|
|
876
|
+
"PathTargetReading": "type",
|
|
841
877
|
"PausedCause": "type",
|
|
842
878
|
"PeerAdmission": "interface",
|
|
843
879
|
"PeerAdmissionConfig": "interface",
|
|
@@ -935,7 +971,6 @@
|
|
|
935
971
|
"ProbeCause": "interface",
|
|
936
972
|
"ProbeCauseOperands": "interface",
|
|
937
973
|
"ProcessFingerprint": "interface",
|
|
938
|
-
"ProgramRunReach": "type",
|
|
939
974
|
"ProgramRunReachOutcome": "type",
|
|
940
975
|
"ProjectMemoryLoad": "interface",
|
|
941
976
|
"PromotedRecord": "interface",
|
|
@@ -1196,8 +1231,6 @@
|
|
|
1196
1231
|
"SchedulerError": "class",
|
|
1197
1232
|
"SchedulerErrorCode": "type",
|
|
1198
1233
|
"SchedulerToolContext": "interface",
|
|
1199
|
-
"ScopedNoteHeader": "interface",
|
|
1200
|
-
"ScopedNoteRecord": "interface",
|
|
1201
1234
|
"ScoredMemory": "interface",
|
|
1202
1235
|
"ScoredMemoryEntry": "interface",
|
|
1203
1236
|
"SeamProvenance": "type",
|
|
@@ -1315,7 +1348,6 @@
|
|
|
1315
1348
|
"TEACHER_PROFILE": "variable",
|
|
1316
1349
|
"TEACHER_PROMPT": "variable",
|
|
1317
1350
|
"TEAMMATE_COMMUNICATION_ADDENDUM": "variable",
|
|
1318
|
-
"TEAMMATE_TASK_LIST_ADDENDUM": "variable",
|
|
1319
1351
|
"TEAM_DISCUSSION_SCRIPT": "variable",
|
|
1320
1352
|
"TEAM_DISCUSSION_WORKFLOW_NAME": "variable",
|
|
1321
1353
|
"TOKEN_CHECKPOINT_VERSION": "variable",
|
|
@@ -1462,6 +1494,7 @@
|
|
|
1462
1494
|
"WEBFETCH_SUMMARY_GUIDELINES": "variable",
|
|
1463
1495
|
"WEBFETCH_SUMMARY_MAX_CONTENT": "variable",
|
|
1464
1496
|
"WEB_FETCH_TOOL_NAME": "variable",
|
|
1497
|
+
"WIN32_NAMESPACE_REFUSALS": "variable",
|
|
1465
1498
|
"WORKFLOW_AGENT_MAX_RETRIES": "variable",
|
|
1466
1499
|
"WORKFLOW_AGENT_PARKED_ERROR_CODE": "variable",
|
|
1467
1500
|
"WORKFLOW_AGENT_STALL_MS": "variable",
|
|
@@ -1475,6 +1508,7 @@
|
|
|
1475
1508
|
"WRITE_PROTECTED_DEFAULT_TABLE": "variable",
|
|
1476
1509
|
"WebFetchConfig": "interface",
|
|
1477
1510
|
"WebSearchConfig": "interface",
|
|
1511
|
+
"Win32NamespaceRefusal": "type",
|
|
1478
1512
|
"WiringFacts": "interface",
|
|
1479
1513
|
"WiringLegKind": "type",
|
|
1480
1514
|
"WiringManifest": "interface",
|
|
@@ -1553,8 +1587,10 @@
|
|
|
1553
1587
|
"appendPendingSteer": "function",
|
|
1554
1588
|
"applyFileRestoreViaEnv": "function",
|
|
1555
1589
|
"applyMcpToolFaces": "function",
|
|
1590
|
+
"applyParentSpecSeat": "function",
|
|
1556
1591
|
"applyTombstones": "function",
|
|
1557
1592
|
"archiveDistillerPlan": "function",
|
|
1593
|
+
"artifactAttemptId": "function",
|
|
1558
1594
|
"artifactDeclarations": "function",
|
|
1559
1595
|
"askUnresolvableNotice": "function",
|
|
1560
1596
|
"assembleCodeTools": "function",
|
|
@@ -1676,6 +1712,7 @@
|
|
|
1676
1712
|
"createAllowDenyPolicy": "function",
|
|
1677
1713
|
"createAnthropicBrain": "function",
|
|
1678
1714
|
"createApprovalPolicy": "function",
|
|
1715
|
+
"createArtifactTool": "function",
|
|
1679
1716
|
"createAskUserQuestionTool": "function",
|
|
1680
1717
|
"createAssistantMessageEventStream": "function",
|
|
1681
1718
|
"createAutoModeDecider": "function",
|
|
@@ -1766,12 +1803,10 @@
|
|
|
1766
1803
|
"describeConfigCatalog": "function",
|
|
1767
1804
|
"describeCrossSessionHoldCause": "function",
|
|
1768
1805
|
"describeDefaultPack": "function",
|
|
1769
|
-
"describePeerDeliveryReceipt": "function",
|
|
1770
1806
|
"describePeerDropReasons": "function",
|
|
1771
1807
|
"describePeerIdleSubscription": "function",
|
|
1772
1808
|
"describeStaticWiring": "function",
|
|
1773
1809
|
"describeToolCatalog": "function",
|
|
1774
|
-
"describeToolConformanceVectors": "function",
|
|
1775
1810
|
"detectCleanArmVerbatimLeak": "function",
|
|
1776
1811
|
"detectSecret": "function",
|
|
1777
1812
|
"devWorkflowScriptRunner": "variable",
|
|
@@ -1815,9 +1850,7 @@
|
|
|
1815
1850
|
"fileHistoryBoundariesToKeep": "function",
|
|
1816
1851
|
"fileHistoryDescribeTrackKey": "function",
|
|
1817
1852
|
"fileHistoryExportDigest": "function",
|
|
1818
|
-
"fileHistoryKeyFamilyOf": "function",
|
|
1819
1853
|
"fileHistoryModeProvenDifferent": "function",
|
|
1820
|
-
"fileHistoryPreviewFileDelta": "function",
|
|
1821
1854
|
"fileHistoryResolveTrackKey": "function",
|
|
1822
1855
|
"fileHistoryStoreContract": "function",
|
|
1823
1856
|
"fileHistoryTrackKeyOf": "function",
|
|
@@ -1869,6 +1902,7 @@
|
|
|
1869
1902
|
"inlineUntrusted": "function",
|
|
1870
1903
|
"inputKeysOf": "function",
|
|
1871
1904
|
"inspectDegenerate": "function",
|
|
1905
|
+
"isAbsoluteForFamily": "function",
|
|
1872
1906
|
"isAliasModelId": "function",
|
|
1873
1907
|
"isAskOrigin": "function",
|
|
1874
1908
|
"isAutoModeDenySource": "function",
|
|
@@ -1879,7 +1913,6 @@
|
|
|
1879
1913
|
"isDeclaredWrite": "function",
|
|
1880
1914
|
"isDelegatedAgentTerminal": "function",
|
|
1881
1915
|
"isDeniedBy": "function",
|
|
1882
|
-
"isExecutionOutcomeRecordWord": "function",
|
|
1883
1916
|
"isFullyReadable": "function",
|
|
1884
1917
|
"isGateKind": "function",
|
|
1885
1918
|
"isInstructionEntry": "function",
|
|
@@ -1934,6 +1967,7 @@
|
|
|
1934
1967
|
"listWorkflowRuns": "function",
|
|
1935
1968
|
"llmPlanDistiller": "function",
|
|
1936
1969
|
"loadOrchestrationEnv": "function",
|
|
1970
|
+
"localArtifactStub": "function",
|
|
1937
1971
|
"looksDegenerate": "function",
|
|
1938
1972
|
"lookupProjectIdHint": "function",
|
|
1939
1973
|
"loosenReasons": "function",
|
|
@@ -1952,6 +1986,7 @@
|
|
|
1952
1986
|
"materializeMcpTools": "function",
|
|
1953
1987
|
"maybeCompact": "function",
|
|
1954
1988
|
"mcpInjectionDroppedNotice": "function",
|
|
1989
|
+
"mediaTypeOf": "function",
|
|
1955
1990
|
"memoryBackendContract": "function",
|
|
1956
1991
|
"memoryCaptureOptOutUnpersistedNotice": "function",
|
|
1957
1992
|
"memoryCaptureOptedOutNotice": "function",
|
|
@@ -1988,6 +2023,7 @@
|
|
|
1988
2023
|
"normalizePeerName": "function",
|
|
1989
2024
|
"normalizePersistedRuleHit": "function",
|
|
1990
2025
|
"normalizePromptEpoch": "function",
|
|
2026
|
+
"normalizePublishedPath": "function",
|
|
1991
2027
|
"normalizeRules": "function",
|
|
1992
2028
|
"normalizeToolResultProvenance": "function",
|
|
1993
2029
|
"noticeAudienceOf": "function",
|
|
@@ -1998,6 +2034,7 @@
|
|
|
1998
2034
|
"orgRuleVerdictFor": "function",
|
|
1999
2035
|
"originEquals": "function",
|
|
2000
2036
|
"oversizeJournalResult": "function",
|
|
2037
|
+
"parentSpecSeatOf": "function",
|
|
2001
2038
|
"parkedToolIdentity": "function",
|
|
2002
2039
|
"parseAutoModeResponse": "function",
|
|
2003
2040
|
"parseCrossSessionEnvelope": "function",
|
|
@@ -2017,6 +2054,8 @@
|
|
|
2017
2054
|
"parseTeacherAdvice": "function",
|
|
2018
2055
|
"parseWorkflowMeta": "function",
|
|
2019
2056
|
"pathConfinableWriteToolNames": "function",
|
|
2057
|
+
"pathFamilyOf": "function",
|
|
2058
|
+
"pathIdentityOf": "function",
|
|
2020
2059
|
"pathRuleReachOf": "function",
|
|
2021
2060
|
"pathTargetBaseOf": "function",
|
|
2022
2061
|
"pathTargetOf": "function",
|
|
@@ -2029,21 +2068,20 @@
|
|
|
2029
2068
|
"peekMemoryAnnouncements": "function",
|
|
2030
2069
|
"peerAdmissionFor": "function",
|
|
2031
2070
|
"peerAxisToken": "function",
|
|
2032
|
-
"peerDeliveryReceiptLabel": "function",
|
|
2033
2071
|
"peerHeldQueueFor": "function",
|
|
2034
2072
|
"peerHeldQueueIfAny": "function",
|
|
2035
2073
|
"peerHeldQueueKey": "function",
|
|
2036
|
-
"peerIdleDetailOf": "function",
|
|
2037
2074
|
"peerIdleMachineFor": "function",
|
|
2038
2075
|
"peerIdleMachineIfAny": "function",
|
|
2039
2076
|
"peerIdleMachineKey": "function",
|
|
2040
2077
|
"peerIdleNoticeLabel": "function",
|
|
2041
|
-
"peerIdleNoticeSummary": "function",
|
|
2042
2078
|
"peerRecipientSuffix": "function",
|
|
2043
2079
|
"peerSendVerdictSeverity": "function",
|
|
2044
2080
|
"peerSessionBoxHandle": "function",
|
|
2045
2081
|
"permissionRuleSyncContract": "function",
|
|
2046
2082
|
"pgQuery": "function",
|
|
2083
|
+
"physicalPathOf": "function",
|
|
2084
|
+
"physicalPathOfExisting": "function",
|
|
2047
2085
|
"planParseRepairs": "function",
|
|
2048
2086
|
"precheckEditedRuleText": "function",
|
|
2049
2087
|
"predictMountedToolNames": "function",
|
|
@@ -2064,6 +2102,7 @@
|
|
|
2064
2102
|
"queryBackgroundAgents": "function",
|
|
2065
2103
|
"rankOf": "function",
|
|
2066
2104
|
"readAdoptionStatus": "function",
|
|
2105
|
+
"readArtifactHostCapabilities": "function",
|
|
2067
2106
|
"readCcSidecarMessages": "function",
|
|
2068
2107
|
"readCcSidecarTranscript": "function",
|
|
2069
2108
|
"readConsolidationDriverRun": "function",
|
|
@@ -2283,6 +2322,7 @@
|
|
|
2283
2322
|
"warmResume": "function",
|
|
2284
2323
|
"webFetchToolSpec": "function",
|
|
2285
2324
|
"wildcardMatch": "function",
|
|
2325
|
+
"win32NamespaceScreen": "function",
|
|
2286
2326
|
"winnerFromOutcome": "function",
|
|
2287
2327
|
"withCcLock": "function",
|
|
2288
2328
|
"withRetry": "function",
|
|
@@ -2319,7 +2359,17 @@
|
|
|
2319
2359
|
"ANNOUNCEMENTS_FILE": "advanced",
|
|
2320
2360
|
"APPROVAL_CARD_REQUIRED_KEYS": "internal",
|
|
2321
2361
|
"APPROVER_ATTRIBUTION_MAX_CHARS": "advanced",
|
|
2362
|
+
"ARTIFACT_ACTIONS": "advanced",
|
|
2363
|
+
"ARTIFACT_ACTION_HOST_METHOD": "advanced",
|
|
2364
|
+
"ARTIFACT_CARD": "advanced",
|
|
2365
|
+
"ARTIFACT_FAILURE_RESULT_CODE": "advanced",
|
|
2366
|
+
"ARTIFACT_HOST_ERROR_CODE": "advanced",
|
|
2367
|
+
"ARTIFACT_HOST_FAILURE_CODES": "advanced",
|
|
2322
2368
|
"ARTIFACT_LIMITS": "advanced",
|
|
2369
|
+
"ARTIFACT_LIST_SCOPES": "advanced",
|
|
2370
|
+
"ARTIFACT_PLANES": "advanced",
|
|
2371
|
+
"ARTIFACT_PLANE_CONTENT_ORIGIN": "advanced",
|
|
2372
|
+
"ARTIFACT_PUBLISH_CONTEXTS": "advanced",
|
|
2323
2373
|
"ASK_EVIDENCE_ABSENCE_VALUES": "advanced",
|
|
2324
2374
|
"ASK_ORIGINS": "advanced",
|
|
2325
2375
|
"ASK_USER_QUESTION_TOOL_NAME": "advanced",
|
|
@@ -2363,6 +2413,28 @@
|
|
|
2363
2413
|
"AggregateBudgetOptions": "advanced",
|
|
2364
2414
|
"AnthropicBrainConfig": "advanced",
|
|
2365
2415
|
"AppendLog": "advanced",
|
|
2416
|
+
"ArtifactAction": "advanced",
|
|
2417
|
+
"ArtifactCallContext": "advanced",
|
|
2418
|
+
"ArtifactConflictSnapshot": "advanced",
|
|
2419
|
+
"ArtifactFileContent": "advanced",
|
|
2420
|
+
"ArtifactFileOutcome": "advanced",
|
|
2421
|
+
"ArtifactFilesOutcome": "advanced",
|
|
2422
|
+
"ArtifactHost": "advanced",
|
|
2423
|
+
"ArtifactHostCapabilities": "advanced",
|
|
2424
|
+
"ArtifactHostCapabilitiesVerdict": "advanced",
|
|
2425
|
+
"ArtifactHostFailureCode": "advanced",
|
|
2426
|
+
"ArtifactListOutcome": "advanced",
|
|
2427
|
+
"ArtifactListRow": "advanced",
|
|
2428
|
+
"ArtifactListScope": "advanced",
|
|
2429
|
+
"ArtifactLocalRead": "advanced",
|
|
2430
|
+
"ArtifactPlane": "advanced",
|
|
2431
|
+
"ArtifactPublishContext": "advanced",
|
|
2432
|
+
"ArtifactPublishOutcome": "advanced",
|
|
2433
|
+
"ArtifactPublishRequest": "advanced",
|
|
2434
|
+
"ArtifactReadOutcome": "advanced",
|
|
2435
|
+
"ArtifactRef": "advanced",
|
|
2436
|
+
"ArtifactResultCode": "advanced",
|
|
2437
|
+
"ArtifactToolOptions": "advanced",
|
|
2366
2438
|
"ArtifactVerifyResult": "advanced",
|
|
2367
2439
|
"AskAnswerContinuationSource": "advanced",
|
|
2368
2440
|
"AskCarry": "advanced",
|
|
@@ -2529,7 +2601,6 @@
|
|
|
2529
2601
|
"CompactOutcome": "advanced",
|
|
2530
2602
|
"CompactionWindowSafetyInfo": "advanced",
|
|
2531
2603
|
"CompiledEventPrompt": "advanced",
|
|
2532
|
-
"CompiledMessageInjection": "advanced",
|
|
2533
2604
|
"CompiledSection": "advanced",
|
|
2534
2605
|
"CompleteSimpleFn": "advanced",
|
|
2535
2606
|
"ComplianceCapability": "advanced",
|
|
@@ -2593,7 +2664,6 @@
|
|
|
2593
2664
|
"DEFAULT_CONSOLIDATION_BAND": "internal",
|
|
2594
2665
|
"DEFAULT_CONSOLIDATION_MAX_NOTES": "internal",
|
|
2595
2666
|
"DEFAULT_CONSOLIDATION_SEARCH_LIMIT": "internal",
|
|
2596
|
-
"DEFAULT_CONSOLIDATION_TIMEOUT_SEC": "internal",
|
|
2597
2667
|
"DEFAULT_EFFORT_LEVELS": "advanced",
|
|
2598
2668
|
"DEFAULT_FILE_HISTORY_BOUNDARY_KEEP": "advanced",
|
|
2599
2669
|
"DEFAULT_HARVEST_DEADLINE_MS": "advanced",
|
|
@@ -2645,6 +2715,7 @@
|
|
|
2645
2715
|
"ENGINE_NOTICE_CODES": "advanced",
|
|
2646
2716
|
"ENTER_PLAN_MODE_TOOL_NAME": "advanced",
|
|
2647
2717
|
"ENV_LIFETIME_SUSPEND_MARGIN_MS": "internal",
|
|
2718
|
+
"EVAL_STUB_URL_PREFIX": "advanced",
|
|
2648
2719
|
"EVENT_PROMPT_REGISTRY": "advanced",
|
|
2649
2720
|
"EXECUTION_ENVIRONMENT": "advanced",
|
|
2650
2721
|
"EXECUTION_ENVIRONMENT_OPEN_READS": "advanced",
|
|
@@ -2687,7 +2758,6 @@
|
|
|
2687
2758
|
"ExecutionOutcomeConflictError": "stable",
|
|
2688
2759
|
"ExecutionOutcomeRecordWord": "stable",
|
|
2689
2760
|
"ExecutionRecordRowFacts": "advanced",
|
|
2690
|
-
"ExecutionRecordTableCoversEveryWord": "advanced",
|
|
2691
2761
|
"ExecutionVerdict": "advanced",
|
|
2692
2762
|
"ExplainInput": "advanced",
|
|
2693
2763
|
"ExposedMemoryIndexRow": "advanced",
|
|
@@ -2821,7 +2891,6 @@
|
|
|
2821
2891
|
"InvariantViolation": "advanced",
|
|
2822
2892
|
"JOURNAL_OVERSIZE_ERROR_CODE": "advanced",
|
|
2823
2893
|
"KillProcessTreeOptions": "internal",
|
|
2824
|
-
"LEGACY_PENDING_STEER_INPUT_ID": "advanced",
|
|
2825
2894
|
"LINEAGE_FILE": "advanced",
|
|
2826
2895
|
"LIST_AGENTS_MAX_RESULT_CHARS": "advanced",
|
|
2827
2896
|
"LIST_AGENTS_TOOL_ALIAS": "advanced",
|
|
@@ -2831,6 +2900,8 @@
|
|
|
2831
2900
|
"LLM_DISTILLER_CONTRACT_DL2": "advanced",
|
|
2832
2901
|
"LLM_DISTILLER_CONTRACT_DL3": "advanced",
|
|
2833
2902
|
"LOCAL_OWNER_UNSYNCABLE_CODE": "advanced",
|
|
2903
|
+
"LOCAL_STUB_MAX_FILE_BYTES": "advanced",
|
|
2904
|
+
"LOCAL_STUB_MAX_TOTAL_BYTES": "advanced",
|
|
2834
2905
|
"LOCKED_KEY_REGISTRY": "advanced",
|
|
2835
2906
|
"LOWERING_VERSION": "advanced",
|
|
2836
2907
|
"LSP_FAILURE_BRAND": "advanced",
|
|
@@ -2845,6 +2916,8 @@
|
|
|
2845
2916
|
"LlmConsolidationPlanArm": "advanced",
|
|
2846
2917
|
"LlmConsolidationPlanProduct": "advanced",
|
|
2847
2918
|
"LlmDistillerContract": "advanced",
|
|
2919
|
+
"LocalArtifactStub": "advanced",
|
|
2920
|
+
"LocalArtifactStubOptions": "advanced",
|
|
2848
2921
|
"LockedConfig": "advanced",
|
|
2849
2922
|
"LockedKey": "advanced",
|
|
2850
2923
|
"LoweringRecord": "advanced",
|
|
@@ -3042,8 +3115,6 @@
|
|
|
3042
3115
|
"ORG_STATE_FILE": "advanced",
|
|
3043
3116
|
"ORG_UNAVAILABLE_DECISION_REASON": "advanced",
|
|
3044
3117
|
"ORIGIN_IMPLIES_REAL_APPROVAL": "advanced",
|
|
3045
|
-
"ORPHAN_ADOPT_MAX_DEFAULT": "advanced",
|
|
3046
|
-
"ORPHAN_ADOPT_WINDOW_MS_DEFAULT": "advanced",
|
|
3047
3118
|
"OUTPUT_EFFICIENCY": "advanced",
|
|
3048
3119
|
"OffCapabilityModel": "advanced",
|
|
3049
3120
|
"OnAsk": "advanced",
|
|
@@ -3089,7 +3160,6 @@
|
|
|
3089
3160
|
"PEER_HELD_REVIEW_CAUSES": "advanced",
|
|
3090
3161
|
"PEER_HOP_CHAIN_CARRY_WINDOW": "advanced",
|
|
3091
3162
|
"PEER_HOP_CHAIN_WINDOW": "advanced",
|
|
3092
|
-
"PEER_HOP_TOKEN_HEX": "advanced",
|
|
3093
3163
|
"PEER_IDLE_FIRE_DEBOUNCE_MS": "advanced",
|
|
3094
3164
|
"PEER_IDLE_HELD_BACKOFF_MS": "advanced",
|
|
3095
3165
|
"PEER_IDLE_LABEL_MAX": "advanced",
|
|
@@ -3123,6 +3193,8 @@
|
|
|
3123
3193
|
"PROJECT_MARKER_PATH": "advanced",
|
|
3124
3194
|
"PROTOCOL_TABLE": "advanced",
|
|
3125
3195
|
"PackSectionDeclaration": "advanced",
|
|
3196
|
+
"ParentSpecSeat": "advanced",
|
|
3197
|
+
"ParentSpecSeatFields": "advanced",
|
|
3126
3198
|
"ParkLaneReason": "advanced",
|
|
3127
3199
|
"ParkProbeFinding": "advanced",
|
|
3128
3200
|
"ParkProbeFindingCode": "advanced",
|
|
@@ -3133,8 +3205,12 @@
|
|
|
3133
3205
|
"ParsedRule": "advanced",
|
|
3134
3206
|
"ParsedScopeKey": "advanced",
|
|
3135
3207
|
"PatchReport": "stable",
|
|
3208
|
+
"PathFamily": "advanced",
|
|
3209
|
+
"PathIdentity": "advanced",
|
|
3210
|
+
"PathIdentityReading": "advanced",
|
|
3136
3211
|
"PathRuleBase": "advanced",
|
|
3137
3212
|
"PathRuleBases": "advanced",
|
|
3213
|
+
"PathTargetReading": "advanced",
|
|
3138
3214
|
"PausedCause": "advanced",
|
|
3139
3215
|
"PeerAdmission": "advanced",
|
|
3140
3216
|
"PeerAdmissionConfig": "advanced",
|
|
@@ -3232,7 +3308,6 @@
|
|
|
3232
3308
|
"ProbeCause": "advanced",
|
|
3233
3309
|
"ProbeCauseOperands": "advanced",
|
|
3234
3310
|
"ProcessFingerprint": "advanced",
|
|
3235
|
-
"ProgramRunReach": "advanced",
|
|
3236
3311
|
"ProgramRunReachOutcome": "advanced",
|
|
3237
3312
|
"ProjectMemoryLoad": "advanced",
|
|
3238
3313
|
"PromotedRecord": "advanced",
|
|
@@ -3493,8 +3568,6 @@
|
|
|
3493
3568
|
"SchedulerError": "advanced",
|
|
3494
3569
|
"SchedulerErrorCode": "advanced",
|
|
3495
3570
|
"SchedulerToolContext": "advanced",
|
|
3496
|
-
"ScopedNoteHeader": "advanced",
|
|
3497
|
-
"ScopedNoteRecord": "advanced",
|
|
3498
3571
|
"ScoredMemory": "stable",
|
|
3499
3572
|
"ScoredMemoryEntry": "stable",
|
|
3500
3573
|
"SeamProvenance": "advanced",
|
|
@@ -3612,7 +3685,6 @@
|
|
|
3612
3685
|
"TEACHER_PROFILE": "advanced",
|
|
3613
3686
|
"TEACHER_PROMPT": "advanced",
|
|
3614
3687
|
"TEAMMATE_COMMUNICATION_ADDENDUM": "advanced",
|
|
3615
|
-
"TEAMMATE_TASK_LIST_ADDENDUM": "advanced",
|
|
3616
3688
|
"TEAM_DISCUSSION_SCRIPT": "advanced",
|
|
3617
3689
|
"TEAM_DISCUSSION_WORKFLOW_NAME": "advanced",
|
|
3618
3690
|
"TOKEN_CHECKPOINT_VERSION": "advanced",
|
|
@@ -3759,6 +3831,7 @@
|
|
|
3759
3831
|
"WEBFETCH_SUMMARY_GUIDELINES": "advanced",
|
|
3760
3832
|
"WEBFETCH_SUMMARY_MAX_CONTENT": "advanced",
|
|
3761
3833
|
"WEB_FETCH_TOOL_NAME": "advanced",
|
|
3834
|
+
"WIN32_NAMESPACE_REFUSALS": "advanced",
|
|
3762
3835
|
"WORKFLOW_AGENT_MAX_RETRIES": "advanced",
|
|
3763
3836
|
"WORKFLOW_AGENT_PARKED_ERROR_CODE": "advanced",
|
|
3764
3837
|
"WORKFLOW_AGENT_STALL_MS": "advanced",
|
|
@@ -3772,6 +3845,7 @@
|
|
|
3772
3845
|
"WRITE_PROTECTED_DEFAULT_TABLE": "advanced",
|
|
3773
3846
|
"WebFetchConfig": "advanced",
|
|
3774
3847
|
"WebSearchConfig": "advanced",
|
|
3848
|
+
"Win32NamespaceRefusal": "advanced",
|
|
3775
3849
|
"WiringFacts": "advanced",
|
|
3776
3850
|
"WiringLegKind": "advanced",
|
|
3777
3851
|
"WiringManifest": "stable",
|
|
@@ -3850,8 +3924,10 @@
|
|
|
3850
3924
|
"appendPendingSteer": "stable",
|
|
3851
3925
|
"applyFileRestoreViaEnv": "advanced",
|
|
3852
3926
|
"applyMcpToolFaces": "internal",
|
|
3927
|
+
"applyParentSpecSeat": "advanced",
|
|
3853
3928
|
"applyTombstones": "advanced",
|
|
3854
3929
|
"archiveDistillerPlan": "advanced",
|
|
3930
|
+
"artifactAttemptId": "advanced",
|
|
3855
3931
|
"artifactDeclarations": "advanced",
|
|
3856
3932
|
"askUnresolvableNotice": "advanced",
|
|
3857
3933
|
"assembleCodeTools": "advanced",
|
|
@@ -3973,6 +4049,7 @@
|
|
|
3973
4049
|
"createAllowDenyPolicy": "advanced",
|
|
3974
4050
|
"createAnthropicBrain": "stable",
|
|
3975
4051
|
"createApprovalPolicy": "stable",
|
|
4052
|
+
"createArtifactTool": "advanced",
|
|
3976
4053
|
"createAskUserQuestionTool": "advanced",
|
|
3977
4054
|
"createAssistantMessageEventStream": "stable",
|
|
3978
4055
|
"createAutoModeDecider": "advanced",
|
|
@@ -4063,12 +4140,10 @@
|
|
|
4063
4140
|
"describeConfigCatalog": "advanced",
|
|
4064
4141
|
"describeCrossSessionHoldCause": "advanced",
|
|
4065
4142
|
"describeDefaultPack": "advanced",
|
|
4066
|
-
"describePeerDeliveryReceipt": "advanced",
|
|
4067
4143
|
"describePeerDropReasons": "advanced",
|
|
4068
4144
|
"describePeerIdleSubscription": "advanced",
|
|
4069
4145
|
"describeStaticWiring": "stable",
|
|
4070
4146
|
"describeToolCatalog": "advanced",
|
|
4071
|
-
"describeToolConformanceVectors": "advanced",
|
|
4072
4147
|
"detectCleanArmVerbatimLeak": "advanced",
|
|
4073
4148
|
"detectSecret": "advanced",
|
|
4074
4149
|
"devWorkflowScriptRunner": "stable",
|
|
@@ -4112,9 +4187,7 @@
|
|
|
4112
4187
|
"fileHistoryBoundariesToKeep": "advanced",
|
|
4113
4188
|
"fileHistoryDescribeTrackKey": "advanced",
|
|
4114
4189
|
"fileHistoryExportDigest": "advanced",
|
|
4115
|
-
"fileHistoryKeyFamilyOf": "advanced",
|
|
4116
4190
|
"fileHistoryModeProvenDifferent": "advanced",
|
|
4117
|
-
"fileHistoryPreviewFileDelta": "advanced",
|
|
4118
4191
|
"fileHistoryResolveTrackKey": "advanced",
|
|
4119
4192
|
"fileHistoryStoreContract": "advanced",
|
|
4120
4193
|
"fileHistoryTrackKeyOf": "advanced",
|
|
@@ -4166,6 +4239,7 @@
|
|
|
4166
4239
|
"inlineUntrusted": "advanced",
|
|
4167
4240
|
"inputKeysOf": "advanced",
|
|
4168
4241
|
"inspectDegenerate": "advanced",
|
|
4242
|
+
"isAbsoluteForFamily": "advanced",
|
|
4169
4243
|
"isAliasModelId": "advanced",
|
|
4170
4244
|
"isAskOrigin": "advanced",
|
|
4171
4245
|
"isAutoModeDenySource": "advanced",
|
|
@@ -4176,7 +4250,6 @@
|
|
|
4176
4250
|
"isDeclaredWrite": "advanced",
|
|
4177
4251
|
"isDelegatedAgentTerminal": "advanced",
|
|
4178
4252
|
"isDeniedBy": "advanced",
|
|
4179
|
-
"isExecutionOutcomeRecordWord": "advanced",
|
|
4180
4253
|
"isFullyReadable": "advanced",
|
|
4181
4254
|
"isGateKind": "advanced",
|
|
4182
4255
|
"isInstructionEntry": "advanced",
|
|
@@ -4231,6 +4304,7 @@
|
|
|
4231
4304
|
"listWorkflowRuns": "advanced",
|
|
4232
4305
|
"llmPlanDistiller": "advanced",
|
|
4233
4306
|
"loadOrchestrationEnv": "advanced",
|
|
4307
|
+
"localArtifactStub": "advanced",
|
|
4234
4308
|
"looksDegenerate": "advanced",
|
|
4235
4309
|
"lookupProjectIdHint": "advanced",
|
|
4236
4310
|
"loosenReasons": "advanced",
|
|
@@ -4249,6 +4323,7 @@
|
|
|
4249
4323
|
"materializeMcpTools": "stable",
|
|
4250
4324
|
"maybeCompact": "advanced",
|
|
4251
4325
|
"mcpInjectionDroppedNotice": "advanced",
|
|
4326
|
+
"mediaTypeOf": "advanced",
|
|
4252
4327
|
"memoryBackendContract": "stable",
|
|
4253
4328
|
"memoryCaptureOptOutUnpersistedNotice": "advanced",
|
|
4254
4329
|
"memoryCaptureOptedOutNotice": "advanced",
|
|
@@ -4285,6 +4360,7 @@
|
|
|
4285
4360
|
"normalizePeerName": "advanced",
|
|
4286
4361
|
"normalizePersistedRuleHit": "advanced",
|
|
4287
4362
|
"normalizePromptEpoch": "advanced",
|
|
4363
|
+
"normalizePublishedPath": "advanced",
|
|
4288
4364
|
"normalizeRules": "advanced",
|
|
4289
4365
|
"normalizeToolResultProvenance": "advanced",
|
|
4290
4366
|
"noticeAudienceOf": "advanced",
|
|
@@ -4295,6 +4371,7 @@
|
|
|
4295
4371
|
"orgRuleVerdictFor": "advanced",
|
|
4296
4372
|
"originEquals": "stable",
|
|
4297
4373
|
"oversizeJournalResult": "advanced",
|
|
4374
|
+
"parentSpecSeatOf": "advanced",
|
|
4298
4375
|
"parkedToolIdentity": "advanced",
|
|
4299
4376
|
"parseAutoModeResponse": "advanced",
|
|
4300
4377
|
"parseCrossSessionEnvelope": "advanced",
|
|
@@ -4314,6 +4391,8 @@
|
|
|
4314
4391
|
"parseTeacherAdvice": "advanced",
|
|
4315
4392
|
"parseWorkflowMeta": "advanced",
|
|
4316
4393
|
"pathConfinableWriteToolNames": "advanced",
|
|
4394
|
+
"pathFamilyOf": "advanced",
|
|
4395
|
+
"pathIdentityOf": "advanced",
|
|
4317
4396
|
"pathRuleReachOf": "advanced",
|
|
4318
4397
|
"pathTargetBaseOf": "advanced",
|
|
4319
4398
|
"pathTargetOf": "advanced",
|
|
@@ -4326,21 +4405,20 @@
|
|
|
4326
4405
|
"peekMemoryAnnouncements": "advanced",
|
|
4327
4406
|
"peerAdmissionFor": "advanced",
|
|
4328
4407
|
"peerAxisToken": "advanced",
|
|
4329
|
-
"peerDeliveryReceiptLabel": "advanced",
|
|
4330
4408
|
"peerHeldQueueFor": "advanced",
|
|
4331
4409
|
"peerHeldQueueIfAny": "advanced",
|
|
4332
4410
|
"peerHeldQueueKey": "advanced",
|
|
4333
|
-
"peerIdleDetailOf": "advanced",
|
|
4334
4411
|
"peerIdleMachineFor": "advanced",
|
|
4335
4412
|
"peerIdleMachineIfAny": "advanced",
|
|
4336
4413
|
"peerIdleMachineKey": "advanced",
|
|
4337
4414
|
"peerIdleNoticeLabel": "advanced",
|
|
4338
|
-
"peerIdleNoticeSummary": "advanced",
|
|
4339
4415
|
"peerRecipientSuffix": "advanced",
|
|
4340
4416
|
"peerSendVerdictSeverity": "advanced",
|
|
4341
4417
|
"peerSessionBoxHandle": "advanced",
|
|
4342
4418
|
"permissionRuleSyncContract": "advanced",
|
|
4343
4419
|
"pgQuery": "advanced",
|
|
4420
|
+
"physicalPathOf": "advanced",
|
|
4421
|
+
"physicalPathOfExisting": "advanced",
|
|
4344
4422
|
"planParseRepairs": "advanced",
|
|
4345
4423
|
"precheckEditedRuleText": "advanced",
|
|
4346
4424
|
"predictMountedToolNames": "advanced",
|
|
@@ -4361,6 +4439,7 @@
|
|
|
4361
4439
|
"queryBackgroundAgents": "advanced",
|
|
4362
4440
|
"rankOf": "advanced",
|
|
4363
4441
|
"readAdoptionStatus": "advanced",
|
|
4442
|
+
"readArtifactHostCapabilities": "advanced",
|
|
4364
4443
|
"readCcSidecarMessages": "advanced",
|
|
4365
4444
|
"readCcSidecarTranscript": "advanced",
|
|
4366
4445
|
"readConsolidationDriverRun": "advanced",
|
|
@@ -4580,6 +4659,7 @@
|
|
|
4580
4659
|
"warmResume": "advanced",
|
|
4581
4660
|
"webFetchToolSpec": "advanced",
|
|
4582
4661
|
"wildcardMatch": "advanced",
|
|
4662
|
+
"win32NamespaceScreen": "advanced",
|
|
4583
4663
|
"winnerFromOutcome": "stable",
|
|
4584
4664
|
"withCcLock": "advanced",
|
|
4585
4665
|
"withRetry": "advanced",
|