@lambdacurry/arbor 0.6.3 → 0.6.5
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 +16 -2
- package/package.json +1 -1
package/dist/arbor.js
CHANGED
|
@@ -1573,6 +1573,7 @@ var requests = sqliteTable("requests", {
|
|
|
1573
1573
|
kind: text("kind").$type().notNull(),
|
|
1574
1574
|
requestedAction: text("requested_action"),
|
|
1575
1575
|
aboutContributionId: text("about_contribution_id"),
|
|
1576
|
+
requestedType: text("requested_type").$type(),
|
|
1576
1577
|
audience: text("audience", { mode: "json" }).$type().notNull(),
|
|
1577
1578
|
completionPolicy: text("completion_policy", { mode: "json" }).$type().notNull(),
|
|
1578
1579
|
status: text("status").$type().notNull().default("open"),
|
|
@@ -16274,6 +16275,7 @@ var ACTIONS = [
|
|
|
16274
16275
|
inputSchema: {
|
|
16275
16276
|
threadId: exports_external.string().describe("the thread the request is in, thr_…"),
|
|
16276
16277
|
requestedAction: exports_external.string().optional().describe("a one-line 'what you're requesting'"),
|
|
16278
|
+
requestedType: exports_external.enum(CONTRIBUTION_TYPES).optional().describe("the contribution type you're HOPING for (e.g. evidence, decision) — a soft default on the responder's picker, never a constraint; omit for 'any contribution welcome'. Contribution asks only"),
|
|
16277
16279
|
aboutContributionId: exports_external.string().optional().describe("PASS to request a REVIEW of this contribution (con_…, in the thread; met by a stamp, badges that card). OMIT to request a CONTRIBUTION on the thread (met by a respond)."),
|
|
16278
16280
|
targetProfileIds: exports_external.array(exports_external.string()).optional().describe("targeted recipients (omit → open board)"),
|
|
16279
16281
|
completion: exports_external.enum(["first", "quorum", "all-targets", "deadline", "explicit"]),
|
|
@@ -16569,6 +16571,17 @@ var ACTIONS = [
|
|
|
16569
16571
|
tier: "extended",
|
|
16570
16572
|
run: forward("initiative.unlinkThread")
|
|
16571
16573
|
},
|
|
16574
|
+
{
|
|
16575
|
+
name: "get_goal",
|
|
16576
|
+
title: "Read one goal fully",
|
|
16577
|
+
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.",
|
|
16578
|
+
inputSchema: {
|
|
16579
|
+
id: exports_external.string().describe("the goal, ini_…")
|
|
16580
|
+
},
|
|
16581
|
+
surfaces: ["cli"],
|
|
16582
|
+
tier: "extended",
|
|
16583
|
+
run: forward("initiative.get")
|
|
16584
|
+
},
|
|
16572
16585
|
{
|
|
16573
16586
|
name: "list_goals",
|
|
16574
16587
|
title: "List a thread's goals",
|
|
@@ -16732,7 +16745,7 @@ var ACTIONS = [
|
|
|
16732
16745
|
{
|
|
16733
16746
|
name: "goal",
|
|
16734
16747
|
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).",
|
|
16748
|
+
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
16749
|
inputSchema: {
|
|
16737
16750
|
verb: exports_external.enum([
|
|
16738
16751
|
"create",
|
|
@@ -16749,7 +16762,7 @@ var ACTIONS = [
|
|
|
16749
16762
|
title: exports_external.string().optional().describe("create/update: the goal's name — an outcome, not a task"),
|
|
16750
16763
|
purpose: exports_external.string().optional().describe("create/update: one or two lines on what reaching it means"),
|
|
16751
16764
|
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_…"),
|
|
16765
|
+
id: exports_external.string().optional().describe("get/update/set_status/delete: the goal, ini_…"),
|
|
16753
16766
|
status: exports_external.enum(["active", "paused", "completed", "archived"]).optional().describe("set_status: the new lifecycle state"),
|
|
16754
16767
|
threadId: exports_external.string().optional().describe("list/link_thread/unlink_thread: the thread, thr_…"),
|
|
16755
16768
|
initiativeId: exports_external.string().optional().describe("link/unlink/attach/detach: the goal, ini_…")
|
|
@@ -16757,6 +16770,7 @@ var ACTIONS = [
|
|
|
16757
16770
|
surfaces: ["mcp"],
|
|
16758
16771
|
tier: "extended",
|
|
16759
16772
|
run: dispatch({
|
|
16773
|
+
get: "initiative.get",
|
|
16760
16774
|
create: "initiative.create",
|
|
16761
16775
|
list: "initiative.forThread",
|
|
16762
16776
|
update: "initiative.update",
|
package/package.json
CHANGED