Resumen
Per-client Instagram contenido cron con live local context (eventos, weather, news) y marca fingerprint preservation. Sheets handoff for cliente approval.
Desencadenador
Semanal cron (o diario for high-volume clientes)
Programación
Semanal
Pasos del flujo de trabajo
Iterate active cliente lista
Per-client config con marca fingerprint path + city/pais.
Scavio: pull live local context
weather + eventos + reciente news + reddit senal in objetivo idioma.
Scavio: pull actual promotional contenido de cliente sitio web
sitio:cliente.com promotion 2026.
LLM compose: 7 captions w/ fingerprint + context
Salida JSON lista of {dia, caption, hashtags, image_brief}.
Escribir to Google Sheet (one fila per publicacion, editable)
Add 'approved' columna for cliente signoff.
Optional auto-publish post-approval
Buffer/Later o Meta Graph API on approved=TRUE.
Implementacion en Python
import requests, os
H = {'x-api-key': os.environ['SCAVIO_API_KEY']}
def local_context(city, country, week):
queries = [f'weather {city} {week}', f'site:visit-{country}.com events', f'reddit r/{country} {city}']
out = []
for q in queries:
r = requests.post('https://api.scavio.dev/api/v1/search', headers=H, json={'query': q}).json()
out.extend(r.get('organic_results', [])[:3])
return outImplementacion en JavaScript
// n8n HTTP node = same shape.Plataformas utilizadas
Búsqueda web con grafo de conocimiento, PAA y resúmenes de IA