Resumen
Replaces el viral r/n8n 20-hora construir. Takes un articulo URL o text, researches competidor toma on Google SERP, mines Reddit discussion quotes, y salidas three platform-tuned publicaciones (LinkedIn, X thread, Reddit draft) listo for resena in Slack.
Desencadenador
Webhook on publish o manual activar con articulo URL
Programación
Activado on articulo publish
Pasos del flujo de trabajo
Ingest articulo
Webhook accepts articulo URL o raw text y extrae el main topic.
Competidor SERP research
Scavio Google search for el topic to pull 10 competing toma.
Reddit quote mining
Scavio Reddit search for community quotes y real phrasing.
LLM generation
Prompt un LLM con articulo + SERP + Reddit to draft LinkedIn, X thread, y Reddit variants.
Resena in Slack
Drop el three drafts en un #social-drafts canal for human approval.
Publish on approve
Emoji reaction activa auto-publish to LinkedIn, X, y Buffer.
Implementacion en Python
import os, requests
API_KEY = os.environ["SCAVIO_API_KEY"]
H = {"x-api-key": API_KEY}
def research(topic):
serp = requests.post("https://api.scavio.dev/api/v1/search",
headers=H, json={"query": f"{topic} perspective"}).json()
rdt = requests.post("https://api.scavio.dev/api/v1/search",
headers=H, json={"platform": "reddit", "query": topic}).json()
return {"serp": serp.get("organic_results", [])[:10],
"reddit": rdt.get("posts", [])[:10]}
print(research("ai coding agents 2026"))Implementacion en JavaScript
const API_KEY = process.env.SCAVIO_API_KEY;
const H = { "x-api-key": API_KEY, "content-type": "application/json" };
async function research(topic) {
const [serp, rdt] = await Promise.all([
fetch("https://api.scavio.dev/api/v1/search", {
method: "POST", headers: H, body: JSON.stringify({ query: topic + " perspective" })
}).then(r => r.json()),
fetch("https://api.scavio.dev/api/v1/search", {
method: "POST", headers: H, body: JSON.stringify({ platform: "reddit", query: topic })
}).then(r => r.json())
]);
return { serp: serp.organic_results?.slice(0,10), reddit: rdt.posts?.slice(0,10) };
}
console.log(await research("ai coding agents 2026"));Plataformas utilizadas
Búsqueda web con grafo de conocimiento, PAA y resúmenes de IA
Comunidad, publicaciones y comentarios en hilos de cualquier subreddit