@lambdacurry/arbor 0.20.23 → 0.20.24
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 -3
- 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"),
|
package/package.json
CHANGED