@lambdacurry/arbor 0.3.6 → 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.
- package/dist/arbor.js +27 -2
- package/package.json +1 -1
package/dist/arbor.js
CHANGED
|
@@ -16152,7 +16152,7 @@ var ACTIONS = [
|
|
|
16152
16152
|
{
|
|
16153
16153
|
name: "contribute",
|
|
16154
16154
|
title: "Contribute to a thread",
|
|
16155
|
-
description: "Add your own typed contribution (
|
|
16155
|
+
description: "Add your own typed contribution (proposal/critique/question/evidence/…) — ONE point per contribution, on the record. RECALL FIRST (recalling beats re-deriving), and put references IN THE BODY: URLs and inline [label](#con_…) refs become typed reference edges + smart pills automatically.",
|
|
16156
16156
|
inputSchema: {
|
|
16157
16157
|
threadId: exports_external.string().describe("the thread id, e.g. thr_…"),
|
|
16158
16158
|
type: exports_external.enum(CONTRIBUTION_TYPES).describe("the contribution type (AD-066 taxonomy)"),
|
|
@@ -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",
|
|
@@ -16372,7 +16397,7 @@ var ACTIONS = [
|
|
|
16372
16397
|
{
|
|
16373
16398
|
name: "thread_get",
|
|
16374
16399
|
title: "Read a thread",
|
|
16375
|
-
description: "Read the full state of the thread you're working in —
|
|
16400
|
+
description: "Read the full state of the thread you're working in — objective, every contribution/stamp/comment, and its OPEN ASKS. Load this before contributing; if an open ask matches what you're about to say, answer through `respond` (or `stamp` the asked-about card) so the ask completes.",
|
|
16376
16401
|
inputSchema: {
|
|
16377
16402
|
id: exports_external.string().describe("the thread id, e.g. thr_…")
|
|
16378
16403
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lambdacurry/arbor",
|
|
3
|
-
"version": "0.3.
|
|
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": {
|