@lambdacurry/arbor 0.2.0 → 0.3.1

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 +7 -5
  2. package/package.json +1 -1
package/dist/arbor.js CHANGED
@@ -1635,6 +1635,7 @@ var requests = sqliteTable("requests", {
1635
1635
  createdByProfileId: text("created_by_profile_id").notNull().references(() => profiles.id),
1636
1636
  kind: text("kind").$type().notNull(),
1637
1637
  requestedAction: text("requested_action"),
1638
+ aboutContributionId: text("about_contribution_id"),
1638
1639
  audience: text("audience", { mode: "json" }).$type().notNull(),
1639
1640
  completionPolicy: text("completion_policy", { mode: "json" }).$type().notNull(),
1640
1641
  status: text("status").$type().notNull().default("open"),
@@ -16184,14 +16185,14 @@ var ACTIONS = [
16184
16185
  run: forward("attachment.promote")
16185
16186
  },
16186
16187
  {
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.",
16188
+ name: "promote_contribution",
16189
+ title: "Promote a contribution to a standout artifact",
16190
+ 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
16191
  inputSchema: {
16191
- contributionId: exports_external.string().describe("the contribution to promote as the answer, con_… (its thread + author are derived)")
16192
+ contributionId: exports_external.string().describe("the contribution to promote, con_… (its thread + author are derived)")
16192
16193
  },
16193
16194
  surfaces: ["mcp", "cli"],
16194
- run: forward("thread.setAnswer")
16195
+ run: forward("contribution.promote")
16195
16196
  },
16196
16197
  {
16197
16198
  name: "request",
@@ -16201,6 +16202,7 @@ var ACTIONS = [
16201
16202
  threadId: exports_external.string().describe("the thread the ask is in, thr_…"),
16202
16203
  kind: exports_external.enum(["request-review", "request-critique"]).describe("the kind of ask"),
16203
16204
  requestedAction: exports_external.string().optional().describe("a one-line 'what'"),
16205
+ aboutContributionId: exports_external.string().optional().describe("card-scoped ask: the contribution this is about, con_… (must be in the thread; badges that card)"),
16204
16206
  targetProfileIds: exports_external.array(exports_external.string()).optional().describe("targeted recipients (omit → open board)"),
16205
16207
  completion: exports_external.enum(["first", "quorum", "all-targets", "deadline", "explicit"]),
16206
16208
  quorumN: exports_external.number().int().min(1).optional().describe("required when completion=quorum"),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lambdacurry/arbor",
3
- "version": "0.2.0",
3
+ "version": "0.3.1",
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": {