Token导航 LogoToken导航TokenDH.com
开发只读github未标认证来源可访问许可证需确认审计通过

wix-cli-dashboard-menu-pluginWIX CLI dashboard menu plugin 命令行

Agent Skill

wix-cli-dashboard-menu-plugin 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,896

周安装

202

GitHub Stars

9

下载量

1,615
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:wix-cli-dashboard-menu-plugin(WIX CLI dashboard menu plugin 命令行)
来源仓库:https://github.com/wix/skills
仓库路径:skills/wix-cli-dashboard-menu-plugin
安装命令:
npx skills add https://github.com/wix/skills --skill wix-cli-dashboard-menu-plugin
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/wix/skills --skill wix-cli-dashboard-menu-plugin

简介

用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态或代码变更进行整理。
  • 通过 npx skills add 命令从指定仓库安装并使用。
  • 建议确认权限范围和维护状态,避免触发联网或文件读写。
  • wix-cli-dashboard-menu-plugin 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Wix Dashboard Menu Plugin Builder

Creates dashboard menu plugin extensions for Wix CLI applications. Dashboard menu plugins are menu items that integrate into predefined menu slots on dashboard pages managed by Wix first-party business apps (Wix Stores, Wix Bookings, Wix Blog, Wix eCommerce, Wix Events, Wix CRM, Wix Restaurants).

When clicked, a dashboard menu plugin either navigates to a dashboard page or opens a dashboard modal.

Dashboard menu plugins are configuration-only extensions — they do NOT have a React component file.


Quick Start Checklist

Follow these steps in order when creating a dashboard menu plugin:

  1. Identify the target menu slot ID — see Slot Lookup Table below, then read only the relevant vertical file
  2. Create plugin folder: src/extensions/dashboard/menu-plugins/<plugin-name>/
  3. Create <plugin-name>.extension.ts with extensions.dashboardMenuPlugin() and unique UUID
  4. Configure the action field to either navigate to a dashboard page or open a modal
  5. Update src/extensions.ts to import and use the new extension

Architecture

Dashboard menu plugins operate as click-to-action menu items. They:

  1. Appear as labeled items with an icon in a menu slot on a Wix app's dashboard page
  2. When clicked, perform one of two actions:

- Navigate to a dashboard page — redirects to a specified dashboard page - Open a dashboard modal — displays a specified dashboard modal

Files and Code Structure

Dashboard menu plugins live under src/extensions/dashboard/menu-plugins/. Each plugin has its own folder containing a single file.

src/extensions/dashboard/menu-plugins/
└── <plugin-name>/
    └── <plugin-name>.extension.ts   # Builder configuration
Note: This is the default folder structure created by the CLI. You can move the file to any location within the src/ folder and update the references in your extension.ts file.

Plugin Builder Configuration

File: <plugin-name>.extension.ts

import { extensions } from "@wix/astro/builders";

export const dashboardmenupluginMyMenuPlugin = extensions.dashboardMenuPlugin({
  id: "{{GENERATE_UUID}}",
  title: "My Menu Plugin",
  extends: "<MENU_SLOT_ID>",
  iconKey: "Sparkles",
  action: {
    navigateToPage: {
      pageId: "<DASHBOARD_PAGE_ID>",
    },
  },
});

CRITICAL: UUID Generation

The id must be a unique, static UUID v4 string. Generate a fresh UUID for each extension — do NOT use randomUUID() or copy UUIDs from examples. Replace {{GENERATE_UUID}} with a freshly generated UUID like "a1b2c3d4-e5f6-7890-abcd-ef1234567890".

Builder Fields

FieldTypeDescription
idstringUnique plugin ID (GUID). Must be unique across all extensions in the project.
titlestringText displayed for the menu item.
extendsstringMenu slot ID where the extension integrates. See Slot Lookup Table.
iconKeystringIcon name from Wix Design System appearing next to the title.
actionobjectNavigation configuration determining behavior when clicked.

The extends Field

The extends field specifies which dashboard menu slot hosts your menu plugin. Each Wix business app exposes menu slots on its dashboard pages. You must provide the exact slot ID.

Important: Some slots with the same ID appear on different pages within the dashboard. If you create a menu plugin for a slot that exists on multiple pages, the menu plugin is displayed on all of those pages.

For the complete list of available menu slot IDs, see the Slot Lookup Table below. Read only the vertical file that matches the user's request.

The action Field

The action field determines what happens when the user clicks the menu item. You must configure exactly one of the following:

Option 1: Navigate to a Dashboard Page

action: {
  navigateToPage: {
    pageId: "<DASHBOARD_PAGE_ID>",
  },
},
FieldTypeDescription
action.navigateToPageobjectPage navigation configuration object.
action.navigateToPage.pageIdstringThe id of the target dashboard page extension.

Option 2: Open a Dashboard Modal

action: {
  openModal: {
    componentId: "<DASHBOARD_MODAL_ID>",
  },
},
FieldTypeDescription
action.openModalobjectModal navigation configuration object.
action.openModal.componentIdstringThe id of the target dashboard modal extension.

The iconKey Field

The iconKey must be a valid icon name from the Wix Design System icon set (@wix/wix-ui-icons-common). Use the wds-docs skill to look up available icon names.

Extension Registration

Extension registration is MANDATORY and has TWO required steps.

Step 1: Create Plugin-Specific Extension File

Each dashboard menu plugin requires a <plugin-name>.extension.ts file in its folder. See Plugin Builder Configuration above.

Step 2: Register in Main Extensions File

CRITICAL: After creating the plugin-specific extension file, you MUST read wix-cli-extension-registration and follow the "App Registration" section to update src/extensions.ts.

Without completing Step 2, the dashboard menu plugin will not appear on the dashboard page.

Hard Constraints

  • Do NOT invent or assume new types, modules, functions, props, events, or imports — use only entities explicitly present in the provided references or standard libraries already used in this project
  • NEVER use mocks, placeholders, or TODOs in any code — ALWAYS implement complete, production-ready functionality
  • The extends field MUST contain a valid menu slot ID from a Wix business app — do NOT invent slot IDs
  • The action.navigateToPage.pageId MUST reference the id of an existing dashboard page extension in the project
  • The action.openModal.componentId MUST reference the id of an existing dashboard modal extension in the project
  • A dashboard menu plugin does NOT have a React component — it is configuration-only
  • Do NOT confuse dashboard menu plugins with dashboard plugins — they are different extension types

Slot Lookup Table

Identify which Wix app the user is targeting, then read only the corresponding reference file for slot IDs.

Wix AppKeywordsSlot Reference
Wix Blogblog, posts, categories, tags, drafts, scheduledblog-slots.md
Wix Bookingsbookings, calendar, services, staff, booking listbookings-slots.md
Wix CRMCRM, contactscrm-slots.md
Wix eCommerceecommerce, orders, paymentecommerce-slots.md
Wix Eventsevents, guests, RSVP, ticketedevents-slots.md
Wix Storesstores, products, inventory, catalogstores-slots.md
Wix Restaurantsrestaurants, reservations, online orders, menusrestaurants-slots.md

Output Constraints

Token limits: Your max output is ~10,000 tokens. Plan your response to stay under this limit.

  • Only output files that are directly required for the task
  • Do NOT add README.md or documentation files unless explicitly requested

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.2%
按下载量换算601

Claude

28.27%
按下载量换算457

Cursor

17.43%
按下载量换算281

Gemini CLI

9.92%
按下载量换算160

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills