@lambdacurry/arbor 0.21.56 → 0.21.57
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 +11 -11
- package/package.json +1 -1
package/dist/arbor.js
CHANGED
|
@@ -16,7 +16,7 @@ var __export = (target, all) => {
|
|
|
16
16
|
// package.json
|
|
17
17
|
var package_default = {
|
|
18
18
|
name: "@lambdacurry/arbor",
|
|
19
|
-
version: "0.21.
|
|
19
|
+
version: "0.21.57",
|
|
20
20
|
description: "The Arbor CLI — a shared workspace for people and agents. The human + headless-agent write path over Arbor's guarded operation surface.",
|
|
21
21
|
keywords: [
|
|
22
22
|
"agents",
|
|
@@ -19672,11 +19672,11 @@ var ACTION_DEFINITIONS = [
|
|
|
19672
19672
|
{
|
|
19673
19673
|
name: "create_topic",
|
|
19674
19674
|
title: "Create a topic",
|
|
19675
|
-
description: "
|
|
19675
|
+
description: "Create a Topic for a durable sub-area that will hold multiple Threads (check tree first so structure stays scarce); otherwise keep the work in a Thread. Give it one primary operating role so future contributors know what normally happens there.",
|
|
19676
19676
|
inputSchema: {
|
|
19677
19677
|
spaceId: exports_external.string().describe("the space to create the topic in, spc_…"),
|
|
19678
19678
|
title: exports_external.string().min(1).describe("the topic's name — an area of work, not a question"),
|
|
19679
|
-
purpose: exports_external.string().optional().describe("
|
|
19679
|
+
purpose: exports_external.string().optional().describe("what this Topic accomplishes and what belongs here, leading with its primary role — Direction, Delivery, Operations, Intake, Coordination, or Learning; name an external or split source of truth or a handoff boundary only when it materially matters")
|
|
19680
19680
|
},
|
|
19681
19681
|
surfaces: ["mcp", "cli"],
|
|
19682
19682
|
toolset: "structure",
|
|
@@ -19698,7 +19698,7 @@ var ACTION_DEFINITIONS = [
|
|
|
19698
19698
|
{
|
|
19699
19699
|
name: "set_topic_guidance",
|
|
19700
19700
|
title: "Set a topic's guidance",
|
|
19701
|
-
description: "Set a topic's SOFT guidance — the local how-we-work norms for this topic (culture/quality, AD-063), e.g. 'recall before re-deriving', 'one typed point per contribution'. Soft norms only; hard governance (permissions, rate, join) lives at the space, and FACTS about the area (where its code lives, what it covers) belong in the topic's purpose — `topic_update`, not here. You READ guidance to learn the room's habits — it's distinct from `set_ways_to_help` (what's open on a thread) and `request` (obligations). Replaces the whole list; pass [] to clear.
|
|
19701
|
+
description: "Set a topic's SOFT guidance — the local how-we-work norms for this topic (culture/quality, AD-063), e.g. 'recall before re-deriving', 'one typed point per contribution'. Soft norms only; hard governance (permissions, rate, join) lives at the space, and FACTS about the area (where its code lives, what it covers) belong in the topic's purpose — `topic_update`, not here. You READ guidance to learn the room's habits — it's distinct from `set_ways_to_help` (what's open on a thread) and `request` (obligations). Replaces the whole list; pass [] to clear.",
|
|
19702
19702
|
inputSchema: {
|
|
19703
19703
|
topicId: exports_external.string().describe("the topic, top_…"),
|
|
19704
19704
|
guidance: proseList("the full guidance list — replaces the existing one; [] clears it")
|
|
@@ -19710,7 +19710,7 @@ var ACTION_DEFINITIONS = [
|
|
|
19710
19710
|
{
|
|
19711
19711
|
name: "set_space_guidance",
|
|
19712
19712
|
title: "Set a space's guidance",
|
|
19713
|
-
description: "Set a SPACE's SOFT guidance — the how-we-work-here norms for the whole space (culture/quality, AD-062/063), e.g. 'recall before re-deriving', 'promote the standout, sparingly'. Soft norms only, read not enforced; hard governance (permissions, rate, join) is separate. Members READ it (via space_get) to learn how the room operates — it's broader than `set_topic_guidance` (one topic's habits) and distinct from `request` (obligations). Replaces the whole list; pass [] to clear.
|
|
19713
|
+
description: "Set a SPACE's SOFT guidance — the how-we-work-here norms for the whole space (culture/quality, AD-062/063), e.g. 'recall before re-deriving', 'promote the standout, sparingly'. Soft norms only, read not enforced; hard governance (permissions, rate, join) is separate. Members READ it (via space_get) to learn how the room operates — it's broader than `set_topic_guidance` (one topic's habits) and distinct from `request` (obligations). Replaces the whole list; pass [] to clear.",
|
|
19714
19714
|
inputSchema: {
|
|
19715
19715
|
spaceId: exports_external.string().describe("the space, spc_…"),
|
|
19716
19716
|
guidance: proseList("the full guidance list — replaces the existing one; [] clears it")
|
|
@@ -19746,12 +19746,12 @@ var ACTION_DEFINITIONS = [
|
|
|
19746
19746
|
{
|
|
19747
19747
|
name: "create_thread",
|
|
19748
19748
|
title: "Open a thread",
|
|
19749
|
-
description: "Open a
|
|
19749
|
+
description: "Open a Thread for one focused unit of work that does not fit an existing Thread (check tree first), then make the first contribution and set waysToHelp; link an existing Goal when it serves one, or create one only when 2+ Threads share an outcome. Choose the working recipe — Decide a question, Deliver an outcome, Investigate evidence, Manage one instance, or Maintain a standing concern — and make done clear for finite work.",
|
|
19750
19750
|
inputSchema: {
|
|
19751
19751
|
spaceId: exports_external.string().describe("the space, spc_…"),
|
|
19752
19752
|
topicId: exports_external.string().describe("the topic to file it under, top_…"),
|
|
19753
|
-
title: exports_external.string().min(1).describe("the
|
|
19754
|
-
objective: exports_external.string().min(1).describe("what
|
|
19753
|
+
title: exports_external.string().min(1).describe("name the question, outcome, investigation, instance, or standing concern — not a status"),
|
|
19754
|
+
objective: exports_external.string().min(1).describe("what this Thread should accomplish; for finite work, state what done means")
|
|
19755
19755
|
},
|
|
19756
19756
|
surfaces: ["mcp", "cli"],
|
|
19757
19757
|
toolset: "loop",
|
|
@@ -20776,10 +20776,10 @@ var ACTION_DEFINITIONS = [
|
|
|
20776
20776
|
{
|
|
20777
20777
|
name: "space_create",
|
|
20778
20778
|
title: "Create a space",
|
|
20779
|
-
description: "Create a
|
|
20779
|
+
description: "Create a Space when work needs its own durable collaboration/governance boundary — its own membership, visibility, shared norms, and multiple durable areas; you become its first admin (org owner/admins always can, other members only when enabled), with open/private visibility and optional seeded members. If the work can live under an existing Space with the same people and governance, use a Topic instead.",
|
|
20780
20780
|
inputSchema: {
|
|
20781
20781
|
title: exports_external.string().min(1).describe("the space title"),
|
|
20782
|
-
purpose: exports_external.string().optional().describe("
|
|
20782
|
+
purpose: exports_external.string().optional().describe("why this boundary exists and what it is around — commonly a Product/System, Program/Function, Portfolio/Network, or Practice/Community — plus its dominant work modes (Build, Operate, Coordinate, Discuss, Share) when that helps; plain prose, not metadata syntax"),
|
|
20783
20783
|
visibility: exports_external.enum(["open", "private"]).optional().describe("open (default) or private (invite-only)"),
|
|
20784
20784
|
memberProfileIds: exports_external.array(exports_external.string()).optional().describe("org profile ids to seed as members — agents added directly, humans get a pending invite")
|
|
20785
20785
|
},
|
|
@@ -21637,7 +21637,7 @@ var ACTION_DEFINITIONS = [
|
|
|
21637
21637
|
{
|
|
21638
21638
|
name: "charter",
|
|
21639
21639
|
title: "Set the guidance surfaces",
|
|
21640
|
-
description: "Write collaboration guidance: space_charter for a member's per-Space operating charter, space/topic guidance for
|
|
21640
|
+
description: "Write collaboration guidance: space_charter for a member's per-Space operating charter, space/topic guidance for durable how-we-work-here norms, space/topic lanes for the durable kinds of help welcome there, or ways_to_help for one Thread's temporary needs. Each write replaces the selected value/list (empty clears).",
|
|
21641
21641
|
inputSchema: {
|
|
21642
21642
|
verb: exports_external.enum([
|
|
21643
21643
|
"space_charter",
|
package/package.json
CHANGED