What problem does it solve? Building backend logic that reacts to Wix site activity—like a new contact, order, or booking—requires correctly wiring SDK webhook handlers, extension builders, and registration files, which is error-prone without guidance. ## Core Features & Use Cases - Event Extension Scaffolding: Creates the two required files per event (<event-name>.ts handler and <event-name>.extension.ts builder with a unique UUID) under src/extensions/backend/events/. - Common Event Reference: Provides SDK imports, handler calls, and required permissions for CRM, eCommerce, Bookings, and Blog events. - Permission Elevation: Shows how to use auth.elevate from @wix/essentials when calling Wix APIs inside handlers. - Use Case: When a customer places an order on a Wix site, automatically run backend logic such as syncing the order to an external CRM or sending a notification. ## Quick Start Ask the assistant to create a Wix CLI backend event extension for a specific event, such as "create an event extension that runs when a contact is created."