wix-headless-entry

Bootstraps Wix CLI login and installs the Wix Headless skill for site builds.

Updated Apr 19, 2026
One-click install
npx skills add https://github.com/divinaarmuela/Content --skill wix-headless-entry-divinaarmuela
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: wix-headless-entry
Source: https://github.com/divinaarmuela/Content/tree/main/.claude/skills/wix-headless/entry
Command: npx skills add https://github.com/divinaarmuela/Content --skill wix-headless-entry-divinaarmuela

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires @wix/cli, skills.

What problem does it solve? Getting from a cold environment to a working Wix Managed Headless site requires CLI setup, authentication, and knowing which workflow to run. This Skill handles the deterministic first steps — verifying the Wix CLI and completing device-code login — then hands off to the full Wix Headless skill that owns the actual build. ## Core Features & Use Cases - Automated bootstrap: A single Node script checks the Wix CLI via npx and drives wix login, emitting one JSON event per line for the agent to relay. - Device-code login relay: Surfaces the verification URL and user code so login completes in the user's browser without an interactive TTY. - Skill handoff: Installs the Wix Headless skills via npx skills@latest add wix/skills and delegates to wix-headless/SKILL.md, which resolves project type (managed / self-managed / stripe) and operation (create / connect). - Use Case: A user says "build me an online store" in an empty directory. The agent runs the bootstrap, completes login, installs the skill, and the Wix Headless skill scaffolds, seeds, builds, and releases the site. ## Quick Start Ask the agent to build you a new Wix website or connect your existing project to Wix Headless, and it will run the bootstrap and take it from there.

Frequently Asked Questions about wix-headless-entry

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I build a Wix Headless site from a prompt?

Run the bootstrap script with node bootstrap.mjs to verify the Wix CLI and log in, then install the skills with npx skills@latest add wix/skills. The installed wix-headless skill resolves your project type and owns scaffolding, seeding, building, and releasing the site.

How do I connect an existing project to Wix Headless?

Run the same bootstrap and skill installation in your project directory. The wix-headless skill detects whether wix.config.json or a .wix directory exists and resolves the connect operation instead of create, linking your existing frontend to Wix.

What Node version does the Wix CLI require?

The Wix CLI requires Node 20.11 or later. Check with node -v, and if the version is lower, install Node 20+ via brew, nvm, winget, or nodejs.org before running the bootstrap.

Does the Wix CLI need a global install to use this?

No, the bootstrap runs the CLI through npx -y @wix/cli@latest, so nothing is installed globally. It only verifies the CLI is reachable and drives the login flow.

Why does wix login fail in an agent sandbox?

Without an agent signal, wix login renders an interactive TUI that needs a raw TTY and crashes in sandboxes. The bootstrap sets the AI_AGENT environment variable, forcing non-interactive agent mode that emits JSON login events instead.