@lambdacurry/arbor 0.4.21 → 0.4.22
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 +4 -4
- package/package.json +1 -1
package/dist/arbor.js
CHANGED
|
@@ -15996,9 +15996,9 @@ var ORIENTATION = `Arbor is your team's deliberation room and shared memory —
|
|
|
15996
15996
|
1. RECALL FIRST. Run \`recall\` before re-deriving or restating anything — it may already be settled; cite prior work ([label](#con_…)) and build on it. Empty recall is itself worth noting. WHY: a room where everyone re-derives is just a chat log.
|
|
15997
15997
|
2. CONTRIBUTE typed points — ONE point per contribution, with the type that names your move (proposal / critique / question / evidence / risk / correction / assertion / decision). Markdown welcome; put references IN your prose (a URL or [label](#con_…) becomes a navigable reference — there's no separate links field). WHY: one typed point is reviewable on its own.
|
|
15998
15998
|
3. ANSWER through asks. When \`inbox\` or a thread shows an open request you can meet, answer THROUGH it — \`respond\` to it, or \`stamp\` the contribution a review-ask is about — so it completes and the requester is notified. WHY: a plain reply that merely happens to answer leaves their ask hanging (the most common failure).
|
|
15999
|
-
4. REVIEW honestly. \`stamp\` to vouch or push back
|
|
15999
|
+
4. REVIEW honestly; promote the standout, sparingly. \`stamp\` to vouch or push back with a one-line why (you can't stamp your own work — ask via \`request\`). PROMOTE a contribution/artifact only when it's the standout the org should find FIRST (the \uD83C\uDF96️). WHY: promotion is curation, not applause — and it's about an OUTPUT, never a whole thread (a thread RESOLVES; it is never "promoted").
|
|
16000
16000
|
5. EDIT, don't repost. \`edit\` your own contribution to sharpen it; the record stays audited. A genuinely different point is a NEW contribution.
|
|
16001
|
-
6. OPEN STRUCTURE sparingly. Check \`tree\` first and prefer an existing thread; \`create_topic\`/\`create_thread\` only when work truly doesn't fit, named by its OBJECTIVE with your first contribution.
|
|
16001
|
+
6. OPEN STRUCTURE sparingly, and CLOSE it when done. Check \`tree\` first and prefer an existing thread; \`create_topic\`/\`create_thread\` only when work truly doesn't fit, named by its OBJECTIVE with your first contribution. When a thread reaches its conclusion, \`transition_thread --to resolved\` (done); if it was opened in the wrong place, \`--to archived\` and reopen where it belongs. WHY: structure is scarce — both clutter AND open threads no one closes make the room harder to read.
|
|
16002
16002
|
|
|
16003
16003
|
Run \`arbor help\` (or read the MCP tool list) for the exact command/flags — those stay generated from the live action surface, so they're always current.`;
|
|
16004
16004
|
function forward(operation) {
|
|
@@ -16114,10 +16114,10 @@ var ACTIONS = [
|
|
|
16114
16114
|
{
|
|
16115
16115
|
name: "transition_thread",
|
|
16116
16116
|
title: "Move a thread's lifecycle",
|
|
16117
|
-
description: "Move a thread along its deliberate lifecycle (AD-068).
|
|
16117
|
+
description: "Move a thread along its deliberate lifecycle (AD-068/159). The two CLOSED states are about the WORK, not curation: `resolved` = the deliberation reached its conclusion (done) — use this to close a thread you've settled; `archived` = retire/shelve it (e.g. opened in the wrong place — archive it, then open a fresh one where it belongs). Both drop out of normal recall and stay recoverable to `active`. You can also flag it `stuck`/`needs-review` while it's open. NOTE: a standout OUTPUT gets promoted (a \uD83C\uDF96️ contribution/artifact via `promote_contribution`) — the THREAD just resolves; don't look for a 'promote thread'. Illegal jumps are rejected.",
|
|
16118
16118
|
inputSchema: {
|
|
16119
16119
|
threadId: exports_external.string().describe("the thread to move, thr_…"),
|
|
16120
|
-
to: exports_external.string().describe("target status: active|needs-review|stuck|
|
|
16120
|
+
to: exports_external.string().describe("target status: active|needs-review|stuck|resolved|archived"),
|
|
16121
16121
|
reason: exports_external.string().optional().describe("optional one-line why, recorded on the event")
|
|
16122
16122
|
},
|
|
16123
16123
|
surfaces: ["mcp", "cli"],
|
package/package.json
CHANGED