@sema-agent/core 7.2.0 → 7.3.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 +43 -0
- package/dist/agents/cross-session-envelope.d.ts +7 -0
- package/dist/agents/cross-session-envelope.js +4 -0
- package/dist/agents/list-agents-tool.d.ts +55 -0
- package/dist/agents/list-agents-tool.js +94 -0
- package/dist/agents/peer-admission.d.ts +17 -1
- package/dist/agents/peer-admission.js +19 -2
- package/dist/agents/peer-directory.d.ts +208 -0
- package/dist/agents/peer-directory.js +272 -0
- package/dist/agents/peer-session-drain.d.ts +159 -0
- package/dist/agents/peer-session-drain.js +245 -0
- package/dist/agents/send-message-tool.d.ts +31 -0
- package/dist/agents/send-message-tool.js +145 -4
- package/dist/agents/subagent-steps.d.ts +11 -0
- package/dist/agents/subagent-steps.js +27 -4
- package/dist/brain/status-sink.d.ts +10 -0
- package/dist/brain/status-sink.js +13 -4
- package/dist/brain/stream-engine.d.ts +11 -0
- package/dist/brain/stream-engine.js +39 -3
- package/dist/core/arg-summary.d.ts +13 -3
- package/dist/core/arg-summary.js +138 -7
- package/dist/core/auto-mode-arming.d.ts +11 -0
- package/dist/core/auto-mode-arming.js +7 -1
- package/dist/core/auto-mode-prompt.d.ts +5 -0
- package/dist/core/auto-mode-prompt.js +2 -1
- package/dist/core/auto-mode-rebuild.d.ts +2 -1
- package/dist/core/auto-mode-rebuild.js +2 -0
- package/dist/core/checkpoint-store.d.ts +14 -0
- package/dist/core/checkpoint-store.js +4 -3
- package/dist/core/governance-codes.d.ts +1 -1
- package/dist/core/governance-codes.js +6 -0
- package/dist/core/mailbox-store.d.ts +89 -2
- package/dist/core/mailbox-store.js +77 -2
- package/dist/core/permission-rule-model.d.ts +9 -0
- package/dist/core/permission-rule-model.js +4 -1
- package/dist/core/runner/prepare-task.d.ts +20 -0
- package/dist/core/runner/prepare-task.js +152 -37
- package/dist/core/runner/runtask.js +5 -2
- package/dist/core/runner/tool-output-projection.js +1 -0
- package/dist/core/store-contracts/mailbox-store-contract.d.ts +23 -0
- package/dist/core/store-contracts/mailbox-store-contract.js +157 -1
- package/dist/core/task-notification.d.ts +38 -9
- package/dist/core/task-notification.js +8 -2
- package/dist/core/tools.js +1 -0
- package/dist/core/types.d.ts +176 -26
- package/dist/core/wiring-manifest.d.ts +62 -5
- package/dist/core/wiring-manifest.js +9 -0
- package/dist/engine/harness/agent-harness.d.ts +1 -0
- package/dist/engine/harness/agent-harness.js +3 -0
- package/dist/engine/harness/types.d.ts +3 -0
- package/dist/engine/loop/agent-loop.d.ts +7 -0
- package/dist/engine/loop/agent-loop.js +79 -0
- package/dist/engine/loop/types.d.ts +42 -0
- package/dist/index.d.ts +12 -5
- package/dist/index.js +11 -4
- package/dist/internal/harness-types.d.ts +1 -1
- package/dist/stores/cc/mailbox-store.d.ts +1 -1
- package/dist/stores/cc/mailbox-store.js +13 -0
- package/dist/stores/file/adoption/marker.d.ts +1 -1
- package/dist/stores/file/mailbox-store.d.ts +57 -0
- package/dist/stores/file/mailbox-store.js +369 -18
- package/dist/tools/fs/fs-write.js +69 -3
- package/package.json +1 -1
- package/test/export-surface.snapshot.json +121 -1
|
@@ -83,6 +83,35 @@ export function createEditFileTool(env, state, rootCanonical, cwdRef, additional
|
|
|
83
83
|
replace_all: Type.Optional(Type.Boolean({ description: "Replace all occurrences of old_string (default false)" })),
|
|
84
84
|
}),
|
|
85
85
|
effect: "write",
|
|
86
|
+
validateInput: async (args, ctx) => {
|
|
87
|
+
const a = args;
|
|
88
|
+
if (Array.isArray(a.edits) && a.edits.length > 0)
|
|
89
|
+
return { ok: true };
|
|
90
|
+
if (typeof a.old_string !== "string" || typeof a.new_string !== "string")
|
|
91
|
+
return { ok: true };
|
|
92
|
+
const path = fileArgPath(args);
|
|
93
|
+
if (path === undefined)
|
|
94
|
+
return { ok: true };
|
|
95
|
+
const r = await resolveKey(env, rootCanonical, path, ctx.signal, cwdRef?.current, additionalRoots);
|
|
96
|
+
if (!r.ok)
|
|
97
|
+
return { ok: true };
|
|
98
|
+
if (a.old_string === a.new_string)
|
|
99
|
+
return { ok: true };
|
|
100
|
+
const exists = await env.exists(r.key, ctx.signal);
|
|
101
|
+
if (!exists.ok || !exists.value)
|
|
102
|
+
return { ok: true };
|
|
103
|
+
const editInfo = await env.fileInfo(r.key, ctx.signal);
|
|
104
|
+
if (editInfo.ok && editInfo.value.size > MAX_EDIT_BYTES)
|
|
105
|
+
return { ok: true };
|
|
106
|
+
if (a.old_string === "")
|
|
107
|
+
return { ok: true };
|
|
108
|
+
if (ipynbRedirect("Edit", path))
|
|
109
|
+
return { ok: true };
|
|
110
|
+
const notRead = requireRead(state, r.key);
|
|
111
|
+
if (notRead === undefined)
|
|
112
|
+
return { ok: true };
|
|
113
|
+
return { ok: false, code: notRead.code, message: await notReadRefusalText(env, "Edit", r.key, notRead, ctx.signal, READ_REFUSED_ESCAPE_HINT) };
|
|
114
|
+
},
|
|
86
115
|
execute: async (args, ctx) => {
|
|
87
116
|
const a = args;
|
|
88
117
|
const batch = Array.isArray(a.edits) && a.edits.length > 0;
|
|
@@ -290,6 +319,23 @@ export function createWriteFileTool(env, state, rootCanonical, cwdRef, additiona
|
|
|
290
319
|
content: Type.String({ description: "The content to write to the file" }),
|
|
291
320
|
}),
|
|
292
321
|
effect: "write",
|
|
322
|
+
validateInput: async (args, ctx) => {
|
|
323
|
+
const path = fileArgPath(args);
|
|
324
|
+
if (path === undefined)
|
|
325
|
+
return { ok: true };
|
|
326
|
+
if (ipynbRedirect("Write", path))
|
|
327
|
+
return { ok: true };
|
|
328
|
+
const r = await resolveKey(env, rootCanonical, path, ctx.signal, cwdRef?.current, additionalRoots);
|
|
329
|
+
if (!r.ok)
|
|
330
|
+
return { ok: true };
|
|
331
|
+
const exists = await env.exists(r.key, ctx.signal);
|
|
332
|
+
if (!exists.ok || !exists.value)
|
|
333
|
+
return { ok: true };
|
|
334
|
+
const notRead = requireRead(state, r.key);
|
|
335
|
+
if (notRead === undefined)
|
|
336
|
+
return { ok: true };
|
|
337
|
+
return { ok: false, code: notRead.code, message: await notReadRefusalText(env, "Write", r.key, notRead, ctx.signal, READ_REFUSED_ESCAPE_HINT) };
|
|
338
|
+
},
|
|
293
339
|
execute: async (args, ctx) => {
|
|
294
340
|
const { content } = args;
|
|
295
341
|
const path = fileArgPath(args);
|
|
@@ -356,6 +402,9 @@ export function createWriteFileTool(env, state, rootCanonical, cwdRef, additiona
|
|
|
356
402
|
},
|
|
357
403
|
});
|
|
358
404
|
}
|
|
405
|
+
const notebookNotIpynbMessage = (notebookPath) => `Error (NotebookEdit): "${notebookPath}" is not a .ipynb file; use Edit for other file types.`;
|
|
406
|
+
const NOTEBOOK_CELL_TYPE_REQUIRED_MESSAGE = `Error (NotebookEdit): Cell type is required when using edit_mode=insert.`;
|
|
407
|
+
const NOTEBOOK_CELL_ID_REQUIRED_MESSAGE = `Error (NotebookEdit): cell_id is required for replace/delete.`;
|
|
359
408
|
export function createNotebookEditTool(env, state, rootCanonical, cwdRef, additionalRoots, beforeWrite, trackEdit) {
|
|
360
409
|
return defineTool({
|
|
361
410
|
name: "NotebookEdit",
|
|
@@ -382,18 +431,35 @@ export function createNotebookEditTool(env, state, rootCanonical, cwdRef, additi
|
|
|
382
431
|
})),
|
|
383
432
|
}),
|
|
384
433
|
effect: "write",
|
|
434
|
+
validateInput: async (args, ctx) => {
|
|
435
|
+
const a = args;
|
|
436
|
+
const mode = a.edit_mode ?? "replace";
|
|
437
|
+
if (!a.notebook_path.toLowerCase().endsWith(".ipynb"))
|
|
438
|
+
return { ok: false, code: "invalid", message: notebookNotIpynbMessage(a.notebook_path) };
|
|
439
|
+
if (mode === "insert" && !a.cell_type)
|
|
440
|
+
return { ok: false, code: "invalid", message: NOTEBOOK_CELL_TYPE_REQUIRED_MESSAGE };
|
|
441
|
+
if (mode !== "insert" && !a.cell_id)
|
|
442
|
+
return { ok: false, code: "invalid", message: NOTEBOOK_CELL_ID_REQUIRED_MESSAGE };
|
|
443
|
+
const r = await resolveKey(env, rootCanonical, a.notebook_path, ctx.signal, cwdRef?.current, additionalRoots);
|
|
444
|
+
if (!r.ok)
|
|
445
|
+
return { ok: true };
|
|
446
|
+
const notRead = requireRead(state, r.key);
|
|
447
|
+
if (notRead === undefined)
|
|
448
|
+
return { ok: true };
|
|
449
|
+
return { ok: false, code: notRead.code, message: await notReadRefusalText(env, "NotebookEdit", r.key, notRead, ctx.signal, READ_REFUSED_ESCAPE_HINT) };
|
|
450
|
+
},
|
|
385
451
|
execute: async (args, ctx) => {
|
|
386
452
|
const a = args;
|
|
387
453
|
const { notebook_path, cell_id, new_source } = a;
|
|
388
454
|
let cellType = a.cell_type;
|
|
389
455
|
const mode = a.edit_mode ?? "replace";
|
|
390
456
|
if (!notebook_path.toLowerCase().endsWith(".ipynb")) {
|
|
391
|
-
return errorResult(
|
|
457
|
+
return errorResult(notebookNotIpynbMessage(notebook_path));
|
|
392
458
|
}
|
|
393
459
|
if (mode === "insert" && !cellType)
|
|
394
|
-
return errorResult(
|
|
460
|
+
return errorResult(NOTEBOOK_CELL_TYPE_REQUIRED_MESSAGE);
|
|
395
461
|
if (mode !== "insert" && !cell_id)
|
|
396
|
-
return errorResult(
|
|
462
|
+
return errorResult(NOTEBOOK_CELL_ID_REQUIRED_MESSAGE);
|
|
397
463
|
const r = await resolveKey(env, rootCanonical, notebook_path, ctx.signal, cwdRef?.current, additionalRoots);
|
|
398
464
|
if (!r.ok)
|
|
399
465
|
return errorResult(violationText("NotebookEdit", r.violation), violationDetails(r.violation));
|
package/package.json
CHANGED
|
@@ -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": 1964,
|
|
5
5
|
"exports": {
|
|
6
6
|
"A2ATaskState": "type",
|
|
7
7
|
"A2ATaskStateReversal": "type",
|
|
@@ -30,6 +30,7 @@
|
|
|
30
30
|
"AUTONOMOUS_LOOP_PREAMBLE_PERSISTENT": "variable",
|
|
31
31
|
"AUTONOMOUS_LOOP_SENTINEL": "variable",
|
|
32
32
|
"AUTO_MODE_ARMING_RECIPE_VERSION": "variable",
|
|
33
|
+
"AUTO_MODE_ARM_REASONS": "variable",
|
|
33
34
|
"AUTO_MODE_BASE_PROMPT": "variable",
|
|
34
35
|
"AUTO_MODE_DEFAULTS_SENTINEL": "variable",
|
|
35
36
|
"AUTO_MODE_PERMISSIONS_EXTERNAL": "variable",
|
|
@@ -78,6 +79,7 @@
|
|
|
78
79
|
"AssertOracleIsolationOptions": "interface",
|
|
79
80
|
"AssistantMessage": "interface",
|
|
80
81
|
"AssistantMessageEvent": "type",
|
|
82
|
+
"AutoModeArmReason": "type",
|
|
81
83
|
"AutoModeArmingFace": "interface",
|
|
82
84
|
"AutoModeArmingFold": "type",
|
|
83
85
|
"AutoModeArmingRecipe": "interface",
|
|
@@ -155,6 +157,7 @@
|
|
|
155
157
|
"CONSOLIDATION_SYSTEM_PROMPT": "variable",
|
|
156
158
|
"CONTRACT_KIT_ENGINE_VERSION": "variable",
|
|
157
159
|
"COORDINATOR_ROLE_PROMPT": "variable",
|
|
160
|
+
"CROSS_SESSION_CLASSIFIER_RULE": "variable",
|
|
158
161
|
"CROSS_SESSION_HOLD_CAUSES": "variable",
|
|
159
162
|
"CROSS_SESSION_INBOUND_SETTINGS": "variable",
|
|
160
163
|
"CROSS_SESSION_MESSAGE_NOTICE": "variable",
|
|
@@ -453,6 +456,7 @@
|
|
|
453
456
|
"InMemoryFileHistoryStoreOptions": "interface",
|
|
454
457
|
"InMemoryMailboxStore": "class",
|
|
455
458
|
"InMemoryMemoryStore": "class",
|
|
459
|
+
"InMemoryPeerDirectory": "interface",
|
|
456
460
|
"InMemoryPermissionRuleStore": "class",
|
|
457
461
|
"InMemoryRuleApprovalRecordStore": "class",
|
|
458
462
|
"InMemorySessionPolicyStore": "class",
|
|
@@ -472,6 +476,9 @@
|
|
|
472
476
|
"KillProcessTreeOptions": "type",
|
|
473
477
|
"LEGACY_PENDING_STEER_INPUT_ID": "variable",
|
|
474
478
|
"LINEAGE_FILE": "variable",
|
|
479
|
+
"LIST_AGENTS_MAX_RESULT_CHARS": "variable",
|
|
480
|
+
"LIST_AGENTS_TOOL_ALIAS": "variable",
|
|
481
|
+
"LIST_AGENTS_TOOL_NAME": "variable",
|
|
475
482
|
"LLM_DISTILLER_CONTRACT": "variable",
|
|
476
483
|
"LLM_DISTILLER_CONTRACTS": "variable",
|
|
477
484
|
"LLM_DISTILLER_CONTRACT_DL2": "variable",
|
|
@@ -485,6 +492,8 @@
|
|
|
485
492
|
"LayeredRecallResult": "type",
|
|
486
493
|
"LineagePendingTxn": "interface",
|
|
487
494
|
"LineagePromotion": "interface",
|
|
495
|
+
"ListAgentsRow": "interface",
|
|
496
|
+
"ListAgentsToolOptions": "interface",
|
|
488
497
|
"LlmConsolidationPlan": "interface",
|
|
489
498
|
"LlmConsolidationPlanArm": "interface",
|
|
490
499
|
"LlmConsolidationPlanProduct": "interface",
|
|
@@ -509,6 +518,10 @@
|
|
|
509
518
|
"LspToolOptions": "interface",
|
|
510
519
|
"LspTransport": "interface",
|
|
511
520
|
"MAILBOX_CONTRACT_SCOPE": "variable",
|
|
521
|
+
"MAILBOX_CROSS_PROCESS_UNSAFE_CODE": "variable",
|
|
522
|
+
"MAILBOX_INVALID_PEER_META_CODE": "variable",
|
|
523
|
+
"MAILBOX_PEER_FROM_MODES": "variable",
|
|
524
|
+
"MAILBOX_PEER_RECORD_KINDS": "variable",
|
|
512
525
|
"MAILBOX_TOMBSTONED_RECIPIENT_CODE": "variable",
|
|
513
526
|
"MASS_DELETION_FUSE_RATIO": "variable",
|
|
514
527
|
"MAX_ACTOR_FIELD_CHARS": "variable",
|
|
@@ -552,10 +565,17 @@
|
|
|
552
565
|
"MONITOR_DEFAULT_TIMEOUT_MS": "variable",
|
|
553
566
|
"MONITOR_MAX_BATCHES_PER_MINUTE": "variable",
|
|
554
567
|
"MONITOR_MAX_TIMEOUT_MS": "variable",
|
|
568
|
+
"MailboxAppendMessage": "interface",
|
|
569
|
+
"MailboxCrossProcessContractHooks": "interface",
|
|
570
|
+
"MailboxCrossProcessVerdict": "type",
|
|
555
571
|
"MailboxLease": "interface",
|
|
556
572
|
"MailboxMessage": "interface",
|
|
573
|
+
"MailboxPeerFromMode": "type",
|
|
574
|
+
"MailboxPeerMeta": "interface",
|
|
575
|
+
"MailboxPeerRecordKind": "type",
|
|
557
576
|
"MailboxStore": "interface",
|
|
558
577
|
"MailboxStoreError": "class",
|
|
578
|
+
"MailboxStoreErrorCode": "type",
|
|
559
579
|
"MailboxTombstonedRecipientContractHooks": "interface",
|
|
560
580
|
"ManagedRetentionCapability": "interface",
|
|
561
581
|
"ManifestDurability": "type",
|
|
@@ -702,6 +722,10 @@
|
|
|
702
722
|
"PEER_REF_MIN": "variable",
|
|
703
723
|
"PEER_REF_RE": "variable",
|
|
704
724
|
"PEER_SEND_VERDICT_CODES": "variable",
|
|
725
|
+
"PEER_SESSION_ID_GRAMMAR": "variable",
|
|
726
|
+
"PEER_SESSION_ID_UNGRAMMATICAL_CODE": "variable",
|
|
727
|
+
"PEER_SESSION_RECORD_MAX_BYTES": "variable",
|
|
728
|
+
"PEER_SESSION_RECORD_SCHEMA_VERSION": "variable",
|
|
705
729
|
"PENDING_STEER_FROZEN_FIELDS": "variable",
|
|
706
730
|
"PENDING_STEER_QUEUE_BYTE_BUDGET_BYTES": "variable",
|
|
707
731
|
"PERMISSION_MODE_CLASSES": "variable",
|
|
@@ -731,15 +755,29 @@
|
|
|
731
755
|
"PeerAdmissionOptions": "interface",
|
|
732
756
|
"PeerAdmissionRefusal": "type",
|
|
733
757
|
"PeerAdmissionRequest": "interface",
|
|
758
|
+
"PeerAdmissionStage": "type",
|
|
734
759
|
"PeerAdmissionVerdict": "type",
|
|
735
760
|
"PeerAxisTag": "type",
|
|
761
|
+
"PeerDirectory": "interface",
|
|
762
|
+
"PeerDirectoryAccess": "interface",
|
|
736
763
|
"PeerIdentity": "interface",
|
|
737
764
|
"PeerInboundChainRef": "interface",
|
|
765
|
+
"PeerLaneMountVerdict": "type",
|
|
766
|
+
"PeerLivenessProbe": "interface",
|
|
738
767
|
"PeerRefEntry": "interface",
|
|
739
768
|
"PeerRefusalCode": "type",
|
|
769
|
+
"PeerRegistryDirectoryRefusal": "type",
|
|
770
|
+
"PeerRegistryDirectoryVerdict": "type",
|
|
740
771
|
"PeerSelfRef": "interface",
|
|
741
772
|
"PeerSendVerdict": "type",
|
|
742
773
|
"PeerSendVerdictCode": "type",
|
|
774
|
+
"PeerSessionCandidate": "interface",
|
|
775
|
+
"PeerSessionLiveness": "type",
|
|
776
|
+
"PeerSessionRecord": "interface",
|
|
777
|
+
"PeerSessionRecordRead": "type",
|
|
778
|
+
"PeerSessionRecordRefusal": "type",
|
|
779
|
+
"PeerSessionResolution": "type",
|
|
780
|
+
"PeerSessionTempo": "type",
|
|
743
781
|
"PendingAction": "type",
|
|
744
782
|
"PendingSteerEntry": "interface",
|
|
745
783
|
"PendingSteerInput": "interface",
|
|
@@ -972,6 +1010,7 @@
|
|
|
972
1010
|
"SCOPE_SEGMENT_MAX_ENCODED": "variable",
|
|
973
1011
|
"SEMA_DEFAULT_PACK": "variable",
|
|
974
1012
|
"SEND_MESSAGE_TOOL_NAME": "variable",
|
|
1013
|
+
"SESSION_BOX_PREFIX": "variable",
|
|
975
1014
|
"SESSION_CAPTURE_OPTOUT_DIR": "variable",
|
|
976
1015
|
"SESSION_LOG_DIGEST_SCHEME": "variable",
|
|
977
1016
|
"SHARED_MEMORY_LIST_PAGE_SIZE": "variable",
|
|
@@ -1162,6 +1201,8 @@
|
|
|
1162
1201
|
"ToolEffect": "type",
|
|
1163
1202
|
"ToolExecuteContext": "interface",
|
|
1164
1203
|
"ToolFingerprintInput": "interface",
|
|
1204
|
+
"ToolInputValidationContext": "interface",
|
|
1205
|
+
"ToolInputVerdict": "type",
|
|
1165
1206
|
"ToolModelGateRule": "interface",
|
|
1166
1207
|
"ToolOrigin": "type",
|
|
1167
1208
|
"ToolPolicy": "interface",
|
|
@@ -1214,6 +1255,8 @@
|
|
|
1214
1255
|
"VerificationResult": "interface",
|
|
1215
1256
|
"VerifyConfig": "interface",
|
|
1216
1257
|
"VmLifecycleOptions": "interface",
|
|
1258
|
+
"WAITING_FIRST_TOKEN_AFTER_MS": "variable",
|
|
1259
|
+
"WAITING_FIRST_TOKEN_EVERY_MS": "variable",
|
|
1217
1260
|
"WEBFETCH_SUMMARY_GUIDELINES": "variable",
|
|
1218
1261
|
"WEBFETCH_SUMMARY_MAX_CONTENT": "variable",
|
|
1219
1262
|
"WEB_FETCH_TOOL_NAME": "variable",
|
|
@@ -1424,6 +1467,8 @@
|
|
|
1424
1467
|
"createFsWriteGatePolicy": "function",
|
|
1425
1468
|
"createHookEnvCapabilities": "function",
|
|
1426
1469
|
"createImageDownsampler": "function",
|
|
1470
|
+
"createInMemoryPeerDirectory": "function",
|
|
1471
|
+
"createListAgentsTool": "function",
|
|
1427
1472
|
"createLspTool": "function",
|
|
1428
1473
|
"createMemoryTaskListStore": "function",
|
|
1429
1474
|
"createMonitorTool": "function",
|
|
@@ -1463,6 +1508,7 @@
|
|
|
1463
1508
|
"decodeScopeAttribute": "function",
|
|
1464
1509
|
"decodeScopeSegment": "function",
|
|
1465
1510
|
"defaultLspSpawn": "variable",
|
|
1511
|
+
"defaultPeerLivenessProbe": "variable",
|
|
1466
1512
|
"defaultPromptProvider": "variable",
|
|
1467
1513
|
"defaultTaskRegistry": "variable",
|
|
1468
1514
|
"defineAgent": "function",
|
|
@@ -1582,6 +1628,8 @@
|
|
|
1582
1628
|
"isIsolated": "function",
|
|
1583
1629
|
"isModelGatedForClass": "function",
|
|
1584
1630
|
"isNamespacedCoveringRuleName": "function",
|
|
1631
|
+
"isPeerSessionId": "function",
|
|
1632
|
+
"isPeerSessionProcessAlive": "function",
|
|
1585
1633
|
"isPermissionModeClass": "function",
|
|
1586
1634
|
"isPersonalScope": "function",
|
|
1587
1635
|
"isQuestionUnavailable": "function",
|
|
@@ -1607,6 +1655,7 @@
|
|
|
1607
1655
|
"joinRuleStates": "function",
|
|
1608
1656
|
"judgeCrossSessionInbound": "function",
|
|
1609
1657
|
"judgePeerAdmission": "function",
|
|
1658
|
+
"judgePeerRecordFile": "function",
|
|
1610
1659
|
"killProcessTree": "function",
|
|
1611
1660
|
"languageFor": "function",
|
|
1612
1661
|
"leafIdAfterEntry": "function",
|
|
@@ -1624,6 +1673,8 @@
|
|
|
1624
1673
|
"lspFailureOf": "function",
|
|
1625
1674
|
"mailboxAckOwnershipContract": "function",
|
|
1626
1675
|
"mailboxBundledOnlyContract": "function",
|
|
1676
|
+
"mailboxCrossProcessContract": "function",
|
|
1677
|
+
"mailboxCrossProcessMountVerdict": "function",
|
|
1627
1678
|
"mailboxStoreContract": "function",
|
|
1628
1679
|
"mailboxTombstonedRecipientContract": "function",
|
|
1629
1680
|
"markSessionCaptureOptOut": "function",
|
|
@@ -1651,6 +1702,7 @@
|
|
|
1651
1702
|
"mintExposurePartitionedPlan": "function",
|
|
1652
1703
|
"mintLlmConsolidationPlan": "function",
|
|
1653
1704
|
"mintPeerRef": "function",
|
|
1705
|
+
"mintPeerSessionCandidates": "function",
|
|
1654
1706
|
"mintReminderMark": "function",
|
|
1655
1707
|
"mintRuleTicket": "function",
|
|
1656
1708
|
"mintSystemReminder": "function",
|
|
@@ -1684,6 +1736,7 @@
|
|
|
1684
1736
|
"parseLeadingCommandName": "function",
|
|
1685
1737
|
"parseModelMention": "function",
|
|
1686
1738
|
"parsePeerNameRef": "function",
|
|
1739
|
+
"parsePeerSessionAddress": "function",
|
|
1687
1740
|
"parsePermissionRule": "function",
|
|
1688
1741
|
"parseProjectMarker": "function",
|
|
1689
1742
|
"parseResult": "function",
|
|
@@ -1698,6 +1751,7 @@
|
|
|
1698
1751
|
"peerAdmissionFor": "function",
|
|
1699
1752
|
"peerAxisToken": "function",
|
|
1700
1753
|
"peerSendVerdictSeverity": "function",
|
|
1754
|
+
"peerSessionBoxHandle": "function",
|
|
1701
1755
|
"permissionRuleSyncContract": "function",
|
|
1702
1756
|
"pgQuery": "function",
|
|
1703
1757
|
"planParseRepairs": "function",
|
|
@@ -1722,6 +1776,8 @@
|
|
|
1722
1776
|
"readDegradation": "function",
|
|
1723
1777
|
"readIntentCredentials": "function",
|
|
1724
1778
|
"readJsonlRecords": "function",
|
|
1779
|
+
"readMailboxPeerMeta": "function",
|
|
1780
|
+
"readPeerSessionRecord": "function",
|
|
1725
1781
|
"readPendingSteerQueue": "function",
|
|
1726
1782
|
"readRootAdoptionFile": "function",
|
|
1727
1783
|
"readSessionCaptureOptOut": "function",
|
|
@@ -1747,6 +1803,7 @@
|
|
|
1747
1803
|
"renderAnnouncements": "function",
|
|
1748
1804
|
"renderAutoModeAction": "function",
|
|
1749
1805
|
"renderAutoModeWindow": "function",
|
|
1806
|
+
"renderCrossSessionMessageFrame": "function",
|
|
1750
1807
|
"renderNamedWorkflowListing": "function",
|
|
1751
1808
|
"renderTaskNotificationXml": "function",
|
|
1752
1809
|
"renderUntrustedCommandText": "function",
|
|
@@ -1774,6 +1831,7 @@
|
|
|
1774
1831
|
"resolveMemoryEngineRoot": "function",
|
|
1775
1832
|
"resolveModel": "function",
|
|
1776
1833
|
"resolvePeerAdmissionConfig": "function",
|
|
1834
|
+
"resolvePeerSessions": "function",
|
|
1777
1835
|
"resolveProjectId": "function",
|
|
1778
1836
|
"resolveQuestionSeam": "function",
|
|
1779
1837
|
"resolveReadDenyBuiltins": "function",
|
|
@@ -1854,6 +1912,7 @@
|
|
|
1854
1912
|
"sqliteQuery": "function",
|
|
1855
1913
|
"startWorkflow": "function",
|
|
1856
1914
|
"stripEngineMetadata": "function",
|
|
1915
|
+
"stripFormatCharacters": "function",
|
|
1857
1916
|
"stripRev": "function",
|
|
1858
1917
|
"subscribeWorkflow": "function",
|
|
1859
1918
|
"suggestRulesForCommand": "function",
|
|
@@ -1891,6 +1950,7 @@
|
|
|
1891
1950
|
"validateSelectedIds": "function",
|
|
1892
1951
|
"verifyCompleted": "function",
|
|
1893
1952
|
"verifyPromptArtifact": "function",
|
|
1953
|
+
"vetPeerRegistryDirectory": "function",
|
|
1894
1954
|
"warmResume": "function",
|
|
1895
1955
|
"webFetchToolSpec": "function",
|
|
1896
1956
|
"wildcardMatch": "function",
|
|
@@ -1936,6 +1996,7 @@
|
|
|
1936
1996
|
"AUTONOMOUS_LOOP_PREAMBLE_PERSISTENT": "advanced",
|
|
1937
1997
|
"AUTONOMOUS_LOOP_SENTINEL": "advanced",
|
|
1938
1998
|
"AUTO_MODE_ARMING_RECIPE_VERSION": "advanced",
|
|
1999
|
+
"AUTO_MODE_ARM_REASONS": "advanced",
|
|
1939
2000
|
"AUTO_MODE_BASE_PROMPT": "advanced",
|
|
1940
2001
|
"AUTO_MODE_DEFAULTS_SENTINEL": "advanced",
|
|
1941
2002
|
"AUTO_MODE_PERMISSIONS_EXTERNAL": "advanced",
|
|
@@ -1984,6 +2045,7 @@
|
|
|
1984
2045
|
"AssertOracleIsolationOptions": "advanced",
|
|
1985
2046
|
"AssistantMessage": "stable",
|
|
1986
2047
|
"AssistantMessageEvent": "stable",
|
|
2048
|
+
"AutoModeArmReason": "advanced",
|
|
1987
2049
|
"AutoModeArmingFace": "advanced",
|
|
1988
2050
|
"AutoModeArmingFold": "advanced",
|
|
1989
2051
|
"AutoModeArmingRecipe": "advanced",
|
|
@@ -2061,6 +2123,7 @@
|
|
|
2061
2123
|
"CONSOLIDATION_SYSTEM_PROMPT": "internal",
|
|
2062
2124
|
"CONTRACT_KIT_ENGINE_VERSION": "advanced",
|
|
2063
2125
|
"COORDINATOR_ROLE_PROMPT": "advanced",
|
|
2126
|
+
"CROSS_SESSION_CLASSIFIER_RULE": "advanced",
|
|
2064
2127
|
"CROSS_SESSION_HOLD_CAUSES": "advanced",
|
|
2065
2128
|
"CROSS_SESSION_INBOUND_SETTINGS": "advanced",
|
|
2066
2129
|
"CROSS_SESSION_MESSAGE_NOTICE": "advanced",
|
|
@@ -2359,6 +2422,7 @@
|
|
|
2359
2422
|
"InMemoryFileHistoryStoreOptions": "advanced",
|
|
2360
2423
|
"InMemoryMailboxStore": "advanced",
|
|
2361
2424
|
"InMemoryMemoryStore": "stable",
|
|
2425
|
+
"InMemoryPeerDirectory": "advanced",
|
|
2362
2426
|
"InMemoryPermissionRuleStore": "advanced",
|
|
2363
2427
|
"InMemoryRuleApprovalRecordStore": "advanced",
|
|
2364
2428
|
"InMemorySessionPolicyStore": "advanced",
|
|
@@ -2378,6 +2442,9 @@
|
|
|
2378
2442
|
"KillProcessTreeOptions": "internal",
|
|
2379
2443
|
"LEGACY_PENDING_STEER_INPUT_ID": "advanced",
|
|
2380
2444
|
"LINEAGE_FILE": "advanced",
|
|
2445
|
+
"LIST_AGENTS_MAX_RESULT_CHARS": "advanced",
|
|
2446
|
+
"LIST_AGENTS_TOOL_ALIAS": "advanced",
|
|
2447
|
+
"LIST_AGENTS_TOOL_NAME": "advanced",
|
|
2381
2448
|
"LLM_DISTILLER_CONTRACT": "advanced",
|
|
2382
2449
|
"LLM_DISTILLER_CONTRACTS": "advanced",
|
|
2383
2450
|
"LLM_DISTILLER_CONTRACT_DL2": "advanced",
|
|
@@ -2391,6 +2458,8 @@
|
|
|
2391
2458
|
"LayeredRecallResult": "advanced",
|
|
2392
2459
|
"LineagePendingTxn": "advanced",
|
|
2393
2460
|
"LineagePromotion": "advanced",
|
|
2461
|
+
"ListAgentsRow": "advanced",
|
|
2462
|
+
"ListAgentsToolOptions": "advanced",
|
|
2394
2463
|
"LlmConsolidationPlan": "advanced",
|
|
2395
2464
|
"LlmConsolidationPlanArm": "advanced",
|
|
2396
2465
|
"LlmConsolidationPlanProduct": "advanced",
|
|
@@ -2415,6 +2484,10 @@
|
|
|
2415
2484
|
"LspToolOptions": "advanced",
|
|
2416
2485
|
"LspTransport": "advanced",
|
|
2417
2486
|
"MAILBOX_CONTRACT_SCOPE": "advanced",
|
|
2487
|
+
"MAILBOX_CROSS_PROCESS_UNSAFE_CODE": "advanced",
|
|
2488
|
+
"MAILBOX_INVALID_PEER_META_CODE": "advanced",
|
|
2489
|
+
"MAILBOX_PEER_FROM_MODES": "advanced",
|
|
2490
|
+
"MAILBOX_PEER_RECORD_KINDS": "advanced",
|
|
2418
2491
|
"MAILBOX_TOMBSTONED_RECIPIENT_CODE": "advanced",
|
|
2419
2492
|
"MASS_DELETION_FUSE_RATIO": "advanced",
|
|
2420
2493
|
"MAX_ACTOR_FIELD_CHARS": "advanced",
|
|
@@ -2458,10 +2531,17 @@
|
|
|
2458
2531
|
"MONITOR_DEFAULT_TIMEOUT_MS": "advanced",
|
|
2459
2532
|
"MONITOR_MAX_BATCHES_PER_MINUTE": "advanced",
|
|
2460
2533
|
"MONITOR_MAX_TIMEOUT_MS": "advanced",
|
|
2534
|
+
"MailboxAppendMessage": "advanced",
|
|
2535
|
+
"MailboxCrossProcessContractHooks": "advanced",
|
|
2536
|
+
"MailboxCrossProcessVerdict": "advanced",
|
|
2461
2537
|
"MailboxLease": "advanced",
|
|
2462
2538
|
"MailboxMessage": "advanced",
|
|
2539
|
+
"MailboxPeerFromMode": "advanced",
|
|
2540
|
+
"MailboxPeerMeta": "advanced",
|
|
2541
|
+
"MailboxPeerRecordKind": "advanced",
|
|
2463
2542
|
"MailboxStore": "advanced",
|
|
2464
2543
|
"MailboxStoreError": "advanced",
|
|
2544
|
+
"MailboxStoreErrorCode": "advanced",
|
|
2465
2545
|
"MailboxTombstonedRecipientContractHooks": "advanced",
|
|
2466
2546
|
"ManagedRetentionCapability": "advanced",
|
|
2467
2547
|
"ManifestDurability": "advanced",
|
|
@@ -2608,6 +2688,10 @@
|
|
|
2608
2688
|
"PEER_REF_MIN": "advanced",
|
|
2609
2689
|
"PEER_REF_RE": "advanced",
|
|
2610
2690
|
"PEER_SEND_VERDICT_CODES": "advanced",
|
|
2691
|
+
"PEER_SESSION_ID_GRAMMAR": "advanced",
|
|
2692
|
+
"PEER_SESSION_ID_UNGRAMMATICAL_CODE": "advanced",
|
|
2693
|
+
"PEER_SESSION_RECORD_MAX_BYTES": "advanced",
|
|
2694
|
+
"PEER_SESSION_RECORD_SCHEMA_VERSION": "advanced",
|
|
2611
2695
|
"PENDING_STEER_FROZEN_FIELDS": "advanced",
|
|
2612
2696
|
"PENDING_STEER_QUEUE_BYTE_BUDGET_BYTES": "advanced",
|
|
2613
2697
|
"PERMISSION_MODE_CLASSES": "advanced",
|
|
@@ -2637,15 +2721,29 @@
|
|
|
2637
2721
|
"PeerAdmissionOptions": "advanced",
|
|
2638
2722
|
"PeerAdmissionRefusal": "advanced",
|
|
2639
2723
|
"PeerAdmissionRequest": "advanced",
|
|
2724
|
+
"PeerAdmissionStage": "advanced",
|
|
2640
2725
|
"PeerAdmissionVerdict": "advanced",
|
|
2641
2726
|
"PeerAxisTag": "advanced",
|
|
2727
|
+
"PeerDirectory": "advanced",
|
|
2728
|
+
"PeerDirectoryAccess": "advanced",
|
|
2642
2729
|
"PeerIdentity": "advanced",
|
|
2643
2730
|
"PeerInboundChainRef": "advanced",
|
|
2731
|
+
"PeerLaneMountVerdict": "advanced",
|
|
2732
|
+
"PeerLivenessProbe": "advanced",
|
|
2644
2733
|
"PeerRefEntry": "advanced",
|
|
2645
2734
|
"PeerRefusalCode": "advanced",
|
|
2735
|
+
"PeerRegistryDirectoryRefusal": "advanced",
|
|
2736
|
+
"PeerRegistryDirectoryVerdict": "advanced",
|
|
2646
2737
|
"PeerSelfRef": "advanced",
|
|
2647
2738
|
"PeerSendVerdict": "advanced",
|
|
2648
2739
|
"PeerSendVerdictCode": "advanced",
|
|
2740
|
+
"PeerSessionCandidate": "advanced",
|
|
2741
|
+
"PeerSessionLiveness": "advanced",
|
|
2742
|
+
"PeerSessionRecord": "advanced",
|
|
2743
|
+
"PeerSessionRecordRead": "advanced",
|
|
2744
|
+
"PeerSessionRecordRefusal": "advanced",
|
|
2745
|
+
"PeerSessionResolution": "advanced",
|
|
2746
|
+
"PeerSessionTempo": "advanced",
|
|
2649
2747
|
"PendingAction": "advanced",
|
|
2650
2748
|
"PendingSteerEntry": "stable",
|
|
2651
2749
|
"PendingSteerInput": "stable",
|
|
@@ -2878,6 +2976,7 @@
|
|
|
2878
2976
|
"SCOPE_SEGMENT_MAX_ENCODED": "advanced",
|
|
2879
2977
|
"SEMA_DEFAULT_PACK": "advanced",
|
|
2880
2978
|
"SEND_MESSAGE_TOOL_NAME": "advanced",
|
|
2979
|
+
"SESSION_BOX_PREFIX": "advanced",
|
|
2881
2980
|
"SESSION_CAPTURE_OPTOUT_DIR": "advanced",
|
|
2882
2981
|
"SESSION_LOG_DIGEST_SCHEME": "internal",
|
|
2883
2982
|
"SHARED_MEMORY_LIST_PAGE_SIZE": "advanced",
|
|
@@ -3068,6 +3167,8 @@
|
|
|
3068
3167
|
"ToolEffect": "advanced",
|
|
3069
3168
|
"ToolExecuteContext": "advanced",
|
|
3070
3169
|
"ToolFingerprintInput": "advanced",
|
|
3170
|
+
"ToolInputValidationContext": "internal",
|
|
3171
|
+
"ToolInputVerdict": "internal",
|
|
3071
3172
|
"ToolModelGateRule": "advanced",
|
|
3072
3173
|
"ToolOrigin": "advanced",
|
|
3073
3174
|
"ToolPolicy": "stable",
|
|
@@ -3120,6 +3221,8 @@
|
|
|
3120
3221
|
"VerificationResult": "advanced",
|
|
3121
3222
|
"VerifyConfig": "advanced",
|
|
3122
3223
|
"VmLifecycleOptions": "advanced",
|
|
3224
|
+
"WAITING_FIRST_TOKEN_AFTER_MS": "advanced",
|
|
3225
|
+
"WAITING_FIRST_TOKEN_EVERY_MS": "advanced",
|
|
3123
3226
|
"WEBFETCH_SUMMARY_GUIDELINES": "advanced",
|
|
3124
3227
|
"WEBFETCH_SUMMARY_MAX_CONTENT": "advanced",
|
|
3125
3228
|
"WEB_FETCH_TOOL_NAME": "advanced",
|
|
@@ -3330,6 +3433,8 @@
|
|
|
3330
3433
|
"createFsWriteGatePolicy": "advanced",
|
|
3331
3434
|
"createHookEnvCapabilities": "advanced",
|
|
3332
3435
|
"createImageDownsampler": "advanced",
|
|
3436
|
+
"createInMemoryPeerDirectory": "advanced",
|
|
3437
|
+
"createListAgentsTool": "advanced",
|
|
3333
3438
|
"createLspTool": "advanced",
|
|
3334
3439
|
"createMemoryTaskListStore": "advanced",
|
|
3335
3440
|
"createMonitorTool": "advanced",
|
|
@@ -3369,6 +3474,7 @@
|
|
|
3369
3474
|
"decodeScopeAttribute": "advanced",
|
|
3370
3475
|
"decodeScopeSegment": "advanced",
|
|
3371
3476
|
"defaultLspSpawn": "internal",
|
|
3477
|
+
"defaultPeerLivenessProbe": "advanced",
|
|
3372
3478
|
"defaultPromptProvider": "advanced",
|
|
3373
3479
|
"defaultTaskRegistry": "advanced",
|
|
3374
3480
|
"defineAgent": "stable",
|
|
@@ -3488,6 +3594,8 @@
|
|
|
3488
3594
|
"isIsolated": "advanced",
|
|
3489
3595
|
"isModelGatedForClass": "advanced",
|
|
3490
3596
|
"isNamespacedCoveringRuleName": "advanced",
|
|
3597
|
+
"isPeerSessionId": "advanced",
|
|
3598
|
+
"isPeerSessionProcessAlive": "advanced",
|
|
3491
3599
|
"isPermissionModeClass": "advanced",
|
|
3492
3600
|
"isPersonalScope": "advanced",
|
|
3493
3601
|
"isQuestionUnavailable": "advanced",
|
|
@@ -3513,6 +3621,7 @@
|
|
|
3513
3621
|
"joinRuleStates": "advanced",
|
|
3514
3622
|
"judgeCrossSessionInbound": "advanced",
|
|
3515
3623
|
"judgePeerAdmission": "advanced",
|
|
3624
|
+
"judgePeerRecordFile": "advanced",
|
|
3516
3625
|
"killProcessTree": "internal",
|
|
3517
3626
|
"languageFor": "internal",
|
|
3518
3627
|
"leafIdAfterEntry": "internal",
|
|
@@ -3530,6 +3639,8 @@
|
|
|
3530
3639
|
"lspFailureOf": "advanced",
|
|
3531
3640
|
"mailboxAckOwnershipContract": "advanced",
|
|
3532
3641
|
"mailboxBundledOnlyContract": "advanced",
|
|
3642
|
+
"mailboxCrossProcessContract": "advanced",
|
|
3643
|
+
"mailboxCrossProcessMountVerdict": "advanced",
|
|
3533
3644
|
"mailboxStoreContract": "advanced",
|
|
3534
3645
|
"mailboxTombstonedRecipientContract": "advanced",
|
|
3535
3646
|
"markSessionCaptureOptOut": "advanced",
|
|
@@ -3557,6 +3668,7 @@
|
|
|
3557
3668
|
"mintExposurePartitionedPlan": "advanced",
|
|
3558
3669
|
"mintLlmConsolidationPlan": "advanced",
|
|
3559
3670
|
"mintPeerRef": "advanced",
|
|
3671
|
+
"mintPeerSessionCandidates": "advanced",
|
|
3560
3672
|
"mintReminderMark": "advanced",
|
|
3561
3673
|
"mintRuleTicket": "advanced",
|
|
3562
3674
|
"mintSystemReminder": "advanced",
|
|
@@ -3590,6 +3702,7 @@
|
|
|
3590
3702
|
"parseLeadingCommandName": "advanced",
|
|
3591
3703
|
"parseModelMention": "advanced",
|
|
3592
3704
|
"parsePeerNameRef": "advanced",
|
|
3705
|
+
"parsePeerSessionAddress": "advanced",
|
|
3593
3706
|
"parsePermissionRule": "advanced",
|
|
3594
3707
|
"parseProjectMarker": "advanced",
|
|
3595
3708
|
"parseResult": "advanced",
|
|
@@ -3604,6 +3717,7 @@
|
|
|
3604
3717
|
"peerAdmissionFor": "advanced",
|
|
3605
3718
|
"peerAxisToken": "advanced",
|
|
3606
3719
|
"peerSendVerdictSeverity": "advanced",
|
|
3720
|
+
"peerSessionBoxHandle": "advanced",
|
|
3607
3721
|
"permissionRuleSyncContract": "advanced",
|
|
3608
3722
|
"pgQuery": "advanced",
|
|
3609
3723
|
"planParseRepairs": "advanced",
|
|
@@ -3628,6 +3742,8 @@
|
|
|
3628
3742
|
"readDegradation": "advanced",
|
|
3629
3743
|
"readIntentCredentials": "advanced",
|
|
3630
3744
|
"readJsonlRecords": "advanced",
|
|
3745
|
+
"readMailboxPeerMeta": "advanced",
|
|
3746
|
+
"readPeerSessionRecord": "advanced",
|
|
3631
3747
|
"readPendingSteerQueue": "advanced",
|
|
3632
3748
|
"readRootAdoptionFile": "advanced",
|
|
3633
3749
|
"readSessionCaptureOptOut": "advanced",
|
|
@@ -3653,6 +3769,7 @@
|
|
|
3653
3769
|
"renderAnnouncements": "advanced",
|
|
3654
3770
|
"renderAutoModeAction": "advanced",
|
|
3655
3771
|
"renderAutoModeWindow": "advanced",
|
|
3772
|
+
"renderCrossSessionMessageFrame": "advanced",
|
|
3656
3773
|
"renderNamedWorkflowListing": "advanced",
|
|
3657
3774
|
"renderTaskNotificationXml": "advanced",
|
|
3658
3775
|
"renderUntrustedCommandText": "advanced",
|
|
@@ -3680,6 +3797,7 @@
|
|
|
3680
3797
|
"resolveMemoryEngineRoot": "advanced",
|
|
3681
3798
|
"resolveModel": "advanced",
|
|
3682
3799
|
"resolvePeerAdmissionConfig": "advanced",
|
|
3800
|
+
"resolvePeerSessions": "advanced",
|
|
3683
3801
|
"resolveProjectId": "advanced",
|
|
3684
3802
|
"resolveQuestionSeam": "advanced",
|
|
3685
3803
|
"resolveReadDenyBuiltins": "advanced",
|
|
@@ -3760,6 +3878,7 @@
|
|
|
3760
3878
|
"sqliteQuery": "advanced",
|
|
3761
3879
|
"startWorkflow": "advanced",
|
|
3762
3880
|
"stripEngineMetadata": "advanced",
|
|
3881
|
+
"stripFormatCharacters": "advanced",
|
|
3763
3882
|
"stripRev": "advanced",
|
|
3764
3883
|
"subscribeWorkflow": "advanced",
|
|
3765
3884
|
"suggestRulesForCommand": "advanced",
|
|
@@ -3797,6 +3916,7 @@
|
|
|
3797
3916
|
"validateSelectedIds": "advanced",
|
|
3798
3917
|
"verifyCompleted": "advanced",
|
|
3799
3918
|
"verifyPromptArtifact": "advanced",
|
|
3919
|
+
"vetPeerRegistryDirectory": "advanced",
|
|
3800
3920
|
"warmResume": "advanced",
|
|
3801
3921
|
"webFetchToolSpec": "advanced",
|
|
3802
3922
|
"wildcardMatch": "advanced",
|