@lambdacurry/arbor 0.6.4 → 0.6.5
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
|
@@ -1573,6 +1573,7 @@ var requests = sqliteTable("requests", {
|
|
|
1573
1573
|
kind: text("kind").$type().notNull(),
|
|
1574
1574
|
requestedAction: text("requested_action"),
|
|
1575
1575
|
aboutContributionId: text("about_contribution_id"),
|
|
1576
|
+
requestedType: text("requested_type").$type(),
|
|
1576
1577
|
audience: text("audience", { mode: "json" }).$type().notNull(),
|
|
1577
1578
|
completionPolicy: text("completion_policy", { mode: "json" }).$type().notNull(),
|
|
1578
1579
|
status: text("status").$type().notNull().default("open"),
|
|
@@ -16274,6 +16275,7 @@ var ACTIONS = [
|
|
|
16274
16275
|
inputSchema: {
|
|
16275
16276
|
threadId: exports_external.string().describe("the thread the request is in, thr_…"),
|
|
16276
16277
|
requestedAction: exports_external.string().optional().describe("a one-line 'what you're requesting'"),
|
|
16278
|
+
requestedType: exports_external.enum(CONTRIBUTION_TYPES).optional().describe("the contribution type you're HOPING for (e.g. evidence, decision) — a soft default on the responder's picker, never a constraint; omit for 'any contribution welcome'. Contribution asks only"),
|
|
16277
16279
|
aboutContributionId: exports_external.string().optional().describe("PASS to request a REVIEW of this contribution (con_…, in the thread; met by a stamp, badges that card). OMIT to request a CONTRIBUTION on the thread (met by a respond)."),
|
|
16278
16280
|
targetProfileIds: exports_external.array(exports_external.string()).optional().describe("targeted recipients (omit → open board)"),
|
|
16279
16281
|
completion: exports_external.enum(["first", "quorum", "all-targets", "deadline", "explicit"]),
|
package/package.json
CHANGED