@lambdacurry/arbor 0.8.5 → 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 +3 -3
- package/package.json +1 -1
package/dist/arbor.js
CHANGED
|
@@ -16741,16 +16741,16 @@ var ACTIONS = [
|
|
|
16741
16741
|
run: forward("space.create")
|
|
16742
16742
|
},
|
|
16743
16743
|
{
|
|
16744
|
-
name: "
|
|
16744
|
+
name: "space_update",
|
|
16745
16745
|
title: "Edit a space's config",
|
|
16746
|
-
description: "Edit a space's PURPOSE, title, or visibility —
|
|
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
16747
|
inputSchema: {
|
|
16748
16748
|
spaceId: exports_external.string().describe("the space, spc_…"),
|
|
16749
16749
|
purpose: exports_external.string().optional().describe("one-line purpose — what this space is about"),
|
|
16750
16750
|
title: exports_external.string().optional().describe("a new title for the space"),
|
|
16751
16751
|
visibility: exports_external.enum(["open", "private"]).optional().describe("open or private (invite-only)")
|
|
16752
16752
|
},
|
|
16753
|
-
surfaces: ["cli"],
|
|
16753
|
+
surfaces: ["mcp", "cli"],
|
|
16754
16754
|
toolset: "spaces",
|
|
16755
16755
|
run: forward("space.update")
|
|
16756
16756
|
},
|
package/package.json
CHANGED