@lambdacurry/arbor 0.22.2 → 0.22.4
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 +14 -8
- 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.22.
|
|
5
|
+
version: "0.22.4",
|
|
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",
|
|
@@ -8768,14 +8768,19 @@ var MCP_OUTPUT_SCHEMAS = {
|
|
|
8768
8768
|
runtime: computerRunRuntime,
|
|
8769
8769
|
replayed: boolean2(),
|
|
8770
8770
|
snapshotId: id.nullable(),
|
|
8771
|
-
parentCheckpoint: string2().optional()
|
|
8771
|
+
parentCheckpoint: string2().optional(),
|
|
8772
|
+
parentAsleep: boolean2().optional()
|
|
8772
8773
|
}),
|
|
8773
8774
|
computer_run_finish: looseObject({
|
|
8774
8775
|
status: string2(),
|
|
8775
8776
|
replayed: boolean2(),
|
|
8776
8777
|
durability: computerRunDurability,
|
|
8777
8778
|
finishAssessment: computerRunFinishAssessment.nullable(),
|
|
8778
|
-
parent: object({
|
|
8779
|
+
parent: object({
|
|
8780
|
+
checkpoint: string2().nullable(),
|
|
8781
|
+
stopped: boolean2(),
|
|
8782
|
+
asleep: boolean2().optional()
|
|
8783
|
+
}).optional()
|
|
8779
8784
|
}),
|
|
8780
8785
|
computer_repo_work_status: looseObject({
|
|
8781
8786
|
runId: id,
|
|
@@ -9229,7 +9234,8 @@ var OUTPUT_SHAPERS = {
|
|
|
9229
9234
|
["runtime", selected(run.runtime, ["state", "currentSnapshotId", "updatedAt"])],
|
|
9230
9235
|
["replayed", result.replayed],
|
|
9231
9236
|
["snapshotId", result.snapshotId],
|
|
9232
|
-
["parentCheckpoint", result.parentCheckpoint]
|
|
9237
|
+
["parentCheckpoint", result.parentCheckpoint],
|
|
9238
|
+
["parentAsleep", result.parentAsleep]
|
|
9233
9239
|
]);
|
|
9234
9240
|
},
|
|
9235
9241
|
computer_run_finish: (result) => {
|
|
@@ -10132,7 +10138,7 @@ var ACTION_DEFINITIONS = [
|
|
|
10132
10138
|
description: "DESTRUCTIVE REPLACE: Replace the organization's entire sparse Computer-default layer; omitted fields are cleared from this layer and fall back to provider defaults, while lower scopes may override. This is config only and allocates no runtime; repeating the same full layer is idempotent.",
|
|
10133
10139
|
inputSchema: {
|
|
10134
10140
|
backend: _enum(["worker-shell", "container"]).nullable().optional().describe("default execution tier, or null to use worker-shell"),
|
|
10135
|
-
containerProfile: string2().nullable().optional().describe("logical container profile; bun-typescript-v1 guarantees Bash, Git, GitHub CLI (gh), Bun 1.
|
|
10141
|
+
containerProfile: string2().nullable().optional().describe("logical container profile; bun-typescript-v1 guarantees Bash, Git, GitHub CLI (gh), Bun 1.4.1, bunx, Node 26.5.1, pnpm 10.33.0, Python 3.13.15 (python/python3), jq, and ripgrep (rg), or null to clear"),
|
|
10136
10142
|
setupScript: string2().nullable().optional().describe("optional strict Bash setup run after connected repositories materialize, or null to clear"),
|
|
10137
10143
|
repositories: array(string2()).max(MAX_COMPUTER_REPOSITORIES).nullable().optional().describe("connected GitHub repositories to materialize into a fresh reusable base and allow for later Git calls; [] clears and null inherits")
|
|
10138
10144
|
},
|
|
@@ -10147,7 +10153,7 @@ var ACTION_DEFINITIONS = [
|
|
|
10147
10153
|
inputSchema: {
|
|
10148
10154
|
spaceId: string2().describe("the Space, spc_…"),
|
|
10149
10155
|
backend: _enum(["worker-shell", "container"]).nullable().optional().describe("override execution tier, or null to inherit"),
|
|
10150
|
-
containerProfile: string2().nullable().optional().describe("logical container profile; bun-typescript-v1 guarantees Bash, Git, GitHub CLI (gh), Bun 1.
|
|
10156
|
+
containerProfile: string2().nullable().optional().describe("logical container profile; bun-typescript-v1 guarantees Bash, Git, GitHub CLI (gh), Bun 1.4.1, bunx, Node 26.5.1, pnpm 10.33.0, Python 3.13.15 (python/python3), jq, and ripgrep (rg), or null to clear inherited profile"),
|
|
10151
10157
|
setupScript: string2().nullable().optional().describe("optional strict Bash setup run after connected repositories materialize, or null to clear"),
|
|
10152
10158
|
repositories: array(string2()).max(MAX_COMPUTER_REPOSITORIES).nullable().optional().describe("connected GitHub repositories to materialize into a fresh reusable base and allow for later Git calls; [] clears and null inherits")
|
|
10153
10159
|
},
|
|
@@ -10162,7 +10168,7 @@ var ACTION_DEFINITIONS = [
|
|
|
10162
10168
|
inputSchema: {
|
|
10163
10169
|
topicId: string2().describe("the Topic, top_…"),
|
|
10164
10170
|
backend: _enum(["worker-shell", "container"]).nullable().optional().describe("override execution tier, or null to inherit"),
|
|
10165
|
-
containerProfile: string2().nullable().optional().describe("logical container profile; bun-typescript-v1 guarantees Bash, Git, GitHub CLI (gh), Bun 1.
|
|
10171
|
+
containerProfile: string2().nullable().optional().describe("logical container profile; bun-typescript-v1 guarantees Bash, Git, GitHub CLI (gh), Bun 1.4.1, bunx, Node 26.5.1, pnpm 10.33.0, Python 3.13.15 (python/python3), jq, and ripgrep (rg), or null to clear inherited profile"),
|
|
10166
10172
|
setupScript: string2().nullable().optional().describe("optional strict Bash setup run after connected repositories materialize"),
|
|
10167
10173
|
repositories: array(string2()).max(MAX_COMPUTER_REPOSITORIES).nullable().optional().describe("connected GitHub repositories to materialize into a fresh reusable base and allow for later Git calls; [] clears and null inherits"),
|
|
10168
10174
|
...LIVE_PREVIEW_CONFIG_INPUT
|
|
@@ -10178,7 +10184,7 @@ var ACTION_DEFINITIONS = [
|
|
|
10178
10184
|
inputSchema: {
|
|
10179
10185
|
threadId: string2().describe("the Thread, thr_…"),
|
|
10180
10186
|
backend: _enum(["worker-shell", "container"]).nullable().optional().describe("override execution tier, or null to inherit"),
|
|
10181
|
-
containerProfile: string2().nullable().optional().describe("logical container profile; bun-typescript-v1 guarantees Bash, Git, GitHub CLI (gh), Bun 1.
|
|
10187
|
+
containerProfile: string2().nullable().optional().describe("logical container profile; bun-typescript-v1 guarantees Bash, Git, GitHub CLI (gh), Bun 1.4.1, bunx, Node 26.5.1, pnpm 10.33.0, Python 3.13.15 (python/python3), jq, and ripgrep (rg), or null to clear inherited profile"),
|
|
10182
10188
|
setupScript: string2().nullable().optional().describe("optional strict Bash setup run after connected repositories materialize"),
|
|
10183
10189
|
repositories: array(string2()).max(MAX_COMPUTER_REPOSITORIES).nullable().optional().describe("connected GitHub repositories to materialize into a fresh reusable base and allow for later Git calls; [] clears and null inherits"),
|
|
10184
10190
|
...LIVE_PREVIEW_CONFIG_INPUT
|
package/package.json
CHANGED