@lambdacurry/arbor 0.6.3 → 0.6.4
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 +14 -2
- package/package.json +1 -1
package/dist/arbor.js
CHANGED
|
@@ -16569,6 +16569,17 @@ var ACTIONS = [
|
|
|
16569
16569
|
tier: "extended",
|
|
16570
16570
|
run: forward("initiative.unlinkThread")
|
|
16571
16571
|
},
|
|
16572
|
+
{
|
|
16573
|
+
name: "get_goal",
|
|
16574
|
+
title: "Read one goal fully",
|
|
16575
|
+
description: "Read ONE goal (initiative) fully — purpose, lifecycle status, and the related threads you can see. Works for ANY status including archived (retired goals stay inspectable); use `list_goals` for a thread's pick list instead.",
|
|
16576
|
+
inputSchema: {
|
|
16577
|
+
id: exports_external.string().describe("the goal, ini_…")
|
|
16578
|
+
},
|
|
16579
|
+
surfaces: ["cli"],
|
|
16580
|
+
tier: "extended",
|
|
16581
|
+
run: forward("initiative.get")
|
|
16582
|
+
},
|
|
16572
16583
|
{
|
|
16573
16584
|
name: "list_goals",
|
|
16574
16585
|
title: "List a thread's goals",
|
|
@@ -16732,7 +16743,7 @@ var ACTIONS = [
|
|
|
16732
16743
|
{
|
|
16733
16744
|
name: "goal",
|
|
16734
16745
|
title: "Work with goals",
|
|
16735
|
-
description: "GOALS (initiatives) — the wide 'why' threads serve toward (AD-146/180). verb=create (spaceId+title, optional purpose/threadIds — the creating space becomes its HOME), list (threadId — the goals that thread's space offers), update (id + title/purpose), set_status (id+status: active|paused|completed|archived — completed = reached, archived = retired from pick lists), delete (id), link_thread/unlink_thread (threadId+initiativeId), attach_space/detach_space (initiativeId+spaceId — surface a goal in MORE spaces).",
|
|
16746
|
+
description: "GOALS (initiatives) — the wide 'why' threads serve toward (AD-146/180). verb=get (id — one goal read fully, ANY status incl. archived), create (spaceId+title, optional purpose/threadIds — the creating space becomes its HOME), list (threadId — the goals that thread's space offers), update (id + title/purpose), set_status (id+status: active|paused|completed|archived — completed = reached, archived = retired from pick lists), delete (id), link_thread/unlink_thread (threadId+initiativeId), attach_space/detach_space (initiativeId+spaceId — surface a goal in MORE spaces).",
|
|
16736
16747
|
inputSchema: {
|
|
16737
16748
|
verb: exports_external.enum([
|
|
16738
16749
|
"create",
|
|
@@ -16749,7 +16760,7 @@ var ACTIONS = [
|
|
|
16749
16760
|
title: exports_external.string().optional().describe("create/update: the goal's name — an outcome, not a task"),
|
|
16750
16761
|
purpose: exports_external.string().optional().describe("create/update: one or two lines on what reaching it means"),
|
|
16751
16762
|
threadIds: exports_external.array(exports_external.string()).optional().describe("create: threads to link at birth"),
|
|
16752
|
-
id: exports_external.string().optional().describe("update/set_status/delete: the goal, ini_…"),
|
|
16763
|
+
id: exports_external.string().optional().describe("get/update/set_status/delete: the goal, ini_…"),
|
|
16753
16764
|
status: exports_external.enum(["active", "paused", "completed", "archived"]).optional().describe("set_status: the new lifecycle state"),
|
|
16754
16765
|
threadId: exports_external.string().optional().describe("list/link_thread/unlink_thread: the thread, thr_…"),
|
|
16755
16766
|
initiativeId: exports_external.string().optional().describe("link/unlink/attach/detach: the goal, ini_…")
|
|
@@ -16757,6 +16768,7 @@ var ACTIONS = [
|
|
|
16757
16768
|
surfaces: ["mcp"],
|
|
16758
16769
|
tier: "extended",
|
|
16759
16770
|
run: dispatch({
|
|
16771
|
+
get: "initiative.get",
|
|
16760
16772
|
create: "initiative.create",
|
|
16761
16773
|
list: "initiative.forThread",
|
|
16762
16774
|
update: "initiative.update",
|
package/package.json
CHANGED