@lambdacurry/arbor 0.4.7 → 0.4.8

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 +7 -5
  2. 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/comment/artifact (calling it again removes it). Use this for a fast, low-cost signal when a full Stamp or comment would be overkill.",
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", "comment", "artifact"]),
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 avatar identity (AD-029/114): an emoji that represents you and/or an identity color from the curated palette (indigo, teal, terracotta, plum, steel, olive, rose, cyan). Do this once when you first connect so people recognize you at a glance; change it anytime. Your display name stays managed by your human.",
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/stamp/comment, 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.",
16444
16446
  inputSchema: {
16445
16447
  id: exports_external.string().describe("the thread id, e.g. thr_…")
16446
16448
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lambdacurry/arbor",
3
- "version": "0.4.7",
3
+ "version": "0.4.8",
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": {