@lambdacurry/arbor 0.23.3 → 0.23.4
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 +20 -8
- package/package.json +1 -1
package/dist/arbor.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// package.json
|
|
3
3
|
var package_default = {
|
|
4
4
|
name: "@lambdacurry/arbor",
|
|
5
|
-
version: "0.23.
|
|
5
|
+
version: "0.23.4",
|
|
6
6
|
description: "The Arbor CLI — a shared workspace for people and agents. The human + headless-agent write path over Arbor's guarded operation surface.",
|
|
7
7
|
keywords: [
|
|
8
8
|
"agents",
|
|
@@ -11333,12 +11333,12 @@ var ACTION_DEFINITIONS = [
|
|
|
11333
11333
|
},
|
|
11334
11334
|
{
|
|
11335
11335
|
name: "thread_list",
|
|
11336
|
-
title: "List threads
|
|
11337
|
-
description: "List
|
|
11336
|
+
title: "List assigned threads or a Space's threads",
|
|
11337
|
+
description: "List Threads you are responsible for (default), another profile's or jointly several, unassigned in one Space/Topic, or every Thread in a Space (`assignee=any` + spaceId) — default current work; status widens; order=activity is last-activity DESC (the aggregate board). `inbox` remains what you owe.",
|
|
11338
11338
|
inputSchema: {
|
|
11339
|
-
assignee: union([string2(), array(string2()).min(1).max(5)]).optional().describe("`me` (default)
|
|
11339
|
+
assignee: union([string2(), array(string2()).min(1).max(5)]).optional().describe("`me` (default), a profile id (prof_…), a list (assigned to ALL of them), or `any` (every Thread in the required spaceId)"),
|
|
11340
11340
|
unassigned: boolean2().optional().describe("threads with no assignee — requires spaceId or topicId"),
|
|
11341
|
-
spaceId: string2().optional().describe("
|
|
11341
|
+
spaceId: string2().optional().describe("one space, spc_… — required for assignee=any; unassigned needs spaceId or topicId"),
|
|
11342
11342
|
topicId: string2().optional().describe("narrow to one topic, top_…"),
|
|
11343
11343
|
status: _enum([
|
|
11344
11344
|
"current",
|
|
@@ -14707,9 +14707,21 @@ function positionalSpecs(action) {
|
|
|
14707
14707
|
return fields.map((field) => specs.find((spec) => spec.field === field));
|
|
14708
14708
|
}
|
|
14709
14709
|
var KNOWN_MISREACHES = [
|
|
14710
|
-
{
|
|
14711
|
-
|
|
14712
|
-
|
|
14710
|
+
{
|
|
14711
|
+
tried: "thread list",
|
|
14712
|
+
use: "thread_list",
|
|
14713
|
+
why: "the bounded page (My Threads by default; a Space is --space-id --assignee any)"
|
|
14714
|
+
},
|
|
14715
|
+
{
|
|
14716
|
+
tried: "threads",
|
|
14717
|
+
use: "tree --depth threads",
|
|
14718
|
+
why: "the tree is the map; thread_list is the bounded page"
|
|
14719
|
+
},
|
|
14720
|
+
{
|
|
14721
|
+
tried: "list threads",
|
|
14722
|
+
use: "tree --depth threads",
|
|
14723
|
+
why: "the tree is the map; thread_list is the bounded page"
|
|
14724
|
+
},
|
|
14713
14725
|
{ tried: "spaces", use: "tree", why: "the tree lists spaces" },
|
|
14714
14726
|
{ tried: "space list", use: "tree", why: "the tree lists spaces" },
|
|
14715
14727
|
{ tried: "topics", use: "tree --depth topics", why: "topics are a tree depth" },
|
package/package.json
CHANGED