@lambdacurry/arbor 0.3.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.
- package/dist/arbor.js +2 -0
- 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"),
|
|
@@ -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.3.
|
|
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": {
|