@lambdacurry/arbor 0.21.19 → 0.21.20
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 +28 -8
- package/package.json +1 -1
package/dist/arbor.js
CHANGED
|
@@ -18298,12 +18298,25 @@ var MCP_OUTPUT_SCHEMAS = {
|
|
|
18298
18298
|
defaultCwd: exports_external.string(),
|
|
18299
18299
|
capabilities: computerOpenCapabilities,
|
|
18300
18300
|
agentBrief: computerOpenAgentBrief,
|
|
18301
|
-
reconciliation: exports_external.
|
|
18302
|
-
|
|
18303
|
-
|
|
18304
|
-
|
|
18305
|
-
|
|
18306
|
-
|
|
18301
|
+
reconciliation: exports_external.union([
|
|
18302
|
+
exports_external.object({
|
|
18303
|
+
action: exports_external.literal("automatic_reprovision"),
|
|
18304
|
+
reason: exports_external.literal("container_profile_revision"),
|
|
18305
|
+
fromContainerProfileRevision: exports_external.number().int().nullable(),
|
|
18306
|
+
toContainerProfileRevision: exports_external.number().int().nullable()
|
|
18307
|
+
}),
|
|
18308
|
+
exports_external.object({
|
|
18309
|
+
action: exports_external.literal("automatic_reprovision"),
|
|
18310
|
+
reason: exports_external.literal("repository_additions"),
|
|
18311
|
+
reprovisionId: id,
|
|
18312
|
+
previousComputerId: id,
|
|
18313
|
+
successorComputerId: id,
|
|
18314
|
+
restoredSnapshotId: id.nullable(),
|
|
18315
|
+
checkpointOutcome: exports_external.string(),
|
|
18316
|
+
restorationOutcome: exports_external.string(),
|
|
18317
|
+
addedRepositories: exports_external.array(exports_external.string())
|
|
18318
|
+
})
|
|
18319
|
+
]).optional()
|
|
18307
18320
|
}),
|
|
18308
18321
|
computer_run_start: exports_external.object({
|
|
18309
18322
|
runId: id,
|
|
@@ -18653,7 +18666,14 @@ var OUTPUT_SHAPERS = {
|
|
|
18653
18666
|
"action",
|
|
18654
18667
|
"reason",
|
|
18655
18668
|
"fromContainerProfileRevision",
|
|
18656
|
-
"toContainerProfileRevision"
|
|
18669
|
+
"toContainerProfileRevision",
|
|
18670
|
+
"reprovisionId",
|
|
18671
|
+
"previousComputerId",
|
|
18672
|
+
"successorComputerId",
|
|
18673
|
+
"restoredSnapshotId",
|
|
18674
|
+
"checkpointOutcome",
|
|
18675
|
+
"restorationOutcome",
|
|
18676
|
+
"addedRepositories"
|
|
18657
18677
|
]);
|
|
18658
18678
|
return defined([
|
|
18659
18679
|
["computerSessionId", result.computerSessionId],
|
|
@@ -19613,7 +19633,7 @@ var ACTION_DEFINITIONS = [
|
|
|
19613
19633
|
{
|
|
19614
19634
|
name: "computer_open",
|
|
19615
19635
|
title: "Open a Thread computer",
|
|
19616
|
-
description: "Open
|
|
19636
|
+
description: "Open a Thread project environment and return its session/workspace, verified root repository instruction pointers, Agent Brief, capabilities, Runs, and reconciliation receipt. Forward profile-revision or additive authorized repository drift auto-reconciles through a successor; removal, setup, backend/provider/profile changes, or ambiguous drift refuse with computer_reprovision guidance.",
|
|
19617
19637
|
inputSchema: {
|
|
19618
19638
|
threadId: exports_external.string().describe("the Arbor Thread whose stable computer to open, thr_…"),
|
|
19619
19639
|
vcpus: exports_external.number().int().min(1).max(4).optional().describe("optional container vCPU request"),
|
package/package.json
CHANGED