¿Puedo vibecodear MagicChat?
PARCIAL · un fin de semanaA retrieval chatbot over your own docs is one of the most one-shottable products there is: crawl the site, chunk and embed it, answer from the top matches with an LLM, drop in a widget. What you don't get for free is the boring operational layer, scheduled re-crawls, analytics, lead capture and human handoff, multi-source connectors, and a hosted widget that stays up. Buildable in a weekend, real gaps after that.
Build me an AI support chatbot that trains on my own website and docs, to replace MagicChat, in an empty repo. Stack (no alternatives): Next.js 15 (App Router) + TypeScript, Postgres with the pgvector extension via Drizzle ORM, and Docker Compose so `docker compose up` runs Postgres and the app together. Use the OpenAI or Anthropic API for both embeddings and answers (keys in .env). Core loop: - `npm run ingest -- <sitemap-or-url>`: crawl the pages, strip to clean text, chunk (~800 tokens with overlap), embed each chunk, and store text + vector + source URL in Postgres. - A /api/chat route: embed the incoming question, pull the top-k chunks by cosine similarity, and ask the LLM to answer ONLY from that context, returning the source URLs it used. Stream the answer. - A single embeddable widget: one <script> tag mounts a floating chat bubble on any site, talking to /api/chat with CORS locked to configured origins. Details: - One config file: bot name, greeting, allowed origins, model, top-k. - Store everything locally in Postgres; `npm run reindex` re-crawls and replaces. - Secrets in .env, ship .env.example, never commit keys. - Handle empty, loading, and "I don't know from the docs" states honestly; never invent answers outside the retrieved context. - Out of scope: multi-channel (email/WhatsApp/Slack), team seats, an analytics dashboard, human handoff, scheduled auto-refresh (leave a documented cron hook), and any hosted control plane. - README: setup, the ingest command, embedding the widget, and where data lives.
$ ábrelo en tu agente (prompt listo, tú das enter) o cópialo crudo
Se puede en parte
Ahorro de referencia: US$708/año si dejas de pagar MagicChat.
prompt copied. want to know what dies next week?
veredictos nuevos + votos de la semana. gratis. te sales en un clic.
People pay so they never touch the plumbing: the crawler that re-indexes when docs change, the dashboard that shows what customers asked, the connectors to their help desk, and a widget that stays up without them running a server. The RAG is easy; keeping it fresh, measured and online is the recurring work.
xre-rastreo automático programado y actualización de contenido
xpaneles de analíticas e historial de conversaciones
xcaptura de leads y transferencia a humano
xconectores e integraciones de múltiples fuentes
xtiempo de actividad alojado para el widget
xpuestos de equipo y cumplimiento empresarial (HIPAA/DPA/BAA)
¿No quieres construirlo? Esta gente ya lo hizo gratis.
sin votos, sin pago por aparecer · solo lo que es real
Precio de MagicChat
| plan | mensual | anual (por mes) | qué incluye |
|---|---|---|---|
| free | $0/workspace | $0/workspace | 1 chatbot; 100 mensajes/mes; 50 páginas de entrenamiento; inserción en sitio web; soporte comunitario |
| lite | $29/workspace | — | 1 chatbot; 7500 mensajes/mes; 500 páginas; 1 miembro del equipo; actualización manual |
| starter | $59/workspace | — | 1 chatbot; 15000 mensajes/mes; 1000 páginas; 1 miembro del equipo; actualización manual |
| growth | $129/workspace | — | 2 chatbots; 33000 mensajes/mes; 10000 páginas; 4 miembros del equipo; actualización automática mensual; acceso API |
| scale | $429/workspace | — | 10 chatbots; 110000 mensajes/mes; 50000 páginas; 10 miembros del equipo; actualización automática semanal; escaneo automático diario |
| enterprise | a medida | — | Volumen de mensajes, cantidad de chatbots, puestos y cumplimiento personalizados; elegible para HIPAA con DPA/BAA a solicitud |
plan gratis1 chatbot, 100 mensajes/mes y 50 páginas de entrenamiento
facturaciónmensual + anual (anual anunciado con cerca de 40% de descuento; precios efectivos exactos del plan anual no expuestos)
costos ocultosQuitar la marca MagicChat cuesta $59/mes. Cada bloque extra de 5000 mensajes cuesta $59/mes. Los precios no incluyen impuestos; los planes de pago tienen prueba de 7 días.
verificado 2026-08-12 · fuente ↗
¿Puedo vibecodear MagicChat?
Parcial. El núcleo de MagicChat se arma en un fin de semana con el prompt de esta página, pero hay huecos reales: re-rastreo automático programado y actualización de contenido, paneles de analíticas e historial de conversaciones. Lee la lista honesta arriba antes de comprometerte.
¿Cuánto cuesta MagicChat?
MagicChat cuesta unos $59/mes (Starter, revisado 2026-08-12), o sea $708 al año.
¿Qué pierdo si reemplazo MagicChat?
Con honestidad: re-rastreo automático programado y actualización de contenido; paneles de analíticas e historial de conversaciones; captura de leads y transferencia a humano; conectores e integraciones de múltiples fuentes; tiempo de actividad alojado para el widget; puestos de equipo y cumplimiento empresarial (HIPAA/DPA/BAA). Si alguno de esos te sostiene el negocio, sigue pagando.
¿Hay una alternativa open source a MagicChat?
Sí: Onyx (Chat autoalojado sobre tus propios documentos con conectores y permisos; más pesado de ejecutar que un widget, pero todo el ciclo RAG es tuyo.) El prompt es para cuando la quieres exactamente a tu modo.