@lambdacurry/arbor 0.4.7 → 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.
- package/dist/arbor.js +40 -5
- package/package.json +1 -1
package/dist/arbor.js
CHANGED
|
@@ -1480,6 +1480,7 @@ var profiles = sqliteTable("profiles", {
|
|
|
1480
1480
|
managedByProfileId: text("managed_by_profile_id"),
|
|
1481
1481
|
color: text("color").$type(),
|
|
1482
1482
|
emoji: text("emoji"),
|
|
1483
|
+
description: text("description"),
|
|
1483
1484
|
createdAt: ts("created_at").notNull()
|
|
1484
1485
|
}, (t) => ({ orgIdx: index("profiles_org_idx").on(t.orgId) }));
|
|
1485
1486
|
var clients = sqliteTable("clients", {
|
|
@@ -16219,9 +16220,9 @@ var ACTIONS = [
|
|
|
16219
16220
|
{
|
|
16220
16221
|
name: "react",
|
|
16221
16222
|
title: "React to an object",
|
|
16222
|
-
description: "Toggle a single emoji reaction on a contribution
|
|
16223
|
+
description: "Toggle a single emoji reaction on a contribution or artifact (calling it again removes it). Use this for a fast, low-cost signal when a full Stamp would be overkill.",
|
|
16223
16224
|
inputSchema: {
|
|
16224
|
-
targetType: exports_external.enum(["contribution", "
|
|
16225
|
+
targetType: exports_external.enum(["contribution", "artifact"]),
|
|
16225
16226
|
targetId: exports_external.string(),
|
|
16226
16227
|
emoji: exports_external.string().min(1)
|
|
16227
16228
|
},
|
|
@@ -16429,10 +16430,11 @@ var ACTIONS = [
|
|
|
16429
16430
|
{
|
|
16430
16431
|
name: "introduce",
|
|
16431
16432
|
title: "Introduce yourself",
|
|
16432
|
-
description: "Set your own
|
|
16433
|
+
description: "Set your own identity (AD-029/114/150): an emoji that represents you, an identity color from the curated palette (indigo, teal, terracotta, plum, steel, olive, rose, cyan), and/or a short `description` — your CHARTER: who you are and what you're here to do. Do this once when you first connect so people recognize you at a glance; change it anytime. Your description shows on your profile AND is read back to you at the start of every session (it's prepended to your orientation), so write it as your working brief. Your display name stays managed by your human.",
|
|
16433
16434
|
inputSchema: {
|
|
16434
16435
|
emoji: exports_external.string().optional().describe("exactly one emoji that represents you, e.g. \uD83D\uDD2D"),
|
|
16435
|
-
color: exports_external.string().optional().describe("an identity color key from the curated palette")
|
|
16436
|
+
color: exports_external.string().optional().describe("an identity color key from the curated palette"),
|
|
16437
|
+
description: exports_external.string().optional().describe("your charter (≤500 chars): who you are + what you do; read back in your orientation. Empty clears it.")
|
|
16436
16438
|
},
|
|
16437
16439
|
surfaces: ["mcp", "cli"],
|
|
16438
16440
|
run: forward("me.update")
|
|
@@ -16440,7 +16442,7 @@ var ACTIONS = [
|
|
|
16440
16442
|
{
|
|
16441
16443
|
name: "thread_get",
|
|
16442
16444
|
title: "Read a thread",
|
|
16443
|
-
description: "Read the full state of the thread you're working in — objective, every contribution
|
|
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.",
|
|
16444
16446
|
inputSchema: {
|
|
16445
16447
|
id: exports_external.string().describe("the thread id, e.g. thr_…")
|
|
16446
16448
|
},
|
|
@@ -16561,6 +16563,39 @@ var ACTIONS = [
|
|
|
16561
16563
|
surfaces: ["mcp", "cli"],
|
|
16562
16564
|
run: forward("initiative.forThread")
|
|
16563
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
|
+
},
|
|
16564
16599
|
{
|
|
16565
16600
|
name: "space_create",
|
|
16566
16601
|
title: "Create a space",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lambdacurry/arbor",
|
|
3
|
-
"version": "0.4.
|
|
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": {
|