@lambdacurry/arbor 0.21.64 → 0.22.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/dist/arbor.js +5 -4
- package/package.json +1 -1
package/dist/arbor.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// package.json
|
|
3
3
|
var package_default = {
|
|
4
4
|
name: "@lambdacurry/arbor",
|
|
5
|
-
version: "0.
|
|
5
|
+
version: "0.22.0",
|
|
6
6
|
description: "The Arbor CLI — a shared workspace for people and agents. The human + headless-agent write path over Arbor's guarded operation surface.",
|
|
7
7
|
keywords: [
|
|
8
8
|
"agents",
|
|
@@ -10166,9 +10166,10 @@ var ACTION_DEFINITIONS = [
|
|
|
10166
10166
|
{
|
|
10167
10167
|
name: "computer_run_start",
|
|
10168
10168
|
title: "Start a run",
|
|
10169
|
-
description: "Start one bounded unit of work
|
|
10169
|
+
description: "Start one bounded unit of work on a Thread's Computer by threadId, no computer_open first: an isolated write Run (the default) restores its own environment from the Thread's snapshot without booting the parent; shared and read Runs use the live parent. The caller-owned idempotencyKey makes a lost response recover zero-or-one Run, and failures return the exact runId for computer_run_receipt.",
|
|
10170
10170
|
inputSchema: {
|
|
10171
|
-
|
|
10171
|
+
threadId: string2().optional().describe("the Thread whose Computer this Run works in, thr_…; the front door — no computer_open first"),
|
|
10172
|
+
computerSessionId: string2().optional().describe("alternative to threadId: an existing computerSessionId from computer_open, cms_… (parent already open)"),
|
|
10172
10173
|
mode: _enum(["read", "write"]).describe("write for mutable work; read for shared inspection"),
|
|
10173
10174
|
execution: _enum(["shared", "isolated"]).optional().describe("write Run placement; defaults to isolated. Use shared only for intentional live collaboration on the Thread Computer"),
|
|
10174
10175
|
label: string2().max(120).optional().describe("short factual label for this unit of work"),
|
|
@@ -13140,7 +13141,7 @@ var POSITIONAL_FIELDS = {
|
|
|
13140
13141
|
admin_feedback_curate: ["verb", "contributionId"],
|
|
13141
13142
|
app_fetch: ["appId", "path"],
|
|
13142
13143
|
app_request: ["appId", "path"],
|
|
13143
|
-
computer_run_start: ["
|
|
13144
|
+
computer_run_start: ["threadId", "mode"],
|
|
13144
13145
|
computer_run_suspend: ["runId"],
|
|
13145
13146
|
code_symbols: ["path"],
|
|
13146
13147
|
code_find_symbol: ["namePath", "path"],
|
package/package.json
CHANGED