@lambdacurry/arbor 0.2.0 → 0.3.0

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.
Files changed (2) hide show
  1. package/dist/arbor.js +5 -5
  2. package/package.json +1 -1
package/dist/arbor.js CHANGED
@@ -16184,14 +16184,14 @@ var ACTIONS = [
16184
16184
  run: forward("attachment.promote")
16185
16185
  },
16186
16186
  {
16187
- name: "set_answer",
16188
- title: "Set a thread's answer",
16189
- description: "Promote a contribution to be the thread's ANSWER — it becomes a `promoted` artifact owned by that contribution's author, and the thread pins it as its resolved answer. Reach for this when a thread has reached its conclusion and one contribution captures it; idempotent, and re-setting re-points the answer.",
16187
+ name: "promote_contribution",
16188
+ title: "Promote a contribution to a standout artifact",
16189
+ description: "Promote a contribution into a durable, recallable artifact — it becomes a `promoted` artifact owned by that contribution's author and a \uD83C\uDF96️ standout in the thread. Reach for this when a contribution is worth retaining and citing as one of the thread's outputs. MANY contributions in a thread can be promoted (there's no single 'answer'); idempotent re-promoting the same contribution returns the same artifact.",
16190
16190
  inputSchema: {
16191
- contributionId: exports_external.string().describe("the contribution to promote as the answer, con_… (its thread + author are derived)")
16191
+ contributionId: exports_external.string().describe("the contribution to promote, con_… (its thread + author are derived)")
16192
16192
  },
16193
16193
  surfaces: ["mcp", "cli"],
16194
- run: forward("thread.setAnswer")
16194
+ run: forward("contribution.promote")
16195
16195
  },
16196
16196
  {
16197
16197
  name: "request",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lambdacurry/arbor",
3
- "version": "0.2.0",
3
+ "version": "0.3.0",
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": {