What problem does it solve? Building backend logic that reacts to Wix site events (like a new contact or paid order) requires correctly wiring SDK event handlers, extension builder files, UUIDs, and registration in the Wix CLI project structure, which is easy to get wrong. ## Core Features & Use Cases - Event Extension Scaffolding: Generates the two required files per event: a handler file importing the SDK event and an extension builder file using extensions.event() with a unique UUID. - Extension Registration Guidance: Ensures the new event is imported and registered in src/extensions.ts so it actually activates. - Common Events Reference: Provides SDK imports, handler calls, and required permissions for CRM, eCommerce, Bookings, and Blog events. - Use Case: When a contact is created on a Wix site, automatically run custom logic such as syncing to an external CRM or sending a welcome email using an elevated-permission handler. ## Quick Start Create a Wix CLI backend event extension that logs new contacts whenever a contact is created on the site.