Chapter 20 · Wix Vibe Headless
Subchapter 20.126
platforms/README.mdMarkdown2 KBView on GitHub
One file per AI-builder platform (Base44, Lovable, Bolt, v0, Manus, …). Each file is the handoff prompt the Wix Headless funnel hands to that platform after it creates the site + OAuth app: build the client, then seed/manage the business.
generic.md is the platform-agnostic version and the default/fallback for any platform without
its own tuned file. It is also a : the skill’s + per-vertical
are written for Base44’s stack (Vite + react-router + , files pre-copied into
), so tells a non-Base44 agent what the skill’s three real assets are (the
client layer, the field-shape/route-pattern data contract, the functions), which Base44-isms
to ignore/translate, and the hard rule to . is the Base44-specific one (its exec tool, secret store, pre-configured
connector, copy path, etc.).
SKILL.mdINSTRUCTIONS.md.jsxsrc/generic.mdrest/seed/base44.mddeploy.cjsThese are hosted (served at https://www.wix.com/skills/vibe-headless/platforms/<platform>.md)
so the funnel loader can pass a short pointer to the prompt instead of inlining the whole
script into the launch URL. Inlining tripped the Base44 edge WAF, which scans the POST body
for command-injection patterns (curl … | tar, require('child_process'), etc.); a plain
GET of a hosted file is not scanned that way.
Loader contract: the funnel sends a short prompt that names the business, passes the Wix client id + metasite id, and points here — e.g. “Build a site for my Wix managed business: <business>. Then fetch and follow https://www.wix.com/skills/vibe-headless/platforms/base44.md (opens in a new tab) exactly.” The dynamic bits (business description, client id, metasite id) stay in the loader prompt; everything static lives in these files.