> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt ## Resource: Add Dashboard Plugin Extensions with the Wix CLI ## Article: Add Dashboard Plugin Extensions with the Wix CLI ## Article Link: https://dev.wix.com/docs/go-headless/wix-managed-headless/extensions/dashboard/dashboard-plugins/add-dashboard-plugin-extensions-with-the-wix-cli.md ## Article Content: # Add Dashboard Plugin Extensions with the Wix CLI Dashboard plugins allow you to extend and enhance the functionality of dashboard pages provided by Wix business solutions on your headless project's site, like Wix Stores or Wix Bookings. Use them when you want to add custom UI or logic into the dashboard pages your team already uses to run the site. Under the hood, the CLI registers the plugin on your headless project's [private app](https://dev.wix.com/docs/wix-cli/guides/about-the-wix-cli.md#projects-private-app), which is the mechanism Wix uses to install extensions on your site. See [Exposing apps publicly and privately](https://dev.wix.com/docs/build-apps/get-started/overview/exposing-apps-publicly-and-privately.md) for context on private apps. The Wix CLI makes it easy to create and develop dashboard plugins. You build your plugin using Wix's React/Node.js stack, and the plugin is deployed and hosted on the Wix cloud. For more information on dashboard plugin extensions, read [About Dashboard Plugins](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/dashboard-extensions/dashboard-plugins/about-dashboard-plugin-extensions.md). Follow the instructions below to: 1. Create a dashboard plugin extension for your project. 1. Customize your dashboard plugin. Once this task is complete, your headless project will have a dashboard plugin that adds custom functionality to a Wix business solution's dashboard page.
**Tip:** Learn how to interact with the Wix dashboard using the [Wix Dashboard SDK](https://dev.wix.com/docs/sdk/host-modules/dashboard/introduction.md).## Step 1 | Create the plugin extension In the terminal: 1. Navigate to your project repo. 1. Run the [generate](https://dev.wix.com/docs/wix-cli/command-reference/project-commands/generate.md) command. 1. Follow the prompts for creating a dashboard plugin. Upon completion, the extension files will be created in your project directory with the following structure: ```tsx . └──
**Important:** If you've already released a version of your project, you must build and deploy the project again after removing the dashboard plugin files.## See also - [Dashboard Plugin Extension Files and Code](https://dev.wix.com/docs/go-headless/wix-managed-headless/supported-extensions/dashboard/dashboard-plugins/dashboard-plugin-extension-files-and-code.md) - [About Dashboard Plugin Extensions](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/dashboard-extensions/dashboard-plugins/about-dashboard-plugin-extensions.md) - [About Dashboard Page Slots](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/dashboard-extensions/dashboard-plugins/supported-wix-app-dashboard-pages/about-dashboard-page-slots.md)