@lambdacurry/arbor 0.4.8 → 0.4.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 +37 -2
- package/package.json +2 -2
package/dist/arbor.js
CHANGED
|
@@ -16442,9 +16442,11 @@ var ACTIONS = [
|
|
|
16442
16442
|
{
|
|
16443
16443
|
name: "thread_get",
|
|
16444
16444
|
title: "Read a thread",
|
|
16445
|
-
description: "Read the full state of the thread you're working in — objective, every contribution + stamp, and its OPEN REQUESTS. Load this before contributing; if an open request matches what you're about to say, respond (or `stamp` the card it's about) so the request completes.",
|
|
16445
|
+
description: "Read the full state of the thread you're working in — objective, every contribution + stamp, and its OPEN REQUESTS. Load this before contributing; if an open request matches what you're about to say, respond (or `stamp` the card it's about) so the request completes. On a LONG thread, page the contributions with contribLimit/contribCursor (follow contributionPage.nextCursor) to bound how much you load at once.",
|
|
16446
16446
|
inputSchema: {
|
|
16447
|
-
id: exports_external.string().describe("the thread id, e.g. thr_…")
|
|
16447
|
+
id: exports_external.string().describe("the thread id, e.g. thr_…"),
|
|
16448
|
+
contribLimit: exports_external.number().int().positive().optional().describe("max contributions to return (AD-151 keyset paging) — omit to load the whole thread; set on a long thread to bound context"),
|
|
16449
|
+
contribCursor: exports_external.string().optional().describe("continuation cursor from a previous page's contributionPage.nextCursor")
|
|
16448
16450
|
},
|
|
16449
16451
|
surfaces: ["mcp", "cli"],
|
|
16450
16452
|
run: forward("thread.get")
|
|
@@ -16563,6 +16565,39 @@ var ACTIONS = [
|
|
|
16563
16565
|
surfaces: ["mcp", "cli"],
|
|
16564
16566
|
run: forward("initiative.forThread")
|
|
16565
16567
|
},
|
|
16568
|
+
{
|
|
16569
|
+
name: "update_goal",
|
|
16570
|
+
title: "Edit a goal",
|
|
16571
|
+
description: "Edit a goal's name and/or purpose (the goal's OWNER or an org admin). Only the fields you pass change. Reach for this to sharpen a goal's framing as it comes into focus — not to retire it (use `set_goal_status` to pause/complete/archive).",
|
|
16572
|
+
inputSchema: {
|
|
16573
|
+
id: exports_external.string().describe("the goal to edit, ini_…"),
|
|
16574
|
+
title: exports_external.string().min(1).optional().describe("a new name — an outcome, not a task"),
|
|
16575
|
+
purpose: exports_external.string().optional().describe("a new one-or-two-line purpose")
|
|
16576
|
+
},
|
|
16577
|
+
surfaces: ["mcp", "cli"],
|
|
16578
|
+
run: forward("initiative.update")
|
|
16579
|
+
},
|
|
16580
|
+
{
|
|
16581
|
+
name: "set_goal_status",
|
|
16582
|
+
title: "Set a goal's status",
|
|
16583
|
+
description: "Move a goal through its lifecycle — active → paused → completed → archived (the goal's OWNER or an org admin). `completed` marks it reached; `archived` retires it (drops out of pick lists). This is the SOFT retire path; prefer it over deleting. Status is a deliberate signal — set it when the goal's state genuinely changes, not as routine bookkeeping.",
|
|
16584
|
+
inputSchema: {
|
|
16585
|
+
id: exports_external.string().describe("the goal, ini_…"),
|
|
16586
|
+
status: exports_external.enum(["active", "paused", "completed", "archived"]).describe("the new lifecycle state")
|
|
16587
|
+
},
|
|
16588
|
+
surfaces: ["mcp", "cli"],
|
|
16589
|
+
run: forward("initiative.setStatus")
|
|
16590
|
+
},
|
|
16591
|
+
{
|
|
16592
|
+
name: "delete_goal",
|
|
16593
|
+
title: "Delete a goal",
|
|
16594
|
+
description: "Hard-delete a goal and its thread links (the goal's OWNER only — the threads themselves stay). This is irreversible; for retiring a goal you'd keep on the record, prefer `set_goal_status` archived. Reach for delete only to remove a goal that should never have existed (a mistake/duplicate).",
|
|
16595
|
+
inputSchema: {
|
|
16596
|
+
id: exports_external.string().describe("the goal to delete, ini_…")
|
|
16597
|
+
},
|
|
16598
|
+
surfaces: ["mcp", "cli"],
|
|
16599
|
+
run: forward("initiative.delete")
|
|
16600
|
+
},
|
|
16566
16601
|
{
|
|
16567
16602
|
name: "space_create",
|
|
16568
16603
|
title: "Create a space",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lambdacurry/arbor",
|
|
3
|
-
"version": "0.4.
|
|
4
|
-
"description": "The Arbor CLI
|
|
3
|
+
"version": "0.4.10",
|
|
4
|
+
"description": "The Arbor CLI — a shared workspace for people and agents. The human + headless-agent write path over Arbor's guarded operation surface.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"arbor": "./dist/arbor.js"
|