diff --git a/lib/folk-feed.ts b/lib/folk-feed.ts index 52eb2bc..36dca8c 100644 --- a/lib/folk-feed.ts +++ b/lib/folk-feed.ts @@ -174,6 +174,12 @@ export class FolkFeed extends FolkShape { this.#feedData = data.nodes.slice(0, this.maxItems); } else if (data.flows) { this.#feedData = data.flows.slice(0, this.maxItems); + } else if (data.threads) { + this.#feedData = data.threads.slice(0, this.maxItems); + } else if (data.campaigns) { + this.#feedData = data.campaigns.slice(0, this.maxItems); + } else if (data.drafts) { + this.#feedData = data.drafts.slice(0, this.maxItems); } else { // Try to use the data as-is if it has array-like fields const firstArray = Object.values(data).find(v => Array.isArray(v)); @@ -238,6 +244,12 @@ export class FolkFeed extends FolkShape { itinerary: "trips", default: "trips", }, + socials: { + threads: "threads", + campaigns: "campaigns", + newsletter: "newsletter/drafts", + default: "threads", + }, }; const moduleEndpoints = FEED_ENDPOINTS[this.sourceModule]; diff --git a/lib/folk-rapp.ts b/lib/folk-rapp.ts index 27cc74a..8debb31 100644 --- a/lib/folk-rapp.ts +++ b/lib/folk-rapp.ts @@ -451,6 +451,10 @@ const MODULE_PORTS: Record = { rwallet: [{ name: "balance-out", type: "number", direction: "output" }, { name: "transfer-trigger", type: "trigger", direction: "input" }, { name: "transfer-data", type: "json", direction: "input" }], + rsocials: [{ name: "threads-out", type: "json", direction: "output" }, + { name: "campaigns-out", type: "json", direction: "output" }, + { name: "post-published", type: "trigger", direction: "output" }, + { name: "campaign-data", type: "json", direction: "output" }], }; const DEFAULT_PORTS: PortDescriptor[] = [ @@ -552,6 +556,20 @@ const WIDGET_API: Record Widge }; }, }, + rsocials: { + path: "/api/threads", + transform: (data) => { + const threads = data?.threads || []; + const campaigns = data?.campaignCount ?? 0; + return { + stat: `${threads.length} thread${threads.length !== 1 ? "s" : ""}`, + rows: threads.slice(0, 3).map((t: any) => ({ + label: t.title || "Untitled", + value: `${t.tweets?.length || 0} tweets`, + })), + }; + }, + }, rnetwork: { path: "/api/graph", transform: (data) => { diff --git a/lib/mi-tool-schema.ts b/lib/mi-tool-schema.ts index e2f27de..6fbff87 100644 --- a/lib/mi-tool-schema.ts +++ b/lib/mi-tool-schema.ts @@ -29,6 +29,9 @@ const TOOL_HINTS: ToolHint[] = [ { tagName: "folk-rapp", label: "rMeets", icon: "πŸ“Ή", keywords: ["meeting", "jitsi", "video", "meet", "conference", "rmeets"] }, { tagName: "folk-workflow-block", label: "Workflow", icon: "βš™οΈ", keywords: ["workflow", "automation", "block", "process"] }, { tagName: "folk-social-post", label: "Social Post", icon: "πŸ“£", keywords: ["social", "post", "twitter", "instagram", "campaign"] }, + { tagName: "folk-social-thread", label: "Thread", icon: "🧡", keywords: ["thread", "tweetstorm", "twitter thread", "tweets", "multi-post"] }, + { tagName: "folk-social-campaign", label: "Campaign", icon: "πŸ“’", keywords: ["campaign", "launch", "marketing", "social campaign", "content plan"] }, + { tagName: "folk-social-newsletter", label: "Newsletter", icon: "πŸ“§", keywords: ["newsletter", "email", "mailout", "subscriber", "mailing list"] }, { tagName: "folk-splat", label: "3D Gaussian", icon: "πŸ’Ž", keywords: ["3d", "splat", "gaussian", "point cloud"] }, { tagName: "folk-drawfast", label: "Drawing", icon: "✏️", keywords: ["draw", "sketch", "whiteboard", "pencil"] }, { tagName: "folk-rapp", label: "rApp Embed", icon: "πŸ“¦", keywords: ["rapp", "module", "embed", "app", "crm", "contacts", "pipeline", "companies"] }, diff --git a/lib/mi-triage-panel.ts b/lib/mi-triage-panel.ts index 5113438..5f983ed 100644 --- a/lib/mi-triage-panel.ts +++ b/lib/mi-triage-panel.ts @@ -16,6 +16,9 @@ const SHAPE_ICONS: Record = { "folk-map": { icon: "πŸ—ΊοΈ", label: "Map" }, "folk-workflow-block": { icon: "βš™οΈ", label: "Workflow" }, "folk-social-post": { icon: "πŸ“£", label: "Social Post" }, + "folk-social-thread": { icon: "🧡", label: "Thread" }, + "folk-social-campaign": { icon: "πŸ“’", label: "Campaign" }, + "folk-social-newsletter": { icon: "πŸ“§", label: "Newsletter" }, "folk-choice-vote": { icon: "πŸ—³οΈ", label: "Vote" }, "folk-prompt": { icon: "πŸ€–", label: "AI Chat" }, "folk-image-gen": { icon: "🎨", label: "AI Image" }, diff --git a/modules/rsocials/mod.ts b/modules/rsocials/mod.ts index b0926a9..b70ec57 100644 --- a/modules/rsocials/mod.ts +++ b/modules/rsocials/mod.ts @@ -203,6 +203,45 @@ routes.get("/api/feed", (c) => }), ); +// ── API: Threads (read-only, for cross-rApp consumption) ── + +routes.get("/api/threads", (c) => { + const space = c.req.param("space") || "demo"; + const dataSpace = c.get("effectiveSpace") || space; + const doc = ensureDoc(dataSpace); + const threads = Object.values(doc.threads || {}).sort((a, b) => (b.updatedAt || 0) - (a.updatedAt || 0)); + return c.json({ threads, count: threads.length }); +}); + +routes.get("/api/threads/:id", (c) => { + const space = c.req.param("space") || "demo"; + const dataSpace = c.get("effectiveSpace") || space; + const id = c.req.param("id"); + const thread = getThreadFromDoc(dataSpace, id); + if (!thread) return c.json({ error: "Thread not found" }, 404); + return c.json(thread); +}); + +// ── API: Campaigns (read-only, for cross-rApp consumption) ── + +routes.get("/api/campaigns", (c) => { + const space = c.req.param("space") || "demo"; + const dataSpace = c.get("effectiveSpace") || space; + const doc = ensureDoc(dataSpace); + const campaigns = Object.values(doc.campaigns || {}).sort((a, b) => (b.updatedAt || 0) - (a.updatedAt || 0)); + return c.json({ campaigns, count: campaigns.length }); +}); + +routes.get("/api/campaigns/:id", (c) => { + const space = c.req.param("space") || "demo"; + const dataSpace = c.get("effectiveSpace") || space; + const id = c.req.param("id"); + const doc = ensureDoc(dataSpace); + const campaign = doc.campaigns?.[id]; + if (!campaign) return c.json({ error: "Campaign not found" }, 404); + return c.json(campaign); +}); + // ── Image API routes (server-side, need filesystem + FAL_KEY) ── routes.post("/api/threads/:id/image", async (c) => { diff --git a/server/mi-routes.ts b/server/mi-routes.ts index 53eb64a..0b11ad2 100644 --- a/server/mi-routes.ts +++ b/server/mi-routes.ts @@ -235,7 +235,8 @@ include action markers in your response. Each marker is on its own line: Use "$1", "$2", etc. as ref values when creating shapes, then reference them in subsequent connect actions. Available shape types: folk-markdown, folk-wrapper, folk-image-gen, folk-video-gen, folk-prompt, folk-embed, folk-calendar, folk-map, folk-chat, folk-slide, folk-obs-note, folk-workflow-block, -folk-social-post, folk-splat, folk-drawfast, folk-rapp, folk-feed. +folk-social-post, folk-social-thread, folk-social-campaign, folk-social-newsletter, +folk-splat, folk-drawfast, folk-rapp, folk-feed. ## Transforms When the user asks to align, distribute, or arrange selected shapes: @@ -319,6 +320,9 @@ analyze it and classify each distinct piece into the most appropriate canvas sha - Locations / addresses / places β†’ folk-map (set query prop) - Action items / TODOs / tasks β†’ folk-workflow-block (set label, blockType:"action" props) - Social media content / posts β†’ folk-social-post (set content prop) +- Tweet threads / multi-post threads β†’ folk-social-thread (set title, tweets props) +- Marketing campaigns / content plans β†’ folk-social-campaign (set title, description, platforms props) +- Newsletters / email campaigns β†’ folk-social-newsletter (set subject, listName props) - Decisions / polls / questions for voting β†’ folk-choice-vote (set question prop) - Everything else (prose, notes, transcripts, summaries) β†’ folk-markdown (set content prop in markdown format) @@ -340,7 +344,8 @@ Return a JSON object with: const KNOWN_TRIAGE_SHAPES = new Set([ "folk-markdown", "folk-embed", "folk-image", "folk-bookmark", "folk-calendar", "folk-map", - "folk-workflow-block", "folk-social-post", "folk-choice-vote", + "folk-workflow-block", "folk-social-post", "folk-social-thread", + "folk-social-campaign", "folk-social-newsletter", "folk-choice-vote", "folk-prompt", "folk-image-gen", "folk-slide", ]);