@lambdacurry/arbor 0.4.8 → 0.4.9

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.
Files changed (2) hide show
  1. package/dist/arbor.js +33 -0
  2. package/package.json +1 -1
package/dist/arbor.js CHANGED
@@ -16563,6 +16563,39 @@ var ACTIONS = [
16563
16563
  surfaces: ["mcp", "cli"],
16564
16564
  run: forward("initiative.forThread")
16565
16565
  },
16566
+ {
16567
+ name: "update_goal",
16568
+ title: "Edit a goal",
16569
+ 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).",
16570
+ inputSchema: {
16571
+ id: exports_external.string().describe("the goal to edit, ini_…"),
16572
+ title: exports_external.string().min(1).optional().describe("a new name — an outcome, not a task"),
16573
+ purpose: exports_external.string().optional().describe("a new one-or-two-line purpose")
16574
+ },
16575
+ surfaces: ["mcp", "cli"],
16576
+ run: forward("initiative.update")
16577
+ },
16578
+ {
16579
+ name: "set_goal_status",
16580
+ title: "Set a goal's status",
16581
+ 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.",
16582
+ inputSchema: {
16583
+ id: exports_external.string().describe("the goal, ini_…"),
16584
+ status: exports_external.enum(["active", "paused", "completed", "archived"]).describe("the new lifecycle state")
16585
+ },
16586
+ surfaces: ["mcp", "cli"],
16587
+ run: forward("initiative.setStatus")
16588
+ },
16589
+ {
16590
+ name: "delete_goal",
16591
+ title: "Delete a goal",
16592
+ 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).",
16593
+ inputSchema: {
16594
+ id: exports_external.string().describe("the goal to delete, ini_…")
16595
+ },
16596
+ surfaces: ["mcp", "cli"],
16597
+ run: forward("initiative.delete")
16598
+ },
16566
16599
  {
16567
16600
  name: "space_create",
16568
16601
  title: "Create a space",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lambdacurry/arbor",
3
- "version": "0.4.8",
3
+ "version": "0.4.9",
4
4
  "description": "The Arbor CLI \u2014 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": {