@lambdacurry/arbor 0.21.35 → 0.21.36
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 +6 -2
- package/package.json +1 -1
package/dist/arbor.js
CHANGED
|
@@ -18003,6 +18003,7 @@ var MCP_OUTPUT_SCHEMAS = {
|
|
|
18003
18003
|
}),
|
|
18004
18004
|
get_computer: exports_external.looseObject({
|
|
18005
18005
|
threadId: id,
|
|
18006
|
+
readiness: exports_external.enum(["ready", "sleeping", "decision-required"]).optional(),
|
|
18006
18007
|
config: redactedComputerRecipe,
|
|
18007
18008
|
repositoryAuthorization: exports_external.array(exports_external.looseObject({
|
|
18008
18009
|
repository: exports_external.string(),
|
|
@@ -18362,6 +18363,7 @@ var MCP_OUTPUT_SCHEMAS = {
|
|
|
18362
18363
|
}),
|
|
18363
18364
|
computer_open: exports_external.object({
|
|
18364
18365
|
computerSessionId: id,
|
|
18366
|
+
readiness: exports_external.enum(["ready", "sleeping", "decision-required"]),
|
|
18365
18367
|
profile: computerOpenProfile.nullable(),
|
|
18366
18368
|
workspaceRoot: exports_external.string(),
|
|
18367
18369
|
repositories: exports_external.array(exports_external.object({
|
|
@@ -18543,6 +18545,7 @@ var MCP_OUTPUT_SCHEMAS = {
|
|
|
18543
18545
|
computerSessionId: id,
|
|
18544
18546
|
computerId: id,
|
|
18545
18547
|
status: exports_external.enum(["running", "dormant"]),
|
|
18548
|
+
readiness: exports_external.enum(["ready", "sleeping", "decision-required"]).optional(),
|
|
18546
18549
|
backend: exports_external.enum(["worker-shell", "container"]),
|
|
18547
18550
|
profile: computerProfile.nullable(),
|
|
18548
18551
|
capabilities: computerCapabilityCard,
|
|
@@ -18763,6 +18766,7 @@ var OUTPUT_SHAPERS = {
|
|
|
18763
18766
|
]);
|
|
18764
18767
|
return defined([
|
|
18765
18768
|
["computerSessionId", result.computerSessionId],
|
|
18769
|
+
["readiness", result.readiness],
|
|
18766
18770
|
[
|
|
18767
18771
|
"profile",
|
|
18768
18772
|
result.profile === null ? null : profile3 ? defined([
|
|
@@ -19732,7 +19736,7 @@ var ACTION_DEFINITIONS = [
|
|
|
19732
19736
|
{
|
|
19733
19737
|
name: "computer_open",
|
|
19734
19738
|
title: "Open a Thread computer",
|
|
19735
|
-
description: "Open a usable Thread workspace with verified root repository instruction pointers; omit the key to retry the same logical open
|
|
19739
|
+
description: "Open a usable Thread workspace with verified root repository instruction pointers; omit the key to retry the same logical open, with unsafe recovery refused. A successful open means the first allowed exec can proceed: Compatible execution is selected internally, additive authorized repository drift auto-reconciles, and unresolved newer workspace state stays fail-closed.",
|
|
19736
19740
|
inputSchema: {
|
|
19737
19741
|
threadId: exports_external.string().describe("the Arbor Thread whose stable computer to open, thr_…"),
|
|
19738
19742
|
idempotencyKey: exports_external.string().trim().min(1).max(200).optional().describe("optional explicit key for ONE distinct logical open; omission reuses the durable profile/Thread/recipe identity; changed options require a distinct intent; retry unchanged after response loss and never mint a new key to bypass unresolved work"),
|
|
@@ -20030,7 +20034,7 @@ var ACTION_DEFINITIONS = [
|
|
|
20030
20034
|
{
|
|
20031
20035
|
name: "computer_publish_app_bundle",
|
|
20032
20036
|
title: "Publish an immutable AppBundle",
|
|
20033
|
-
description: "Publish a content-addressed AppBundle from the live parent Computer after a green build when an ArtifactVersion is ready for app deployment. Verifies entry bytes against the ArtifactVersion, captures source/Git provenance and static assets, and returns bundleId; isolated Runs are not accepted.",
|
|
20037
|
+
description: "Publish a content-addressed AppBundle from the live parent Computer after a green build when an ArtifactVersion is ready for app deployment; Arbor selects or acquires compatible bun-typescript-v1 execution internally. Verifies entry bytes against the ArtifactVersion, captures source/Git provenance and static assets, and returns bundleId; isolated Runs are not accepted.",
|
|
20034
20038
|
inputSchema: {
|
|
20035
20039
|
computerSessionId: exports_external.string().describe("the computerSessionId returned by computer_open, cms_…"),
|
|
20036
20040
|
artifactVersionId: exports_external.string().describe("the source ArtifactVersion, artv_…"),
|
package/package.json
CHANGED