@lambdacurry/arbor 0.22.9 → 0.22.11
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 +9 -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.11",
|
|
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",
|
|
@@ -6694,6 +6687,7 @@ var computerRunStarts = sqliteTable("computer_run_starts", {
|
|
|
6694
6687
|
mode: text("mode").$type().notNull(),
|
|
6695
6688
|
execution: text("execution").$type().notNull(),
|
|
6696
6689
|
label: text("label"),
|
|
6690
|
+
forkStrategy: text("fork_strategy").$type(),
|
|
6697
6691
|
checkpointLineageKey: text("checkpoint_lineage_key"),
|
|
6698
6692
|
checkpointExpectedCurrentSnapshotId: text("checkpoint_expected_current_snapshot_id").references(() => computerSnapshots.id),
|
|
6699
6693
|
checkpointParentSnapshotId: text("checkpoint_parent_snapshot_id").references(() => computerSnapshots.id),
|
|
@@ -9259,6 +9253,13 @@ var MCP_OUTPUT_SCHEMAS = {
|
|
|
9259
9253
|
function outputSchemaFor(actionName) {
|
|
9260
9254
|
return MCP_OUTPUT_SCHEMAS[actionName];
|
|
9261
9255
|
}
|
|
9256
|
+
|
|
9257
|
+
// ../actions/src/agent-guides.ts
|
|
9258
|
+
var AGENT_GUIDE_URLS = {
|
|
9259
|
+
tldraw: "https://arborthreads.com/docs/agents/tldraw",
|
|
9260
|
+
computer: "https://arborthreads.com/docs/agents/computer",
|
|
9261
|
+
apps: "https://arborthreads.com/docs/agents/apps"
|
|
9262
|
+
};
|
|
9262
9263
|
// ../actions/src/output-shaping.ts
|
|
9263
9264
|
function record2(value) {
|
|
9264
9265
|
return value !== null && typeof value === "object" && !Array.isArray(value) ? value : null;
|
|
@@ -12639,11 +12640,6 @@ function retentionAction(action) {
|
|
|
12639
12640
|
var ACTIONS2 = ACTIONS.map(retentionAction);
|
|
12640
12641
|
|
|
12641
12642
|
// ../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
12643
|
var grantOutput = object({
|
|
12648
12644
|
grant: object({
|
|
12649
12645
|
grantId: string2(),
|
package/package.json
CHANGED