Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计未展示

wix-cli-service-pluginWIX CLI service plugin CLI

Agent Skill

wix-cli-service-plugin 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

512

周安装

22

GitHub Stars

公开资料未说明

下载量

180
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add wix-incubator/skills --skill "wix-cli-service-plugin"

简介

发现并安装 AI 代理的技能。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 等宿主环境。
  • 支持根据关键词快速定位候选技能结果。
  • 通过 npx 命令从 GitHub 仓库安装,注意权限和网络访问限制。
  • wix-cli-service-plugin 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
wix-cli-service-plugin
description
Use when implementing service plugin extensions that inject custom backend logic into existing Wix business solution flows or introduce new flows to Wix sites. Service plugins let you customize shipping rates, additional fees, taxes, cart validations, checkout behavior, gift cards, discount triggers, and more. Triggers include SPI, service plugin, shipping rates, handling fees, tax calculation, cart validation, checkout customization, business logic, gift cards, custom triggers, payment settings, backend flow.
compatibility
Requires Wix CLI development environment.

Wix Service Plugin (SPI) Builder

Creates service plugin extensions for Wix CLI applications. Service plugins are a set of APIs defined by Wix that you can use to inject custom logic into the existing backend flows of Wix business solutions or to introduce entirely new flows to Wix sites.

When you implement a service plugin, Wix calls your custom functions during specific flows. Common use cases include eCommerce customization (shipping, fees, taxes, validations), but service plugins can extend any Wix business solution that exposes SPIs.

Quick Start Checklist

Follow these steps in order when creating a service plugin:

  1. [ ] Read the reference doc for your SPI type (REQUIRED before implementation)
  2. [ ] Create plugin folder: src/backend/service-plugins/<service-type>/<plugin-name>/
  3. [ ] Create plugin.ts with correct imports and provideHandlers() call
  4. [ ] Implement all required handler functions with complete business logic
  5. [ ] Create extensions.ts with appropriate builder method and unique UUID
  6. [ ] Update src/extensions.ts to import and use the new extension
  7. [ ] Run npx tsc --noEmit to verify TypeScript compiles
  8. [ ] Run npx wix build to verify build succeeds
  9. [ ] Test by triggering the relevant site action (e.g., add to cart for fees)

Non-Matching Intents

Do NOT use this skill for:

  • Dashboard admin interfaces → Use wix-cli-dashboard-page
  • Database/collection schemas → Use wix-cli-cms-collection
  • Backend API endpoints → Use wix-cli-backend-api
  • Embedded scripts on site → Use wix-cli-embedded-script
  • Backend event handlers → Use wix-backend-event

References

You MUST read the relevant reference document before implementing a relevant SPI. Each reference contains the correct imports, handler signatures, response structures, and working examples.

SPI TypeReference
Additional FeesADDITIONAL-FEES.md
Discount TriggersDISCOUNT-TRIGGERS.md
Gift CardsGIFT-CARDS.md
Shipping RatesSHIPPING-RATES.md
Tax CalculationTAX-CALCULATION.md
ValidationsVALIDATIONS.md

Output Structure

Service plugins consist of two files that work together. Registration of plugins requires an extension builder file.

src/backend/service-plugins/
└── {service-type}/
    └── {plugin-name}/
        ├── plugin.ts           # Handler logic with provideHandlers()
        └── extensions.ts       # Builder configuration (id, name, source)

File Descriptions

FilePurpose
plugin.tsContains the service plugin handler logic with provideHandlers() - this is where you implement your custom business logic
extensions.tsContains the service plugin builder configuration with id (GUID), name, description, and source path

Implementation Requirements

Generation Requirements

  1. Implement ALL required handler functions with complete business logic
  2. Include proper TypeScript types and error handling
  3. Focus on implementing the EXACT business logic described in the user prompt

Implementation Patterns

  • If capabilities are undocumented/unavailable, explicitly state the gap and proceed only with documented minimal logic
  • Implement all required handler functions according to Wix specifications
  • Never use placeholders - always implement complete, working functionality

Data Validation

All service plugins must include comprehensive data validation:

  • Validate all input data from Wix requests
  • Ensure required fields are present and properly formatted
  • Handle missing or malformed data gracefully
  • Validate business logic constraints (e.g., minimum order amounts, valid addresses)

Implementation Pattern

The handler file (plugin.ts) contains the service plugin logic. It must:

  1. Import the relevant service plugin from @wix/ecom/service-plugins
  2. Call provideHandlers() with an object containing handler functions
  3. Each handler function receives a payload with request and metadata
  4. Return the expected response structure for that SPI type
import { shippingRates } from "@wix/ecom/service-plugins";

