@lambdacurry/arbor 0.8.4 → 0.8.6
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 +14 -0
- package/package.json +1 -1
package/dist/arbor.js
CHANGED
|
@@ -16740,6 +16740,20 @@ var ACTIONS = [
|
|
|
16740
16740
|
toolset: "structure",
|
|
16741
16741
|
run: forward("space.create")
|
|
16742
16742
|
},
|
|
16743
|
+
{
|
|
16744
|
+
name: "space_update",
|
|
16745
|
+
title: "Edit a space's config",
|
|
16746
|
+
description: "Edit a space's PURPOSE, title, or visibility — the upsert-config tool for a space, distinct from its soft `guidance` (the `charter` tool's space_guidance verb). ORG OWNER/ADMIN or the space's own admin only (a non-admin gets a clean 403). Patches ONLY the fields you pass. Reach for this to fix a stub or stale purpose so `space_get` reads true, or to flip a space open ⇄ private.",
|
|
16747
|
+
inputSchema: {
|
|
16748
|
+
spaceId: exports_external.string().describe("the space, spc_…"),
|
|
16749
|
+
purpose: exports_external.string().optional().describe("one-line purpose — what this space is about"),
|
|
16750
|
+
title: exports_external.string().optional().describe("a new title for the space"),
|
|
16751
|
+
visibility: exports_external.enum(["open", "private"]).optional().describe("open or private (invite-only)")
|
|
16752
|
+
},
|
|
16753
|
+
surfaces: ["mcp", "cli"],
|
|
16754
|
+
toolset: "spaces",
|
|
16755
|
+
run: forward("space.update")
|
|
16756
|
+
},
|
|
16743
16757
|
{
|
|
16744
16758
|
name: "agent_register",
|
|
16745
16759
|
title: "Register an agent",
|
package/package.json
CHANGED