DEV Community

Cover image for Instinctor: a Web Platform Where the Page Builder Is a Real WebGL Engine, Not a Wrapper Around Templates
Instinctor
Instinctor

Posted on

Instinctor: a Web Platform Where the Page Builder Is a Real WebGL Engine, Not a Wrapper Around Templates

TL;DR

Instinctor is a web platform with native WebGL 3D scroll, autonomous chat built into the platform layer, full SEO baked in, and AI section generation that preserves manual editability. Free Pro account at instinctor.com.

The thesis

Most web builders are decades behind motion design tools. Premiere, After Effects, and Cinema 4D have rendered rich motion in real time for years. Web builders still treat motion like a sticky video pinned over a static page.

Instinctor is built around four design choices that current web builders do not make:

  1. 3D motion is a first-class scroll primitive, not a layer-on-top hack
  2. Chat is part of the platform, not a plugin bolted in via API
  3. SEO is generated at the layout level, not patched in via a separate plugin stack
  4. AI generates sections that stay editable in the same UI used for everything else

Native 3D scroll, not a sticky video

The first decision: WebGL has to be the renderer for scroll-bound motion, not CSS transforms with a video layer.

The trade-off:

  • CSS plus video = easy to ship, looks bad on mobile, cannot react to user input
  • WebGL native = harder to ship, looks great everywhere, fully interactive

Instinctor went WebGL. The page builder ships with a Three.js layer that renders scenes at 60 FPS on iOS and Android Chrome, not just desktop. Every editable scroll-bound element (text, image, shape) goes through the same render pipeline, not a special case.

What this unlocks: motion designers and cinematographers can produce site visuals at the quality bar of After Effects renders, without exporting MP4s.

Store-aware chat is an architecture choice

Every existing chat plugin works the same way: external SaaS, API webhook, product sync layer that always lags or breaks. Tidio, Crisp, Intercom. Same pattern.

Instinctor's chat lives at the platform layer. It already has read access to the product catalog, inventory state, customer accounts, and scheduling calendar. No setup, no sync. Visitors message the site, the owner replies from their phone via SMS or WhatsApp.

This means: when a customer asks "is the medium in stock," the chat answers instantly without an integration delay. When they ask "what is your earliest open slot," the chat checks the calendar live.

SEO engine integrated, not patched

Most sites bolt SEO on after the fact via WP plugins (Yoast, Rank Math) or pay agencies $300/mo to "optimize" them.

The honest truth: SEO is mostly a build-time problem.

  • Schema markup: fixed at template level
  • Sitemap: auto-generated from pages
  • Meta tags: set per page at publish
  • Image alt: can be generated from filename plus context
  • Robots: static config

Instinctor handles all of this automatically when a page is shipped. Whatever section gets added later inherits the SEO engine. No third-party plugin needed.

Instagent: AI section generation without losing editability

This is the design choice worth the most debate.

AI website tools today (Lovable, v0, Bolt) generate HTML/CSS or React from a prompt. They produce beautiful sites that cannot be changed without writing code.

Instinctor's Instagent does it differently. Prompt in, generated section out, section drops into the regular editor with all the standard knobs (typography, layout, color, spacing). It can be edited like anything else.

The trade-off:

  • v0 style: produces literally anything, but uneditable
  • Instagent style: constrained to what the editor can express, but stays editable forever

The second trade-off is correct for non-developers building real sites. They want fast and editable. Pure AI-generated code gives them fast and locked.

What is next

The marketplace where designers build sites for clients is the other half of the funnel. Premium-grade demo scenes are next. After that: better Instagent prompting, more WebGL scroll effects, and a self-hosted option.

If any of this resonates, the free Pro account at instinctor.com lets anyone build a real site. Feedback welcome, especially thoughts on the Instagent vs Lovable trade-off, or on WebGL-first vs CSS-first builder architecture.

Top comments (0)