shippingRates.provideHandlers({
  getShippingRates: async (payload) => {
    const { request, metadata } = payload;

    // Implement custom logic based on request data
    // - request contains cart items, shipping address, etc.
    // - metadata contains currency, locale, etc.

    return {
      shippingRates: [
        {
          code: "custom-shipping",
          title: "Custom Shipping",
          logistics: {
            deliveryTime: "3-5 business days",
          },
          cost: {
            price: "9.99",
            currency: metadata.currency || "USD",
          },
        },
      ],
    };
  },
});

Handler functions are called automatically by Wix when the relevant site action triggers them. Your custom logic should be placed inside each handler function.

Elevating Permissions for API Calls

When making Wix API calls from service plugins, you must elevate permissions using auth.elevate from @wix/essentials.

import { auth } from "@wix/essentials";
import { items } from "@wix/data";

export const myFunction = async () => {
  const elevatedFunction = auth.elevate(items.query);
  const elevatedResponse = await elevatedFunction("myCollection");
  return elevatedResponse;
};
import { auth } from "@wix/essentials";
import { cart } from "@wix/ecom";

export const myFunction = async () => {
  const elevatedFunction = auth.elevate(cart.getCart);
  const elevatedResponse = await elevatedFunction("cart-id");
  return elevatedResponse;
};
import { auth } from "@wix/essentials";
import { products } from "@wix/stores";

export const myFunction = async () => {
  const elevatedFunction = auth.elevate(products.deleteCollection);
  const elevatedResponse = await elevatedFunction("collection-id");
  return elevatedResponse;
};

Best Practices

Development Workflow

  • Always implement complete, working functionality - never use placeholders
  • Handle all required fields according to Wix documentation
  • Implement proper validation for all input data
  • Return responses in exact format expected by Wix
  • Add comprehensive error handling for all failure scenarios
  • Use meaningful variable names and clear code structure
  • Test thoroughly with different input combinations

Implementation Guidelines

  • Validate all input: Check required fields are present and properly formatted
  • Handle errors gracefully: Return appropriate error responses, don't throw unhandled exceptions
  • Return exact format: Responses must match Wix documented structure exactly
  • Use TypeScript types: Leverage SDK types for better type safety
  • Test edge cases: Empty carts, missing addresses, invalid data
  • Performance: Keep calculations efficient - these run on every checkout
  • Logging: Add console.log for debugging but keep production logs minimal

Extension Registration

Extension registration is MANDATORY and has TWO required steps.

Step 1: Create Plugin-Specific Extension File

Each service plugin requires an extensions.ts file in its folder with the appropriate builder method for the SPI type:

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

export const ecomshippingratesMyShipping = extensions.ecomShippingRates({
  id: "{{GENERATE_UUID}}",
  name: "My Shipping Rates",
  description: "Calculates custom shipping rates based on order weight",
  source: "./backend/service-plugins/ecom-shipping-rates/my-shipping/plugin.ts",
});

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 Configuration Fields

FieldTypeDescription
idstringService plugin ID as a GUID. Must be unique across all extensions in the project.
namestringThe service plugin name (visible in app dashboard when developing an app).
descriptionstringA short description of what the service plugin does.
sourcestringPath to the service plugin handler file that contains the plugin logic.

Additional fields may be required or optional depending on the specific service plugin type.

Builder methods by SPI type:

SPI TypeBuilder Method
Shipping RatesecomShippingRates()
Additional FeesecomAdditionalFees()
ValidationsecomValidations()
Discount TriggersecomDiscountTriggers()
Gift CardsecomGiftCards()
Payment SettingsecomPaymentSettings()

Step 2: Register in Main Extensions File

CRITICAL: After creating the plugin-specific extension file, you MUST read ../../skills/references/EXTENSIONS.md and follow the "App Registration" section to update src/extensions.ts.

Without completing Step 2, the service plugin will not be active in the eCommerce system.

Testing Service Plugins

To test your service plugin extension:

  1. Release a version with your changes - new service plugins or changes to existing ones won't take effect until you've built and released your project
  2. Trigger the call to your service plugin by performing the relevant action (e.g., add items to cart and view cart to test Additional Fees)

For example, to test an Additional Fees service plugin that adds a $5 packaging fee:

  1. Go to your site's store in the local development environment
  2. Select any product and add it to the cart, then view the cart
  3. Check if the additional fee is listed in the order summary

Verification

After implementation, use wix-cli-app-validation to validate TypeScript compilation, build, preview, and runtime behavior.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

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

平台分布

Claude Code

29.95%
按下载量换算54

windsurf

21.4%
按下载量换算39

trae

19.4%
按下载量换算35

OpenCode

12.65%
按下载量换算23

Codex

7.79%
按下载量换算14

Antigravity

3.86%
按下载量换算7

安全审计

暂无安全审计结果可展示。

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills