wix-cli-dashboard-menu-plugin

Creates configuration-only dashboard menu plugin extensions for Wix CLI applications.

Updated Feb 21, 2026
One-click install
npx skills add https://github.com/ESSSoWhat/live-translate-realtime-dubbing --skill wix-cli-dashboard-menu-plugin-esssowhat
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: wix-cli-dashboard-menu-plugin
Source: https://github.com/ESSSoWhat/live-translate-realtime-dubbing/tree/main/wix-app/np/.agents/skills/wix-cli-dashboard-menu-plugin
Command: npx skills add https://github.com/ESSSoWhat/live-translate-realtime-dubbing --skill wix-cli-dashboard-menu-plugin-esssowhat

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Adding custom actions to the menus of Wix dashboard pages (Stores, Bookings, Blog, eCommerce, Events, CRM, Restaurants) requires knowing exact menu slot IDs and the correct extension builder configuration, which is tedious to look up and easy to get wrong. ## Core Features & Use Cases - Menu Slot Lookup: Provides verified slot IDs for more-actions, bulk-actions, and context menus across seven Wix business apps via per-vertical reference files. - Extension Generation: Produces a <plugin-name>.extension.ts file using extensions.dashboardMenuPlugin() with a unique UUID, title, icon, and slot ID. - Action Configuration: Configures the menu item to either navigate to an existing dashboard page or open an existing dashboard modal. - Use Case: A developer wants to add an "Export to CSV" item to the Wix Stores products bulk-actions menu; the Skill supplies the correct slot ID, generates the extension file, and registers it in src/extensions.ts. ## Quick Start Ask the assistant to add a menu item to a specific Wix dashboard page menu, naming the target app, page, and whether it should open a page or modal.

Frequently Asked Questions about wix-cli-dashboard-menu-plugin

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

FAQPage Schema
How do I add a custom action to a Wix dashboard page menu?

Create a dashboard menu plugin extension using `extensions.dashboardMenuPlugin()` with a unique UUID, title, icon key, and the menu slot ID of the target page. Then register the extension in `src/extensions.ts` so it appears on the dashboard page.

What is the difference between a Wix dashboard menu plugin and a dashboard plugin?

A dashboard menu plugin is configuration-only and adds a clickable item to an existing menu slot, with no React component. A dashboard plugin embeds a visual widget into a dashboard page slot and requires its own component file.

Which Wix apps support dashboard menu plugin slots?

Menu slots are available on Wix Stores, Wix Bookings, Wix Blog, Wix eCommerce, Wix Events, Wix CRM, and Wix Restaurants dashboard pages. Each app exposes specific slot IDs for more-actions, bulk-actions, and context menus.

Can a Wix dashboard menu plugin open a modal instead of navigating?

Yes. Set the action field to `openModal` with the `componentId` of an existing dashboard modal extension. Alternatively, use `navigateToPage` with the `pageId` of an existing dashboard page extension.

Why is my Wix dashboard menu plugin not showing on the page?

The most common cause is missing registration: after creating the extension file, you must import and register it in `src/extensions.ts`. Also verify the `extends` field uses a valid slot ID and that the referenced page or modal ID exists.