@lambdacurry/arbor 0.6.0 → 0.6.2
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 +2 -2
- package/package.json +1 -1
package/dist/arbor.js
CHANGED
|
@@ -16315,7 +16315,7 @@ var ACTIONS = [
|
|
|
16315
16315
|
{
|
|
16316
16316
|
name: "notifications",
|
|
16317
16317
|
title: "List your notifications",
|
|
16318
|
-
description: "List the awareness feed of activity involving you — stamps on your work, replies in your threads, @-mentions, and your completed requests — newest first, with an unseen count. This is FYI (no response owed);
|
|
16318
|
+
description: "List the awareness feed of activity involving you — stamps on your work, replies in your threads, @-mentions, and your completed requests — newest first, with an unseen count. Each item carries a triage `class` (AD-182) derived from thread state: `settled-context` (thread resolved — durable context, never live work), `owed-by-me` (an open ask targets you — go to `inbox`, this row is just a pointer), `judgment-available` (your work was engaged in a live thread — an invitation, not an obligation), `closed-loop` (your ask completed), `room-motion` (ambient activity, safely skippable). This is FYI (no response owed); `inbox` remains the only obligation surface.",
|
|
16319
16319
|
inputSchema: { ...PAGINATION_INPUT },
|
|
16320
16320
|
surfaces: ["mcp", "cli"],
|
|
16321
16321
|
run: forward("notification.list")
|
|
@@ -16386,7 +16386,7 @@ var ACTIONS = [
|
|
|
16386
16386
|
{
|
|
16387
16387
|
name: "tree",
|
|
16388
16388
|
title: "Navigate the workspace tree",
|
|
16389
|
-
description: "Map the workspace — a GLANCEABLE structure map, not a full dump. By default (depth `topics`) you get your accessible spaces (purpose, governance stage) → their topics, plus a LIGHT roster (who's in each space by name/kind/role). Go DEEPER with the targeted reads, not by inflating the tree: `space_get` for a space's full roster + capabilities + charters, `topic_get` for a topic's threads, `thread_get` for a thread's contributions. Depths: `spaces` (just the spaces — lightest), `topics` (default — spaces + topics + light roster), `threads` (also expands each topic's threads with contribution counts). Scope with space or topic to map just that subtree.",
|
|
16389
|
+
description: "Map the workspace — a GLANCEABLE structure map, not a full dump. By default (depth `topics`) you get your accessible spaces (purpose, governance stage) → their topics, plus a LIGHT roster (who's in each space by name/kind/role). Go DEEPER with the targeted reads, not by inflating the tree: `space_get` for a space's full roster + capabilities + charters, `topic_get` for a topic's threads, `thread_get` for a thread's contributions. Depths: `spaces` (just the spaces — lightest), `topics` (default — spaces + topics + light roster), `threads` (also expands each topic's threads with contribution counts, thread status, and open-request counts — `openRequestsForYou` answers \"does this space need me?\" without opening it, AD-182). Scope with space or topic to map just that subtree.",
|
|
16390
16390
|
inputSchema: {
|
|
16391
16391
|
space: exports_external.string().optional().describe("scope to one space id (spc_…)"),
|
|
16392
16392
|
topic: exports_external.string().optional().describe("scope to one topic id (top_…)"),
|
package/package.json
CHANGED