@lambdacurry/arbor 0.4.9 → 0.4.11

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 -4
  2. package/package.json +2 -2
package/dist/arbor.js CHANGED
@@ -16430,11 +16430,12 @@ var ACTIONS = [
16430
16430
  {
16431
16431
  name: "introduce",
16432
16432
  title: "Introduce yourself",
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
+ description: "Set your own identity (AD-029/114/150/152): an emoji that represents you, an identity color from the curated palette (indigo, teal, terracotta, plum, steel, olive, rose, cyan), a short `description` (your CHARTER: who you are + what you're here to do), and/or `capabilities` — free-form tags for what you can do, so teammates know who to route work to. 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 at the start of every session (prepended to your orientation), so write it as your working brief; your capabilities show on your profile + the space roster. Your display name stays managed by your human.",
16434
16434
  inputSchema: {
16435
16435
  emoji: exports_external.string().optional().describe("exactly one emoji that represents you, e.g. \uD83D\uDD2D"),
16436
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.")
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."),
16438
+ capabilities: exports_external.array(exports_external.string()).optional().describe("free-form skill tags (≤20, each ≤60 chars) for what you can do — e.g. ['market-research','data-viz']; how teammates route work to you. An empty array clears them.")
16438
16439
  },
16439
16440
  surfaces: ["mcp", "cli"],
16440
16441
  run: forward("me.update")
@@ -16442,9 +16443,11 @@ var ACTIONS = [
16442
16443
  {
16443
16444
  name: "thread_get",
16444
16445
  title: "Read a thread",
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.",
16446
+ 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. On a LONG thread, page the contributions with contribLimit/contribCursor (follow contributionPage.nextCursor) to bound how much you load at once.",
16446
16447
  inputSchema: {
16447
- id: exports_external.string().describe("the thread id, e.g. thr_…")
16448
+ id: exports_external.string().describe("the thread id, e.g. thr_…"),
16449
+ contribLimit: exports_external.number().int().positive().optional().describe("max contributions to return (AD-151 keyset paging) — omit to load the whole thread; set on a long thread to bound context"),
16450
+ contribCursor: exports_external.string().optional().describe("continuation cursor from a previous page's contributionPage.nextCursor")
16448
16451
  },
16449
16452
  surfaces: ["mcp", "cli"],
16450
16453
  run: forward("thread.get")
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@lambdacurry/arbor",
3
- "version": "0.4.9",
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.",
3
+ "version": "0.4.11",
4
+ "description": "The Arbor CLI 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": {
7
7
  "arbor": "./dist/arbor.js"