@lambdacurry/arbor 0.20.23 → 0.20.25
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 +19 -8
- package/package.json +1 -1
package/dist/arbor.js
CHANGED
|
@@ -17603,7 +17603,11 @@ var MCP_OUTPUT_SCHEMAS = {
|
|
|
17603
17603
|
computerSessionId: id,
|
|
17604
17604
|
profile: computerOpenProfile.nullable(),
|
|
17605
17605
|
workspaceRoot: exports_external.string(),
|
|
17606
|
-
repositories: exports_external.array(exports_external.object({
|
|
17606
|
+
repositories: exports_external.array(exports_external.object({
|
|
17607
|
+
repository: exports_external.string(),
|
|
17608
|
+
path: exports_external.string(),
|
|
17609
|
+
instructions: exports_external.array(exports_external.object({ kind: exports_external.literal("agents"), path: exports_external.string() }))
|
|
17610
|
+
})),
|
|
17607
17611
|
defaultCwd: exports_external.string(),
|
|
17608
17612
|
capabilities: computerOpenCapabilities,
|
|
17609
17613
|
agentBrief: computerOpenAgentBrief,
|
|
@@ -17907,7 +17911,14 @@ var OUTPUT_SHAPERS = {
|
|
|
17907
17911
|
const agentBrief = record2(result.agentBrief);
|
|
17908
17912
|
const work = record2(agentBrief?.work);
|
|
17909
17913
|
const computer2 = record2(agentBrief?.computer);
|
|
17910
|
-
const repositories =
|
|
17914
|
+
const repositories = Array.isArray(result.repositories) ? result.repositories.map((value) => {
|
|
17915
|
+
const repository = record2(value) ?? {};
|
|
17916
|
+
return defined([
|
|
17917
|
+
["repository", repository.repository],
|
|
17918
|
+
["path", repository.path],
|
|
17919
|
+
["instructions", selectedArray(repository.instructions, ["kind", "path"])]
|
|
17920
|
+
]);
|
|
17921
|
+
}) : undefined;
|
|
17911
17922
|
const guidance = selectedArray(agentBrief?.guidance, [
|
|
17912
17923
|
"class",
|
|
17913
17924
|
"scope",
|
|
@@ -18546,7 +18557,7 @@ var ACTION_DEFINITIONS = [
|
|
|
18546
18557
|
{
|
|
18547
18558
|
name: "computer_open",
|
|
18548
18559
|
title: "Open a Thread computer",
|
|
18549
|
-
description: "Open or resume a Thread's project environment when you need filesystem, command, Run, checkpoint, Preview, or publication work. Returns the session handle, workspace/repositories/default cwd, Agent Brief, profile/capabilities, active Runs, and any reconciliation notice.",
|
|
18560
|
+
description: "Open or resume a Thread's project environment when you need filesystem, command, Run, checkpoint, Preview, or publication work. Returns the session handle, workspace/repositories/default cwd with verified root repository instruction pointers, Agent Brief, profile/capabilities, active Runs, and any reconciliation notice.",
|
|
18550
18561
|
inputSchema: {
|
|
18551
18562
|
threadId: exports_external.string().describe("the Arbor Thread whose stable computer to open, thr_…"),
|
|
18552
18563
|
vcpus: exports_external.number().int().min(1).max(4).optional().describe("optional container vCPU request"),
|
|
@@ -20110,7 +20121,7 @@ var ACTION_DEFINITIONS = [
|
|
|
20110
20121
|
{
|
|
20111
20122
|
name: "app_deploy",
|
|
20112
20123
|
title: "Prepare an App deployment",
|
|
20113
|
-
description: "Create an immutable candidate
|
|
20124
|
+
description: "Create an immutable candidate without changing the stable URL. Stateless prepare proves runtime health; durable prepare proves load readiness only (health.phase=load), with same-state activation deferred to app_activate.",
|
|
20114
20125
|
inputSchema: {
|
|
20115
20126
|
appId: exports_external.string().describe("target App, app_…"),
|
|
20116
20127
|
bundleId: exports_external.string().describe("verified immutable AppBundle, bnd_…"),
|
|
@@ -20135,7 +20146,7 @@ var ACTION_DEFINITIONS = [
|
|
|
20135
20146
|
{
|
|
20136
20147
|
name: "app_deployment_get",
|
|
20137
20148
|
title: "Inspect an App deployment",
|
|
20138
|
-
description: "READ ONLY: Inspect one deployment's
|
|
20149
|
+
description: "READ ONLY: Inspect one deployment's state, source bundle, provider receipt, phased redacted health (load|activation|runtime), and config readiness. It cannot modify App state, deployment state, access, or durable SQLite.",
|
|
20139
20150
|
inputSchema: {
|
|
20140
20151
|
appId: exports_external.string().describe("owning App, app_…"),
|
|
20141
20152
|
deploymentId: exports_external.string().describe("deployment, dep_…")
|
|
@@ -20175,11 +20186,11 @@ var ACTION_DEFINITIONS = [
|
|
|
20175
20186
|
},
|
|
20176
20187
|
{
|
|
20177
20188
|
name: "app_activate",
|
|
20178
|
-
title: "Activate a
|
|
20179
|
-
description: "Activate a
|
|
20189
|
+
title: "Activate a prepared deployment",
|
|
20190
|
+
description: "Activate a prepared deployment using expected-active CAS; durable Apps first instantiate the same-state facet and require /__arbor/health. Failures expose bounded providerCode diagnostics; app-specific HTTP compatibility remains separate verification.",
|
|
20180
20191
|
inputSchema: {
|
|
20181
20192
|
appId: exports_external.string().describe("target App, app_…"),
|
|
20182
|
-
deploymentId: exports_external.string().describe("
|
|
20193
|
+
deploymentId: exports_external.string().describe("prepared candidate, dep_…"),
|
|
20183
20194
|
expectedActiveDeploymentId: exports_external.string().nullable().describe("active deployment from app_get, or null before first activation")
|
|
20184
20195
|
},
|
|
20185
20196
|
surfaces: ["mcp", "cli"],
|
package/package.json
CHANGED