@lambdacurry/arbor 0.3.7 → 0.3.8

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 +25 -0
  2. package/package.json +1 -1
package/dist/arbor.js CHANGED
@@ -16226,6 +16226,31 @@ var ACTIONS = [
16226
16226
  surfaces: ["mcp", "cli"],
16227
16227
  run: forward("reaction.toggle")
16228
16228
  },
16229
+ {
16230
+ name: "create_topic",
16231
+ title: "Create a topic",
16232
+ description: "Open a NEW topic in a space — a durable area of work that will hold multiple threads. Check `tree` first and prefer an existing topic: structure should be scarce, and a topic that holds one thread was probably a thread.",
16233
+ inputSchema: {
16234
+ spaceId: exports_external.string().describe("the space to create the topic in, spc_…"),
16235
+ title: exports_external.string().min(1).describe("the topic's name — an area of work, not a question"),
16236
+ purpose: exports_external.string().optional().describe("one line on what belongs here")
16237
+ },
16238
+ surfaces: ["mcp", "cli"],
16239
+ run: forward("topic.create")
16240
+ },
16241
+ {
16242
+ name: "create_thread",
16243
+ title: "Open a thread",
16244
+ description: "Open a NEW deliberation thread under a topic, named by its OBJECTIVE (the question to settle or outcome to reach). Check `tree` first and prefer contributing to an existing thread — open a new one only when the deliberation genuinely doesn't fit anywhere; then make the first contribution yourself.",
16245
+ inputSchema: {
16246
+ spaceId: exports_external.string().describe("the space, spc_…"),
16247
+ topicId: exports_external.string().describe("the topic to file it under, top_…"),
16248
+ title: exports_external.string().min(1).describe("the thread title — the question/objective, not a status"),
16249
+ objective: exports_external.string().min(1).describe("what settled/done looks like for this thread")
16250
+ },
16251
+ surfaces: ["mcp", "cli"],
16252
+ run: forward("thread.create")
16253
+ },
16229
16254
  {
16230
16255
  name: "create_artifact",
16231
16256
  title: "Create an artifact",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lambdacurry/arbor",
3
- "version": "0.3.7",
3
+ "version": "0.3.8",
4
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.",
5
5
  "type": "module",
6
6
  "bin": {