wix-cli-app-validation

Validates Wix CLI applications through installation, TypeScript checks, build, and preview deployment.

Updated Mar 20, 2026
One-click install
npx skills add https://github.com/thisisjaymehta/login-with-email-test --skill wix-cli-app-validation-thisisjaymehta
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: wix-cli-app-validation
Source: https://github.com/thisisjaymehta/login-with-email-test/tree/main/.agents/skills/wix-cli-app-validation
Command: npx skills add https://github.com/thisisjaymehta/login-with-email-test --skill wix-cli-app-validation-thisisjaymehta

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Wix app developers need a reliable way to confirm their application is ready for release after code changes. This Skill runs a structured four-step validation workflow that catches dependency issues, type errors, build failures, and preview problems before they reach production. ## Core Features & Use Cases - Sequential Validation Workflow: Runs package installation, TypeScript compilation checks, Wix build, and preview deployment in order, stopping at the first failure. - Targeted TypeScript Checks: Supports checking specific extension directories (dashboard pages, site widgets, modals, backend) for faster feedback during iterative development. - Debug Log Diagnostics: Reads .wix/debug.log when steps fail to surface full error traces that terminal output truncates. - Use Case: After implementing a new dashboard page extension, run validation to confirm TypeScript compiles, the build succeeds, and preview URLs are generated for manual verification. ## Quick Start Validate my Wix app by running the full validation workflow and report any errors found.

Frequently Asked Questions about wix-cli-app-validation

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

FAQPage Schema
How do I validate a Wix CLI app before release?

Run the four-step validation workflow: install dependencies, check TypeScript compilation with npx tsc --noEmit, run npx wix build, then start npx wix preview. Stop and fix errors at whichever step fails before proceeding.

How to run TypeScript checks on specific Wix extension files?

Use npx tsc --noEmit with targeted paths, such as src/extensions/dashboard/pages/**/*.ts for dashboard pages or src/extensions/backend/**/*.ts for backend code. Targeted checks give faster feedback during iterative development than full project checks.

Which package managers does Wix app validation support?

The workflow detects npm via package-lock.json, yarn via yarn.lock, and pnpm via pnpm-lock.yaml, defaulting to npm when no lock file exists. It runs the matching install command before build validation.

Why does my Wix build fail with no clear error message?

Truncated terminal output often hides the real error. Read .wix/debug.log in the project root for the full error trace and stack details, focusing on the last 100 lines for the most recent failures.

What should I do when Wix preview fails to start?

Check wix.config.json for configuration issues and port conflicts first. If the cause is unclear, read .wix/debug.log for internal CLI errors; for stale CLI state, delete the .wix directory and rebuild.