@lambdacurry/arbor 0.21.61 → 0.21.62
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 +5 -1
- package/package.json +1 -1
package/dist/arbor.js
CHANGED
|
@@ -16,7 +16,7 @@ var __export = (target, all) => {
|
|
|
16
16
|
// package.json
|
|
17
17
|
var package_default = {
|
|
18
18
|
name: "@lambdacurry/arbor",
|
|
19
|
-
version: "0.21.
|
|
19
|
+
version: "0.21.62",
|
|
20
20
|
description: "The Arbor CLI — a shared workspace for people and agents. The human + headless-agent write path over Arbor's guarded operation surface.",
|
|
21
21
|
keywords: [
|
|
22
22
|
"agents",
|
|
@@ -19980,6 +19980,10 @@ var ACTION_DEFINITIONS = [
|
|
|
19980
19980
|
mode: exports_external.enum(["read", "write"]).describe("write for mutable work; read for shared inspection"),
|
|
19981
19981
|
execution: exports_external.enum(["shared", "isolated"]).optional().describe("write Run placement; defaults to isolated. Use shared only for intentional live collaboration on the Thread Computer"),
|
|
19982
19982
|
label: exports_external.string().max(120).optional().describe("short factual label for this unit of work"),
|
|
19983
|
+
requestedRevisions: exports_external.array(exports_external.object({
|
|
19984
|
+
repository: exports_external.string().describe("configured GitHub repository as canonical owner/name"),
|
|
19985
|
+
head: exports_external.string().regex(/^[0-9a-fA-F]{40}(?:[0-9a-fA-F]{24})?$/).describe("exact 40- or 64-hex Git object id required before caller work")
|
|
19986
|
+
})).max(32).optional().describe("optional exact repository revisions the isolated workspace must prove before caller work"),
|
|
19983
19987
|
idempotencyKey: exports_external.string().min(1).max(200).describe("stable key for this ONE logical Run-start request; reuse it unchanged for retries")
|
|
19984
19988
|
},
|
|
19985
19989
|
surfaces: ["computer-mcp", "computer-cli"],
|
package/package.json
CHANGED