wix-cli-dashboard-menu-plugin

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

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

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Adding custom actions to the menus of Wix dashboard pages (more-actions, bulk-actions, context menus) requires knowing exact menu slot IDs and the correct extension builder configuration, which is easy to get wrong without guidance. ## Core Features & Use Cases - Menu Plugin Generation: Creates dashboardMenuPlugin extension files with unique UUIDs, titles, icons, and slot targeting. - Slot ID Lookup: Provides verified menu slot IDs for Wix Blog, Bookings, CRM, eCommerce, Events, Stores, and Restaurants dashboard pages. - Action Configuration: Configures menu items to either navigate to a dashboard page or open a dashboard modal. - Use Case: A developer wants to add an "Export to CSV" option to the bulk-actions menu on the Wix Stores Products page; this Skill generates the extension file with the correct slot ID 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 and page, and it will generate and register the extension.

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 menu item to a Wix dashboard page?

Create a dashboard menu plugin extension using `extensions.dashboardMenuPlugin()` with a unique UUID, title, target menu slot ID in the `extends` field, and an action. 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 a configuration-only menu item with no React component that navigates to a page or opens a modal when clicked. A dashboard plugin is a visual widget embedded in a dashboard page slot with its own React component.

Which Wix apps support dashboard menu plugin slots?

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

Why is my Wix dashboard menu plugin not showing up?

The most common cause is missing registration: after creating the plugin extension file, you must import and register it in `src/extensions.ts`. Also verify the `extends` field contains a valid slot ID and the `id` is a unique UUID.

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.