@lambdacurry/arbor 0.22.9 → 0.22.10
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 +8 -13
- package/package.json +1 -1
package/dist/arbor.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// package.json
|
|
3
3
|
var package_default = {
|
|
4
4
|
name: "@lambdacurry/arbor",
|
|
5
|
-
version: "0.22.
|
|
5
|
+
version: "0.22.10",
|
|
6
6
|
description: "The Arbor CLI — a shared workspace for people and agents. The human + headless-agent write path over Arbor's guarded operation surface.",
|
|
7
7
|
keywords: [
|
|
8
8
|
"agents",
|
|
@@ -4910,13 +4910,6 @@ function json(params) {
|
|
|
4910
4910
|
}
|
|
4911
4911
|
// ../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/classic/external.js
|
|
4912
4912
|
config(en_default());
|
|
4913
|
-
// ../actions/src/agent-guides.ts
|
|
4914
|
-
var AGENT_GUIDE_URLS = {
|
|
4915
|
-
tldraw: "https://arborthreads.com/docs/agents/tldraw",
|
|
4916
|
-
computer: "https://arborthreads.com/docs/agents/computer",
|
|
4917
|
-
apps: "https://arborthreads.com/docs/agents/apps"
|
|
4918
|
-
};
|
|
4919
|
-
|
|
4920
4913
|
// ../core/src/objects/types.ts
|
|
4921
4914
|
var CONTRIBUTION_TYPES = [
|
|
4922
4915
|
"comment",
|
|
@@ -9259,6 +9252,13 @@ var MCP_OUTPUT_SCHEMAS = {
|
|
|
9259
9252
|
function outputSchemaFor(actionName) {
|
|
9260
9253
|
return MCP_OUTPUT_SCHEMAS[actionName];
|
|
9261
9254
|
}
|
|
9255
|
+
|
|
9256
|
+
// ../actions/src/agent-guides.ts
|
|
9257
|
+
var AGENT_GUIDE_URLS = {
|
|
9258
|
+
tldraw: "https://arborthreads.com/docs/agents/tldraw",
|
|
9259
|
+
computer: "https://arborthreads.com/docs/agents/computer",
|
|
9260
|
+
apps: "https://arborthreads.com/docs/agents/apps"
|
|
9261
|
+
};
|
|
9262
9262
|
// ../actions/src/output-shaping.ts
|
|
9263
9263
|
function record2(value) {
|
|
9264
9264
|
return value !== null && typeof value === "object" && !Array.isArray(value) ? value : null;
|
|
@@ -12639,11 +12639,6 @@ function retentionAction(action) {
|
|
|
12639
12639
|
var ACTIONS2 = ACTIONS.map(retentionAction);
|
|
12640
12640
|
|
|
12641
12641
|
// ../actions/src/recovery-entry.ts
|
|
12642
|
-
var TLDRAW_GUIDE_URI = AGENT_GUIDE_URLS.tldraw;
|
|
12643
|
-
var TLDRAW_GUIDE_MARKDOWN = `# Working well in native tldraw
|
|
12644
|
-
|
|
12645
|
-
This guide moved to ${AGENT_GUIDE_URLS.tldraw}.
|
|
12646
|
-
`;
|
|
12647
12642
|
var grantOutput = object({
|
|
12648
12643
|
grant: object({
|
|
12649
12644
|
grantId: string2(),
|
package/package.json
CHANGED