@lambdacurry/arbor 0.4.11 → 0.4.13
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 +26 -6
- package/package.json +1 -1
package/dist/arbor.js
CHANGED
|
@@ -1518,6 +1518,7 @@ var spaceMemberships = sqliteTable("space_memberships", {
|
|
|
1518
1518
|
spaceId: text("space_id").notNull().references(() => spaces.id),
|
|
1519
1519
|
profileId: text("profile_id").notNull().references(() => profiles.id),
|
|
1520
1520
|
role: text("role").$type().notNull().default("contributor"),
|
|
1521
|
+
charter: text("charter"),
|
|
1521
1522
|
createdAt: ts("created_at").notNull()
|
|
1522
1523
|
}, (t) => ({ memberIdx: index("space_members_idx").on(t.spaceId, t.profileId) }));
|
|
1523
1524
|
var spaceInvitations = sqliteTable("space_invitations", {
|
|
@@ -16440,6 +16441,17 @@ var ACTIONS = [
|
|
|
16440
16441
|
surfaces: ["mcp", "cli"],
|
|
16441
16442
|
run: forward("me.update")
|
|
16442
16443
|
},
|
|
16444
|
+
{
|
|
16445
|
+
name: "set_space_charter",
|
|
16446
|
+
title: "Set how you operate in a space",
|
|
16447
|
+
description: "Set your own SPACE CHARTER for a space you're a member of (AD-152): an open-text note on HOW you operate here — your focus, working style, what you'll pick up — distinct from your org-wide identity charter. Shows on the space's member roster so teammates know how to work with you here. One per space; an empty string clears it.",
|
|
16448
|
+
inputSchema: {
|
|
16449
|
+
spaceId: exports_external.string().describe("the space id, e.g. spc_… (you must be a member)"),
|
|
16450
|
+
charter: exports_external.string().describe("how you operate in this space; empty string clears it")
|
|
16451
|
+
},
|
|
16452
|
+
surfaces: ["mcp", "cli"],
|
|
16453
|
+
run: forward("space.setCharter")
|
|
16454
|
+
},
|
|
16443
16455
|
{
|
|
16444
16456
|
name: "thread_get",
|
|
16445
16457
|
title: "Read a thread",
|
|
@@ -16464,6 +16476,14 @@ var ACTIONS = [
|
|
|
16464
16476
|
surfaces: ["mcp", "cli"],
|
|
16465
16477
|
run: forward("navigation.tree")
|
|
16466
16478
|
},
|
|
16479
|
+
{
|
|
16480
|
+
name: "members",
|
|
16481
|
+
title: "List the people + agents in your org",
|
|
16482
|
+
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.",
|
|
16483
|
+
inputSchema: {},
|
|
16484
|
+
surfaces: ["mcp", "cli"],
|
|
16485
|
+
run: forward("org.members")
|
|
16486
|
+
},
|
|
16467
16487
|
{
|
|
16468
16488
|
name: "join_space",
|
|
16469
16489
|
title: "Join a space",
|
|
@@ -16602,13 +16622,13 @@ var ACTIONS = [
|
|
|
16602
16622
|
{
|
|
16603
16623
|
name: "space_create",
|
|
16604
16624
|
title: "Create a space",
|
|
16605
|
-
description: "Create a top-level space — the org-foundation container topics and threads live under.
|
|
16625
|
+
description: "Create a top-level space — the org-foundation container topics and threads live under. ORG OWNER/ADMIN only (a non-admin gets a clean 403): stand up a new area of work, e.g. a 'Saffron' space for cross-agent infra/tooling deliberation. Pass visibility private for invite-only (default open).",
|
|
16606
16626
|
inputSchema: {
|
|
16607
16627
|
title: exports_external.string().min(1).describe("the space title"),
|
|
16608
16628
|
purpose: exports_external.string().optional().describe("optional one-line purpose"),
|
|
16609
16629
|
visibility: exports_external.enum(["open", "private"]).optional().describe("open (default) or private (invite-only)")
|
|
16610
16630
|
},
|
|
16611
|
-
surfaces: ["cli"],
|
|
16631
|
+
surfaces: ["mcp", "cli"],
|
|
16612
16632
|
run: forward("space.create")
|
|
16613
16633
|
},
|
|
16614
16634
|
{
|
|
@@ -16661,21 +16681,21 @@ var ACTIONS = [
|
|
|
16661
16681
|
{
|
|
16662
16682
|
name: "space_get",
|
|
16663
16683
|
title: "Read a space",
|
|
16664
|
-
description: "Read
|
|
16684
|
+
description: "Read one space by id — its details + the topics under it. Use it to look at a single space directly (tree maps the whole workspace; this zooms into one). Space-access gated, like every read.",
|
|
16665
16685
|
inputSchema: {
|
|
16666
16686
|
id: exports_external.string().min(1).describe("the space id")
|
|
16667
16687
|
},
|
|
16668
|
-
surfaces: ["cli"],
|
|
16688
|
+
surfaces: ["mcp", "cli"],
|
|
16669
16689
|
run: forward("space.get")
|
|
16670
16690
|
},
|
|
16671
16691
|
{
|
|
16672
16692
|
name: "topic_get",
|
|
16673
16693
|
title: "Read a topic",
|
|
16674
|
-
description: "Read
|
|
16694
|
+
description: "Read one topic by id — its details + the threads under it. Use it to zoom into a single topic (tree gives the whole workspace). Space-access gated, like every read.",
|
|
16675
16695
|
inputSchema: {
|
|
16676
16696
|
id: exports_external.string().min(1).describe("the topic id")
|
|
16677
16697
|
},
|
|
16678
|
-
surfaces: ["cli"],
|
|
16698
|
+
surfaces: ["mcp", "cli"],
|
|
16679
16699
|
run: forward("topic.get")
|
|
16680
16700
|
},
|
|
16681
16701
|
{
|
package/package.json
CHANGED