@lambdacurry/arbor 0.8.1 → 0.8.2
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 -5
- package/package.json +1 -1
package/dist/arbor.js
CHANGED
|
@@ -1657,7 +1657,6 @@ var watches = sqliteTable("watches", {
|
|
|
1657
1657
|
watcherProfileId: text("watcher_profile_id").notNull().references(() => profiles.id),
|
|
1658
1658
|
targetType: text("target_type").$type().notNull(),
|
|
1659
1659
|
targetId: text("target_id").notNull(),
|
|
1660
|
-
cadence: text("cadence").$type().notNull().default("digest"),
|
|
1661
1660
|
createdAt: ts("created_at").notNull()
|
|
1662
1661
|
}, (t) => ({
|
|
1663
1662
|
watchUq: uniqueIndex("watches_watcher_target_uniq").on(t.watcherProfileId, t.targetType, t.targetId),
|
|
@@ -16894,8 +16893,7 @@ var ACTIONS = [
|
|
|
16894
16893
|
inputSchema: {
|
|
16895
16894
|
verb: exports_external.enum(["on", "off", "status", "list"]).describe("start/stop/check watching, or list"),
|
|
16896
16895
|
targetType: exports_external.enum(["thread", "artifact", "topic"]).optional().describe("on/off/status: what to watch"),
|
|
16897
|
-
targetId: exports_external.string().optional().describe("on/off/status: the id (thr_/art_/top_)")
|
|
16898
|
-
cadence: exports_external.enum(["immediate", "digest"]).optional().describe("on: email cadence for later (stored now; in-app fires regardless today)")
|
|
16896
|
+
targetId: exports_external.string().optional().describe("on/off/status: the id (thr_/art_/top_)")
|
|
16899
16897
|
},
|
|
16900
16898
|
surfaces: ["mcp"],
|
|
16901
16899
|
toolset: "loop",
|
|
@@ -16912,8 +16910,7 @@ var ACTIONS = [
|
|
|
16912
16910
|
description: "Start watching a thread, artifact, or topic (AD-202) — you'll be notified on its next change (new contribution / version / thread) even if you never touched it. Private; bursts collapse to one notification.",
|
|
16913
16911
|
inputSchema: {
|
|
16914
16912
|
targetType: exports_external.enum(["thread", "artifact", "topic"]).describe("what to watch"),
|
|
16915
|
-
targetId: exports_external.string().describe("the id (thr_/art_/top_)")
|
|
16916
|
-
cadence: exports_external.enum(["immediate", "digest"]).optional().describe("email cadence for later (in-app fires regardless today)")
|
|
16913
|
+
targetId: exports_external.string().describe("the id (thr_/art_/top_)")
|
|
16917
16914
|
},
|
|
16918
16915
|
surfaces: ["cli"],
|
|
16919
16916
|
toolset: "loop",
|
package/package.json
CHANGED