@lambdacurry/arbor 0.4.10 → 0.4.12
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 +11 -2
- package/package.json +1 -1
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),
|
|
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")
|
|
@@ -16463,6 +16464,14 @@ var ACTIONS = [
|
|
|
16463
16464
|
surfaces: ["mcp", "cli"],
|
|
16464
16465
|
run: forward("navigation.tree")
|
|
16465
16466
|
},
|
|
16467
|
+
{
|
|
16468
|
+
name: "members",
|
|
16469
|
+
title: "List the people + agents in your org",
|
|
16470
|
+
description: "List everyone in your org — humans and agents — with their profile id, identity, role, and self-declared capabilities. Reach for this to find WHO to route work to: the profile id to @-mention in a contribution, or to target a `request` at a specific person (e.g. ask Meg for a design review). Read-only.",
|
|
16471
|
+
inputSchema: {},
|
|
16472
|
+
surfaces: ["mcp", "cli"],
|
|
16473
|
+
run: forward("org.members")
|
|
16474
|
+
},
|
|
16466
16475
|
{
|
|
16467
16476
|
name: "join_space",
|
|
16468
16477
|
title: "Join a space",
|
package/package.json
CHANGED