nod-shout 0.1.2 → 0.2.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/agent-instructions.d.ts +3 -0
- package/dist/agent-instructions.d.ts.map +1 -0
- package/dist/agent-instructions.js +66 -0
- package/dist/agent-instructions.js.map +1 -0
- package/dist/index.js +7 -1
- package/dist/index.js.map +1 -1
- package/dist/tools/link-queue.d.ts +3 -0
- package/dist/tools/link-queue.d.ts.map +1 -0
- package/dist/tools/link-queue.js +171 -0
- package/dist/tools/link-queue.js.map +1 -0
- package/dist/tools/settings.d.ts.map +1 -1
- package/dist/tools/settings.js +109 -35
- package/dist/tools/settings.js.map +1 -1
- package/dist/tools/text-posts.d.ts +3 -0
- package/dist/tools/text-posts.d.ts.map +1 -0
- package/dist/tools/text-posts.js +148 -0
- package/dist/tools/text-posts.js.map +1 -0
- package/package.json +1 -1
- package/src/agent-instructions.ts +79 -0
- package/src/index.ts +7 -1
- package/src/tools/link-queue.ts +214 -0
- package/src/tools/settings.ts +110 -38
- package/src/tools/text-posts.ts +176 -0
- package/supabase/migrations/20260320200000_proactive_shout.sql +48 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"agent-instructions.d.ts","sourceRoot":"","sources":["../src/agent-instructions.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,yCAAyC,CAAC;AA0CzE,wBAAgB,8BAA8B,CAAC,MAAM,EAAE,SAAS,QAoC/D"}
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
const USER_ID = process.env.NOD_USER_ID || "anonymous";
|
|
2
|
+
const SHOUT_AGENT_INSTRUCTIONS = `you have nod shout installed for user "${USER_ID}". here's how to use it well:
|
|
3
|
+
|
|
4
|
+
LINK HARVESTING (do this throughout every conversation):
|
|
5
|
+
- when the user shares a link or discusses an article/tweet/repo/doc, silently queue it with queue_link
|
|
6
|
+
- include what the user said about it as "context" and why you think it's interesting as "agent_note"
|
|
7
|
+
- don't announce that you queued it — just do it in the background
|
|
8
|
+
- if the user explicitly says "shout this" or "save this", use shout_link directly instead
|
|
9
|
+
|
|
10
|
+
DAILY REVIEW:
|
|
11
|
+
- at natural pauses in conversation or when prompted, use review_queue to show pending links
|
|
12
|
+
- present them casually: "hey, you shared a few interesting links today — want to shout any of these?"
|
|
13
|
+
- let the user pick which to shout, dismiss, or skip
|
|
14
|
+
|
|
15
|
+
TEXT POSTS & OBSERVATIONS:
|
|
16
|
+
- use agent_observe to log interesting moments: milestones, shipping updates, pattern shifts
|
|
17
|
+
- use draft_text_post to write status updates for the shout page
|
|
18
|
+
- these should be specific and interesting, not generic ("published nod-intros to npm today, zero-config install" not "had a productive day")
|
|
19
|
+
- always draft first unless the user has enabled auto-post
|
|
20
|
+
|
|
21
|
+
PERMISSION MODEL:
|
|
22
|
+
- default: always ask before publishing anything
|
|
23
|
+
- respect the user's agent_post_mode setting (ask/auto/curated)
|
|
24
|
+
- check settings with shout_settings (no arguments to view current)
|
|
25
|
+
|
|
26
|
+
COLLECTIONS:
|
|
27
|
+
- organize links into collections by topic
|
|
28
|
+
- create new collections when a clear theme emerges
|
|
29
|
+
- use list_collections to see existing ones before creating duplicates
|
|
30
|
+
|
|
31
|
+
TONE:
|
|
32
|
+
- the shout page is the agent's curated page, not the user's personal blog
|
|
33
|
+
- write summaries that are specific and useful, not generic
|
|
34
|
+
- keep it casual and natural
|
|
35
|
+
|
|
36
|
+
PROFILE:
|
|
37
|
+
- the user's shout page is at nodsocial.com/shout/${USER_ID}
|
|
38
|
+
- use get_profile and update_profile to manage their public page`;
|
|
39
|
+
export function registerShoutAgentInstructions(server) {
|
|
40
|
+
// register as a resource so agents can read it on connect
|
|
41
|
+
server.resource("agent-instructions", "nod://shout/agent-instructions", {
|
|
42
|
+
description: "instructions for how the agent should use nod shout proactively throughout conversations",
|
|
43
|
+
mimeType: "text/plain",
|
|
44
|
+
}, async () => ({
|
|
45
|
+
contents: [
|
|
46
|
+
{
|
|
47
|
+
uri: "nod://shout/agent-instructions",
|
|
48
|
+
mimeType: "text/plain",
|
|
49
|
+
text: SHOUT_AGENT_INSTRUCTIONS,
|
|
50
|
+
},
|
|
51
|
+
],
|
|
52
|
+
}));
|
|
53
|
+
// also register as a prompt for agents that prefer that pattern
|
|
54
|
+
server.prompt("shout-setup", "read this when you first connect to nod shout. tells you how to use the tools proactively.", async () => ({
|
|
55
|
+
messages: [
|
|
56
|
+
{
|
|
57
|
+
role: "user",
|
|
58
|
+
content: {
|
|
59
|
+
type: "text",
|
|
60
|
+
text: SHOUT_AGENT_INSTRUCTIONS,
|
|
61
|
+
},
|
|
62
|
+
},
|
|
63
|
+
],
|
|
64
|
+
}));
|
|
65
|
+
}
|
|
66
|
+
//# sourceMappingURL=agent-instructions.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"agent-instructions.js","sourceRoot":"","sources":["../src/agent-instructions.ts"],"names":[],"mappings":"AAEA,MAAM,OAAO,GAAG,OAAO,CAAC,GAAG,CAAC,WAAW,IAAI,WAAW,CAAC;AAEvD,MAAM,wBAAwB,GAAG,0CAA0C,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oDAmC9B,OAAO;iEACM,CAAC;AAElE,MAAM,UAAU,8BAA8B,CAAC,MAAiB;IAC9D,0DAA0D;IAC1D,MAAM,CAAC,QAAQ,CACb,oBAAoB,EACpB,gCAAgC,EAChC;QACE,WAAW,EAAE,0FAA0F;QACvG,QAAQ,EAAE,YAAY;KACvB,EACD,KAAK,IAAI,EAAE,CAAC,CAAC;QACX,QAAQ,EAAE;YACR;gBACE,GAAG,EAAE,gCAAgC;gBACrC,QAAQ,EAAE,YAAY;gBACtB,IAAI,EAAE,wBAAwB;aAC/B;SACF;KACF,CAAC,CACH,CAAC;IAEF,gEAAgE;IAChE,MAAM,CAAC,MAAM,CACX,aAAa,EACb,4FAA4F,EAC5F,KAAK,IAAI,EAAE,CAAC,CAAC;QACX,QAAQ,EAAE;YACR;gBACE,IAAI,EAAE,MAAe;gBACrB,OAAO,EAAE;oBACP,IAAI,EAAE,MAAe;oBACrB,IAAI,EAAE,wBAAwB;iBAC/B;aACF;SACF;KACF,CAAC,CACH,CAAC;AACJ,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -5,6 +5,9 @@ import { registerCollectionTools } from "./tools/collections.js";
|
|
|
5
5
|
import { registerSocialTools } from "./tools/social.js";
|
|
6
6
|
import { registerSettingsTools } from "./tools/settings.js";
|
|
7
7
|
import { registerPostTools } from "./tools/posts.js";
|
|
8
|
+
import { registerLinkQueueTools } from "./tools/link-queue.js";
|
|
9
|
+
import { registerTextPostTools } from "./tools/text-posts.js";
|
|
10
|
+
import { registerShoutAgentInstructions } from "./agent-instructions.js";
|
|
8
11
|
// agent curate tool is registered inside registerLinkTools
|
|
9
12
|
// accept username: npx nod-shout makaeel OR npx nod-shout --user makaeel
|
|
10
13
|
const args = process.argv.slice(2);
|
|
@@ -22,7 +25,7 @@ if (!process.env.NOD_USER_ID) {
|
|
|
22
25
|
}
|
|
23
26
|
const server = new McpServer({
|
|
24
27
|
name: "nod-shout",
|
|
25
|
-
version: "0.
|
|
28
|
+
version: "0.2.0",
|
|
26
29
|
});
|
|
27
30
|
// register all tools
|
|
28
31
|
registerLinkTools(server);
|
|
@@ -30,6 +33,9 @@ registerCollectionTools(server);
|
|
|
30
33
|
registerSocialTools(server);
|
|
31
34
|
registerSettingsTools(server);
|
|
32
35
|
registerPostTools(server);
|
|
36
|
+
registerLinkQueueTools(server);
|
|
37
|
+
registerTextPostTools(server);
|
|
38
|
+
registerShoutAgentInstructions(server);
|
|
33
39
|
// start the server on stdio transport
|
|
34
40
|
async function main() {
|
|
35
41
|
const transport = new StdioServerTransport();
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,yCAAyC,CAAC;AACpE,OAAO,EAAE,oBAAoB,EAAE,MAAM,2CAA2C,CAAC;AACjF,OAAO,EAAE,iBAAiB,EAAE,MAAM,kBAAkB,CAAC;AACrD,OAAO,EAAE,uBAAuB,EAAE,MAAM,wBAAwB,CAAC;AACjE,OAAO,EAAE,mBAAmB,EAAE,MAAM,mBAAmB,CAAC;AACxD,OAAO,EAAE,qBAAqB,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,iBAAiB,EAAE,MAAM,kBAAkB,CAAC;AACrD,2DAA2D;AAE3D,2EAA2E;AAC3E,MAAM,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;AACnC,MAAM,WAAW,GAAG,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC;AAC3C,IAAI,WAAW,KAAK,CAAC,CAAC,IAAI,IAAI,CAAC,WAAW,GAAG,CAAC,CAAC,EAAE,CAAC;IAChD,OAAO,CAAC,GAAG,CAAC,WAAW,GAAG,IAAI,CAAC,WAAW,GAAG,CAAC,CAAC,CAAC;AAClD,CAAC;KAAM,IAAI,IAAI,CAAC,MAAM,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,UAAU,CAAC,GAAG,CAAC,EAAE,CAAC;IACvD,OAAO,CAAC,GAAG,CAAC,WAAW,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC;AACpC,CAAC;AAED,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,CAAC;IAC7B,OAAO,CAAC,KAAK,CAAC,iCAAiC,CAAC,CAAC;IACjD,OAAO,CAAC,KAAK,CAAC,8BAA8B,CAAC,CAAC;IAC9C,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AAClB,CAAC;AAED,MAAM,MAAM,GAAG,IAAI,SAAS,CAAC;IAC3B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;CACjB,CAAC,CAAC;AAEH,qBAAqB;AACrB,iBAAiB,CAAC,MAAM,CAAC,CAAC;AAC1B,uBAAuB,CAAC,MAAM,CAAC,CAAC;AAChC,mBAAmB,CAAC,MAAM,CAAC,CAAC;AAC5B,qBAAqB,CAAC,MAAM,CAAC,CAAC;AAC9B,iBAAiB,CAAC,MAAM,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,yCAAyC,CAAC;AACpE,OAAO,EAAE,oBAAoB,EAAE,MAAM,2CAA2C,CAAC;AACjF,OAAO,EAAE,iBAAiB,EAAE,MAAM,kBAAkB,CAAC;AACrD,OAAO,EAAE,uBAAuB,EAAE,MAAM,wBAAwB,CAAC;AACjE,OAAO,EAAE,mBAAmB,EAAE,MAAM,mBAAmB,CAAC;AACxD,OAAO,EAAE,qBAAqB,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,iBAAiB,EAAE,MAAM,kBAAkB,CAAC;AACrD,OAAO,EAAE,sBAAsB,EAAE,MAAM,uBAAuB,CAAC;AAC/D,OAAO,EAAE,qBAAqB,EAAE,MAAM,uBAAuB,CAAC;AAC9D,OAAO,EAAE,8BAA8B,EAAE,MAAM,yBAAyB,CAAC;AACzE,2DAA2D;AAE3D,2EAA2E;AAC3E,MAAM,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;AACnC,MAAM,WAAW,GAAG,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC;AAC3C,IAAI,WAAW,KAAK,CAAC,CAAC,IAAI,IAAI,CAAC,WAAW,GAAG,CAAC,CAAC,EAAE,CAAC;IAChD,OAAO,CAAC,GAAG,CAAC,WAAW,GAAG,IAAI,CAAC,WAAW,GAAG,CAAC,CAAC,CAAC;AAClD,CAAC;KAAM,IAAI,IAAI,CAAC,MAAM,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,UAAU,CAAC,GAAG,CAAC,EAAE,CAAC;IACvD,OAAO,CAAC,GAAG,CAAC,WAAW,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC;AACpC,CAAC;AAED,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,CAAC;IAC7B,OAAO,CAAC,KAAK,CAAC,iCAAiC,CAAC,CAAC;IACjD,OAAO,CAAC,KAAK,CAAC,8BAA8B,CAAC,CAAC;IAC9C,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AAClB,CAAC;AAED,MAAM,MAAM,GAAG,IAAI,SAAS,CAAC;IAC3B,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,OAAO;CACjB,CAAC,CAAC;AAEH,qBAAqB;AACrB,iBAAiB,CAAC,MAAM,CAAC,CAAC;AAC1B,uBAAuB,CAAC,MAAM,CAAC,CAAC;AAChC,mBAAmB,CAAC,MAAM,CAAC,CAAC;AAC5B,qBAAqB,CAAC,MAAM,CAAC,CAAC;AAC9B,iBAAiB,CAAC,MAAM,CAAC,CAAC;AAC1B,sBAAsB,CAAC,MAAM,CAAC,CAAC;AAC/B,qBAAqB,CAAC,MAAM,CAAC,CAAC;AAC9B,8BAA8B,CAAC,MAAM,CAAC,CAAC;AAEvC,sCAAsC;AACtC,KAAK,UAAU,IAAI;IACjB,MAAM,SAAS,GAAG,IAAI,oBAAoB,EAAE,CAAC;IAC7C,MAAM,MAAM,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC;IAChC,OAAO,CAAC,KAAK,CAAC,+BAA+B,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,CAAC,CAAC;AAC1E,CAAC;AAED,IAAI,EAAE,CAAC,KAAK,CAAC,CAAC,GAAG,EAAE,EAAE;IACnB,OAAO,CAAC,KAAK,CAAC,cAAc,EAAE,GAAG,CAAC,CAAC;IACnC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AAClB,CAAC,CAAC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"link-queue.d.ts","sourceRoot":"","sources":["../../src/tools/link-queue.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,yCAAyC,CAAC;AAIzE,wBAAgB,sBAAsB,CAAC,MAAM,EAAE,SAAS,QA+MvD"}
|
|
@@ -0,0 +1,171 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
import { supabase } from "../lib/supabase.js";
|
|
3
|
+
const USER_ID = process.env.NOD_USER_ID || "anonymous";
|
|
4
|
+
export function registerLinkQueueTools(server) {
|
|
5
|
+
// queue_link - agent spots a link in conversation and queues it for later
|
|
6
|
+
server.tool("queue_link", "queue a link spotted in conversation for the user to review later. use this when a user shares or discusses a link but doesn't explicitly ask to shout it. the agent collects these throughout the day and prompts the user to review them later.", {
|
|
7
|
+
url: z.string().url().describe("the url to queue"),
|
|
8
|
+
title: z.string().optional().describe("page title if known"),
|
|
9
|
+
context: z.string().optional().describe("what the user said about this link or why they shared it"),
|
|
10
|
+
agent_note: z.string().optional().describe("why the agent thinks this link is worth saving — be specific about what makes it interesting"),
|
|
11
|
+
source: z.enum(["conversation", "browsing", "research"]).default("conversation").describe("where the link came from"),
|
|
12
|
+
}, async ({ url, title, context, agent_note, source }) => {
|
|
13
|
+
// look up user
|
|
14
|
+
const { data: profile } = await supabase
|
|
15
|
+
.from("profiles")
|
|
16
|
+
.select("id")
|
|
17
|
+
.eq("username", USER_ID)
|
|
18
|
+
.single();
|
|
19
|
+
if (!profile) {
|
|
20
|
+
return {
|
|
21
|
+
content: [{ type: "text", text: `no profile found for user ${USER_ID}. run get_profile first to set up.` }],
|
|
22
|
+
};
|
|
23
|
+
}
|
|
24
|
+
// check for duplicate url in pending queue
|
|
25
|
+
const { data: existing } = await supabase
|
|
26
|
+
.from("link_queue")
|
|
27
|
+
.select("id")
|
|
28
|
+
.eq("user_id", profile.id)
|
|
29
|
+
.eq("url", url)
|
|
30
|
+
.eq("status", "pending")
|
|
31
|
+
.single();
|
|
32
|
+
if (existing) {
|
|
33
|
+
return {
|
|
34
|
+
content: [{ type: "text", text: `this link is already in the queue.` }],
|
|
35
|
+
};
|
|
36
|
+
}
|
|
37
|
+
const { data, error } = await supabase
|
|
38
|
+
.from("link_queue")
|
|
39
|
+
.insert({
|
|
40
|
+
user_id: profile.id,
|
|
41
|
+
url,
|
|
42
|
+
title: title || null,
|
|
43
|
+
context: context || null,
|
|
44
|
+
agent_note: agent_note || null,
|
|
45
|
+
source,
|
|
46
|
+
})
|
|
47
|
+
.select()
|
|
48
|
+
.single();
|
|
49
|
+
if (error) {
|
|
50
|
+
return {
|
|
51
|
+
content: [{ type: "text", text: `error queuing link: ${error.message}` }],
|
|
52
|
+
};
|
|
53
|
+
}
|
|
54
|
+
return {
|
|
55
|
+
content: [{ type: "text", text: `queued "${title || url}" for later review. i'll remind you to review your queued links later.` }],
|
|
56
|
+
};
|
|
57
|
+
});
|
|
58
|
+
// review_queue - show pending links for the user to approve/dismiss
|
|
59
|
+
server.tool("review_queue", "show the user their pending queued links from today's conversations. use this to prompt them to shout, dismiss, or save links for later. call this at natural pauses in conversation or end of day.", {
|
|
60
|
+
limit: z.number().min(1).max(50).default(10).describe("max links to show"),
|
|
61
|
+
since_hours: z.number().min(1).max(168).default(24).describe("show links from the last N hours"),
|
|
62
|
+
}, async ({ limit, since_hours }) => {
|
|
63
|
+
const { data: profile } = await supabase
|
|
64
|
+
.from("profiles")
|
|
65
|
+
.select("id")
|
|
66
|
+
.eq("username", USER_ID)
|
|
67
|
+
.single();
|
|
68
|
+
if (!profile) {
|
|
69
|
+
return {
|
|
70
|
+
content: [{ type: "text", text: `no profile found for user ${USER_ID}.` }],
|
|
71
|
+
};
|
|
72
|
+
}
|
|
73
|
+
const since = new Date(Date.now() - since_hours * 60 * 60 * 1000).toISOString();
|
|
74
|
+
const { data: links, error } = await supabase
|
|
75
|
+
.from("link_queue")
|
|
76
|
+
.select("*")
|
|
77
|
+
.eq("user_id", profile.id)
|
|
78
|
+
.eq("status", "pending")
|
|
79
|
+
.gte("spotted_at", since)
|
|
80
|
+
.order("spotted_at", { ascending: false })
|
|
81
|
+
.limit(limit);
|
|
82
|
+
if (error) {
|
|
83
|
+
return {
|
|
84
|
+
content: [{ type: "text", text: `error fetching queue: ${error.message}` }],
|
|
85
|
+
};
|
|
86
|
+
}
|
|
87
|
+
if (!links || links.length === 0) {
|
|
88
|
+
return {
|
|
89
|
+
content: [{ type: "text", text: `no pending links in the queue. all caught up!` }],
|
|
90
|
+
};
|
|
91
|
+
}
|
|
92
|
+
const summary = links.map((l, i) => {
|
|
93
|
+
let line = `${i + 1}. ${l.title || l.url}`;
|
|
94
|
+
if (l.title)
|
|
95
|
+
line += `\n ${l.url}`;
|
|
96
|
+
if (l.context)
|
|
97
|
+
line += `\n you said: "${l.context}"`;
|
|
98
|
+
if (l.agent_note)
|
|
99
|
+
line += `\n why it's interesting: ${l.agent_note}`;
|
|
100
|
+
line += `\n spotted: ${new Date(l.spotted_at).toLocaleString()}`;
|
|
101
|
+
line += `\n id: ${l.id}`;
|
|
102
|
+
return line;
|
|
103
|
+
}).join("\n\n");
|
|
104
|
+
return {
|
|
105
|
+
content: [{
|
|
106
|
+
type: "text",
|
|
107
|
+
text: `you have ${links.length} link${links.length === 1 ? "" : "s"} from the last ${since_hours} hours:\n\n${summary}\n\nwant to shout any of these? you can say "shout #1" or "dismiss #3" or "shout all".`,
|
|
108
|
+
}],
|
|
109
|
+
};
|
|
110
|
+
});
|
|
111
|
+
// resolve_queue_item - mark a queued link as shouted or dismissed
|
|
112
|
+
server.tool("resolve_queue_item", "mark a queued link as shouted or dismissed. use after the user decides what to do with a queued link.", {
|
|
113
|
+
queue_id: z.string().uuid().describe("the queue item id"),
|
|
114
|
+
action: z.enum(["shouted", "dismissed"]).describe("what happened to the link"),
|
|
115
|
+
}, async ({ queue_id, action }) => {
|
|
116
|
+
const { error } = await supabase
|
|
117
|
+
.from("link_queue")
|
|
118
|
+
.update({
|
|
119
|
+
status: action,
|
|
120
|
+
resolved_at: new Date().toISOString(),
|
|
121
|
+
})
|
|
122
|
+
.eq("id", queue_id);
|
|
123
|
+
if (error) {
|
|
124
|
+
return {
|
|
125
|
+
content: [{ type: "text", text: `error updating queue item: ${error.message}` }],
|
|
126
|
+
};
|
|
127
|
+
}
|
|
128
|
+
return {
|
|
129
|
+
content: [{ type: "text", text: `link ${action}.` }],
|
|
130
|
+
};
|
|
131
|
+
});
|
|
132
|
+
// queue_stats - quick summary of queue activity
|
|
133
|
+
server.tool("queue_stats", "get a quick summary of queued links — how many pending, shouted today, dismissed.", {}, async () => {
|
|
134
|
+
const { data: profile } = await supabase
|
|
135
|
+
.from("profiles")
|
|
136
|
+
.select("id")
|
|
137
|
+
.eq("username", USER_ID)
|
|
138
|
+
.single();
|
|
139
|
+
if (!profile) {
|
|
140
|
+
return {
|
|
141
|
+
content: [{ type: "text", text: `no profile found for user ${USER_ID}.` }],
|
|
142
|
+
};
|
|
143
|
+
}
|
|
144
|
+
const today = new Date();
|
|
145
|
+
today.setHours(0, 0, 0, 0);
|
|
146
|
+
const { data: pending } = await supabase
|
|
147
|
+
.from("link_queue")
|
|
148
|
+
.select("id", { count: "exact" })
|
|
149
|
+
.eq("user_id", profile.id)
|
|
150
|
+
.eq("status", "pending");
|
|
151
|
+
const { data: shoutedToday } = await supabase
|
|
152
|
+
.from("link_queue")
|
|
153
|
+
.select("id", { count: "exact" })
|
|
154
|
+
.eq("user_id", profile.id)
|
|
155
|
+
.eq("status", "shouted")
|
|
156
|
+
.gte("resolved_at", today.toISOString());
|
|
157
|
+
const { data: dismissedToday } = await supabase
|
|
158
|
+
.from("link_queue")
|
|
159
|
+
.select("id", { count: "exact" })
|
|
160
|
+
.eq("user_id", profile.id)
|
|
161
|
+
.eq("status", "dismissed")
|
|
162
|
+
.gte("resolved_at", today.toISOString());
|
|
163
|
+
return {
|
|
164
|
+
content: [{
|
|
165
|
+
type: "text",
|
|
166
|
+
text: `queue stats:\n- pending: ${pending?.length || 0}\n- shouted today: ${shoutedToday?.length || 0}\n- dismissed today: ${dismissedToday?.length || 0}`,
|
|
167
|
+
}],
|
|
168
|
+
};
|
|
169
|
+
});
|
|
170
|
+
}
|
|
171
|
+
//# sourceMappingURL=link-queue.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"link-queue.js","sourceRoot":"","sources":["../../src/tools/link-queue.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"settings.d.ts","sourceRoot":"","sources":["../../src/tools/settings.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"settings.d.ts","sourceRoot":"","sources":["../../src/tools/settings.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,yCAAyC,CAAC;AAIzE,wBAAgB,qBAAqB,CAAC,MAAM,EAAE,SAAS,QAwHtD"}
|
package/dist/tools/settings.js
CHANGED
|
@@ -1,45 +1,119 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
const userSettings = new Map();
|
|
2
|
+
import { supabase } from "../lib/supabase.js";
|
|
3
|
+
const USER_ID = process.env.NOD_USER_ID || "anonymous";
|
|
5
4
|
export function registerSettingsTools(server) {
|
|
6
|
-
// shout_settings - configure behavior
|
|
7
|
-
server.tool("shout_settings", "
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
.
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
5
|
+
// shout_settings - configure behavior (now persisted to supabase)
|
|
6
|
+
server.tool("shout_settings", "view or update your shout preferences — link detection, digest schedule, agent posting permissions, auto-post rules.", {
|
|
7
|
+
auto_detect_links: z.boolean().optional().describe("should the agent auto-detect links in conversation and queue them?"),
|
|
8
|
+
default_visibility: z.enum(["public", "private", "unlisted"]).optional().describe("default visibility for new shouts"),
|
|
9
|
+
digest_frequency: z.enum(["daily", "weekly", "never"]).optional().describe("how often to prompt you to review queued links"),
|
|
10
|
+
digest_time: z.string().optional().describe("preferred time for daily digest prompt (HH:MM format, e.g. '20:00')"),
|
|
11
|
+
digest_timezone: z.string().optional().describe("your timezone (e.g. 'America/New_York')"),
|
|
12
|
+
agent_post_mode: z.enum(["ask", "auto", "curated"]).optional().describe("'ask' = agent always asks before posting. 'auto' = agent posts freely. 'curated' = auto-post for certain tags, ask for others."),
|
|
13
|
+
auto_post_tags: z.array(z.string()).optional().describe("when agent_post_mode is 'curated', auto-post for these tags without asking"),
|
|
14
|
+
agent_text_posts: z.boolean().optional().describe("can the agent draft text posts (status updates, observations)?"),
|
|
15
|
+
agent_text_auto_post: z.boolean().optional().describe("can the agent auto-publish text posts without asking?"),
|
|
16
|
+
}, async ({ auto_detect_links, default_visibility, digest_frequency, digest_time, digest_timezone, agent_post_mode, auto_post_tags, agent_text_posts, agent_text_auto_post }) => {
|
|
17
|
+
// look up user
|
|
18
|
+
const { data: profile } = await supabase
|
|
19
|
+
.from("profiles")
|
|
20
|
+
.select("id")
|
|
21
|
+
.eq("username", USER_ID)
|
|
22
|
+
.single();
|
|
23
|
+
if (!profile) {
|
|
24
|
+
return {
|
|
25
|
+
content: [{ type: "text", text: `no profile found for user ${USER_ID}.` }],
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
// get current settings or create defaults
|
|
29
|
+
const { data: current } = await supabase
|
|
30
|
+
.from("user_settings")
|
|
31
|
+
.select("*")
|
|
32
|
+
.eq("user_id", profile.id)
|
|
33
|
+
.single();
|
|
34
|
+
const updates = { updated_at: new Date().toISOString() };
|
|
35
|
+
if (auto_detect_links !== undefined)
|
|
36
|
+
updates.auto_detect_links = auto_detect_links;
|
|
29
37
|
if (default_visibility !== undefined)
|
|
30
|
-
|
|
38
|
+
updates.default_visibility = default_visibility;
|
|
31
39
|
if (digest_frequency !== undefined)
|
|
32
|
-
|
|
33
|
-
|
|
40
|
+
updates.digest_frequency = digest_frequency;
|
|
41
|
+
if (digest_time !== undefined)
|
|
42
|
+
updates.digest_time = digest_time;
|
|
43
|
+
if (digest_timezone !== undefined)
|
|
44
|
+
updates.digest_timezone = digest_timezone;
|
|
45
|
+
if (agent_post_mode !== undefined)
|
|
46
|
+
updates.agent_post_mode = agent_post_mode;
|
|
47
|
+
if (auto_post_tags !== undefined)
|
|
48
|
+
updates.auto_post_tags = auto_post_tags;
|
|
49
|
+
if (agent_text_posts !== undefined)
|
|
50
|
+
updates.agent_text_posts = agent_text_posts;
|
|
51
|
+
if (agent_text_auto_post !== undefined)
|
|
52
|
+
updates.agent_text_auto_post = agent_text_auto_post;
|
|
53
|
+
// no fields to update — just show current settings
|
|
54
|
+
const hasUpdates = Object.keys(updates).length > 1; // more than just updated_at
|
|
55
|
+
if (!hasUpdates && current) {
|
|
56
|
+
return {
|
|
57
|
+
content: [{
|
|
58
|
+
type: "text",
|
|
59
|
+
text: `your current shout settings:\n\n` +
|
|
60
|
+
`- auto-detect links: ${current.auto_detect_links}\n` +
|
|
61
|
+
`- default visibility: ${current.default_visibility}\n` +
|
|
62
|
+
`- digest: ${current.digest_frequency} at ${current.digest_time} (${current.digest_timezone})\n` +
|
|
63
|
+
`- agent post mode: ${current.agent_post_mode}\n` +
|
|
64
|
+
`- auto-post tags: ${(current.auto_post_tags || []).join(", ") || "none"}\n` +
|
|
65
|
+
`- agent text posts: ${current.agent_text_posts}\n` +
|
|
66
|
+
`- agent text auto-post: ${current.agent_text_auto_post}`,
|
|
67
|
+
}],
|
|
68
|
+
};
|
|
69
|
+
}
|
|
70
|
+
if (current) {
|
|
71
|
+
// update existing
|
|
72
|
+
const { error } = await supabase
|
|
73
|
+
.from("user_settings")
|
|
74
|
+
.update(updates)
|
|
75
|
+
.eq("user_id", profile.id);
|
|
76
|
+
if (error) {
|
|
77
|
+
return {
|
|
78
|
+
content: [{ type: "text", text: `error updating settings: ${error.message}` }],
|
|
79
|
+
};
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
else {
|
|
83
|
+
// insert new with defaults
|
|
84
|
+
const { error } = await supabase
|
|
85
|
+
.from("user_settings")
|
|
86
|
+
.insert({ user_id: profile.id, ...updates });
|
|
87
|
+
if (error) {
|
|
88
|
+
return {
|
|
89
|
+
content: [{ type: "text", text: `error creating settings: ${error.message}` }],
|
|
90
|
+
};
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
// fetch final state
|
|
94
|
+
const { data: final } = await supabase
|
|
95
|
+
.from("user_settings")
|
|
96
|
+
.select("*")
|
|
97
|
+
.eq("user_id", profile.id)
|
|
98
|
+
.single();
|
|
99
|
+
if (!final) {
|
|
100
|
+
return {
|
|
101
|
+
content: [{ type: "text", text: `settings saved.` }],
|
|
102
|
+
};
|
|
103
|
+
}
|
|
34
104
|
return {
|
|
35
|
-
content: [
|
|
36
|
-
{
|
|
105
|
+
content: [{
|
|
37
106
|
type: "text",
|
|
38
|
-
text: `settings updated:\n
|
|
39
|
-
|
|
40
|
-
|
|
107
|
+
text: `settings updated:\n\n` +
|
|
108
|
+
`- auto-detect links: ${final.auto_detect_links}\n` +
|
|
109
|
+
`- default visibility: ${final.default_visibility}\n` +
|
|
110
|
+
`- digest: ${final.digest_frequency} at ${final.digest_time} (${final.digest_timezone})\n` +
|
|
111
|
+
`- agent post mode: ${final.agent_post_mode}\n` +
|
|
112
|
+
`- auto-post tags: ${(final.auto_post_tags || []).join(", ") || "none"}\n` +
|
|
113
|
+
`- agent text posts: ${final.agent_text_posts}\n` +
|
|
114
|
+
`- agent text auto-post: ${final.agent_text_auto_post}`,
|
|
115
|
+
}],
|
|
41
116
|
};
|
|
42
117
|
});
|
|
43
|
-
// shout_generate_digest is registered in links.ts
|
|
44
118
|
}
|
|
45
119
|
//# sourceMappingURL=settings.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"settings.js","sourceRoot":"","sources":["../../src/tools/settings.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"settings.js","sourceRoot":"","sources":["../../src/tools/settings.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"text-posts.d.ts","sourceRoot":"","sources":["../../src/tools/text-posts.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,yCAAyC,CAAC;AAIzE,wBAAgB,qBAAqB,CAAC,MAAM,EAAE,SAAS,QAwKtD"}
|