What problem does it solve? Building widgets that embed into Wix dashboard pages requires knowing exact slot IDs, the dashboardPlugin builder API, and a mandatory two-step extension registration process. This Skill guides the creation of dashboard plugins for Wix CLI apps so the widget actually renders inside pages managed by Wix Stores, Bookings, Blog, eCommerce, Events, and Restaurants. ## Core Features & Use Cases - Plugin Scaffolding: Generates the <plugin-name>.extension.ts builder file with a unique UUID and the React .tsx component wrapped in WixDesignSystemProvider. - Slot Targeting: Provides a complete reference of slot IDs per Wix business app, including parameters like orderId, staffResourceId, and eventId passed to the plugin. - Host Page Communication: Implements observeState() from the Wix Dashboard SDK so plugins receive live data from the host dashboard page. - Use Case: Add a fulfillment status widget to the Wix eCommerce order page by targeting slot cb16162e-42aa-41bd-a644-dc570328c6cc and reading order data via observeState(). ## Quick Start Create a dashboard plugin for the Wix Blog posts page that displays a promotional banner and register it in src/extensions.ts.