@lambdacurry/arbor 0.21.34 → 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 +15 -2
- package/package.json +1 -1
package/dist/arbor.js
CHANGED
|
@@ -14328,6 +14328,7 @@ var ERROR_REASONS = new Set([
|
|
|
14328
14328
|
"resource.not_found",
|
|
14329
14329
|
"conflict.state",
|
|
14330
14330
|
"conflict.computer_recipe",
|
|
14331
|
+
"conflict.catalog",
|
|
14331
14332
|
"limit.exceeded",
|
|
14332
14333
|
"provider.timeout",
|
|
14333
14334
|
"provider.failure",
|
|
@@ -17903,6 +17904,7 @@ var paged = (key, item) => exports_external.looseObject({
|
|
|
17903
17904
|
var MCP_OUTPUT_SCHEMAS = {
|
|
17904
17905
|
server_info: exports_external.looseObject({
|
|
17905
17906
|
serverVersion: exports_external.string(),
|
|
17907
|
+
catalogRevision: exports_external.string(),
|
|
17906
17908
|
deployment: exports_external.looseObject({ id: exports_external.string(), sourceRevision: exports_external.string().nullable(), deployedAt: timestamp }).nullable()
|
|
17907
17909
|
}),
|
|
17908
17910
|
recall: exports_external.object({ result: exports_external.array(recallHit) }),
|
|
@@ -18001,6 +18003,7 @@ var MCP_OUTPUT_SCHEMAS = {
|
|
|
18001
18003
|
}),
|
|
18002
18004
|
get_computer: exports_external.looseObject({
|
|
18003
18005
|
threadId: id,
|
|
18006
|
+
readiness: exports_external.enum(["ready", "sleeping", "decision-required"]).optional(),
|
|
18004
18007
|
config: redactedComputerRecipe,
|
|
18005
18008
|
repositoryAuthorization: exports_external.array(exports_external.looseObject({
|
|
18006
18009
|
repository: exports_external.string(),
|
|
@@ -18360,6 +18363,7 @@ var MCP_OUTPUT_SCHEMAS = {
|
|
|
18360
18363
|
}),
|
|
18361
18364
|
computer_open: exports_external.object({
|
|
18362
18365
|
computerSessionId: id,
|
|
18366
|
+
readiness: exports_external.enum(["ready", "sleeping", "decision-required"]),
|
|
18363
18367
|
profile: computerOpenProfile.nullable(),
|
|
18364
18368
|
workspaceRoot: exports_external.string(),
|
|
18365
18369
|
repositories: exports_external.array(exports_external.object({
|
|
@@ -18541,6 +18545,7 @@ var MCP_OUTPUT_SCHEMAS = {
|
|
|
18541
18545
|
computerSessionId: id,
|
|
18542
18546
|
computerId: id,
|
|
18543
18547
|
status: exports_external.enum(["running", "dormant"]),
|
|
18548
|
+
readiness: exports_external.enum(["ready", "sleeping", "decision-required"]).optional(),
|
|
18544
18549
|
backend: exports_external.enum(["worker-shell", "container"]),
|
|
18545
18550
|
profile: computerProfile.nullable(),
|
|
18546
18551
|
capabilities: computerCapabilityCard,
|
|
@@ -18761,6 +18766,7 @@ var OUTPUT_SHAPERS = {
|
|
|
18761
18766
|
]);
|
|
18762
18767
|
return defined([
|
|
18763
18768
|
["computerSessionId", result.computerSessionId],
|
|
18769
|
+
["readiness", result.readiness],
|
|
18764
18770
|
[
|
|
18765
18771
|
"profile",
|
|
18766
18772
|
result.profile === null ? null : profile3 ? defined([
|
|
@@ -19730,7 +19736,7 @@ var ACTION_DEFINITIONS = [
|
|
|
19730
19736
|
{
|
|
19731
19737
|
name: "computer_open",
|
|
19732
19738
|
title: "Open a Thread computer",
|
|
19733
|
-
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.",
|
|
19734
19740
|
inputSchema: {
|
|
19735
19741
|
threadId: exports_external.string().describe("the Arbor Thread whose stable computer to open, thr_…"),
|
|
19736
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"),
|
|
@@ -20028,7 +20034,7 @@ var ACTION_DEFINITIONS = [
|
|
|
20028
20034
|
{
|
|
20029
20035
|
name: "computer_publish_app_bundle",
|
|
20030
20036
|
title: "Publish an immutable AppBundle",
|
|
20031
|
-
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.",
|
|
20032
20038
|
inputSchema: {
|
|
20033
20039
|
computerSessionId: exports_external.string().describe("the computerSessionId returned by computer_open, cms_…"),
|
|
20034
20040
|
artifactVersionId: exports_external.string().describe("the source ArtifactVersion, artv_…"),
|
|
@@ -21980,6 +21986,13 @@ function parseErrorDetails(value) {
|
|
|
21980
21986
|
}
|
|
21981
21987
|
if (typeof raw.suggestedAction === "string")
|
|
21982
21988
|
details.suggestedAction = raw.suggestedAction;
|
|
21989
|
+
if (typeof raw.catalogRevision === "string")
|
|
21990
|
+
details.catalogRevision = raw.catalogRevision;
|
|
21991
|
+
if (typeof raw.clientCatalogRevision === "string") {
|
|
21992
|
+
details.clientCatalogRevision = raw.clientCatalogRevision;
|
|
21993
|
+
}
|
|
21994
|
+
if (typeof raw.catalogNextStep === "string")
|
|
21995
|
+
details.catalogNextStep = raw.catalogNextStep;
|
|
21983
21996
|
return details;
|
|
21984
21997
|
}
|
|
21985
21998
|
function detailsForError(err) {
|
package/package.json
CHANGED