Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计未展示

wix-cli-embedded-scriptWIX CLI embedded Script CLI

Agent Skill

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

总安装

544

周安装

22

GitHub Stars

公开资料未说明

下载量

171
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add wix-incubator/skills --skill "wix-cli-embedded-script"

简介

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

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

SKILL.md

name
wix-cli-embedded-script
description
Use when adding tracking code, advertising pixels, third-party integrations, custom popups, or client-side JavaScript to sites. Triggers include embed, inject, tracking, analytics, pixel, popup, modal, chat widget, third-party integration, DOM injection, consent banner.
compatibility
Requires Wix CLI development environment.

Wix Embedded Script Builder

Creates embedded script extensions for Wix CLI applications. Embedded scripts are HTML code fragments that get injected into the DOM of Wix sites, enabling integration with third-party services, analytics tracking, advertising, and custom JavaScript functionality.

Quick Start Checklist

Follow these steps in order when creating an embedded script:

  1. [ ] Create script folder: src/site/embedded-scripts/<script-name>/
  2. [ ] Create embedded.html with config element, styles, and script logic
  3. [ ] Create extensions.ts with extensions.embeddedScript() and unique UUID
  4. [ ] Create dashboard config page: src/dashboard/pages/<script-name>-settings/
  5. [ ] Implement config page with embeddedScripts API from @wix/app-management
  6. [ ] Update src/extensions.ts to import and use both extensions
  7. [ ] Run npx tsc --noEmit to verify TypeScript compiles
  8. [ ] Run npx wix build and npx wix preview to test

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
  • Service plugins (eCommerce SPIs) → Use wix-cli-service-plugin
  • Custom site widgets with settings panel → Use wix-custom-element

Script Types

Embedded scripts must declare a type for consent management:

TypeDescriptionUse Cases
ESSENTIALCore functionality crucial to site operationAuthentication, security features
FUNCTIONALRemembers user choices to improve experienceLanguage preferences, UI customization
ANALYTICSProvides statistics on how visitors use the siteGoogle Analytics, Hotjar, Mixpanel
ADVERTISINGProvides visitor data for marketing purposesFacebook Pixel, Google Ads, retargeting

Selection rule: If a script falls into multiple types, choose the option closest to the bottom of the list (most restrictive). For example, a script with both Analytics and Advertising aspects should be typed as ADVERTISING.

Placement Options

PlacementDescriptionBest For
HEADBetween <head> and </head> tagsAnalytics, early initialization
BODY_STARTImmediately after opening <body> tagCritical functionality, noscript
BODY_ENDImmediately before closing </body> tagNon-blocking scripts, performance

Selection guidelines:

  • Analytics/tracking → HEAD (initialize early)
  • Advertising pixels → BODY_END (non-blocking)
  • Critical functionality → HEAD or BODY_START
  • Non-critical features → BODY_END (better performance)

Dynamic Parameters and Dashboard Configuration

Every embedded script requires a companion dashboard page to configure its parameters. Site owners use the dashboard page UI to set values, which are then passed to the embedded script as template variables.

Architecture Flow

Dashboard Page (React UI)
    │
    │  embeddedScripts.embedScript({ parameters: {...} })
    ▼
Wix App Management API
    │
    │  Stores parameters, injects as template variables
    ▼
Embedded Script (HTML)
    │
    │  {{parameterKey}} → actual value
    ▼
Site DOM

Related skill: Use wix-cli-dashboard-page to create the configuration UI for your embedded script.

Parameter Types

TypeDescriptionDashboard Component
TEXTSingle-line textInput
NUMBERNumeric valueInput type="number"
BOOLEANTrue/false toggleToggleSwitch, Checkbox
IMAGEImage from media managerImagePicker
DATEDate onlyDatePicker
DATETIMEDate with timeDatePicker + TimeInput
URLURL with validationInput
SELECTDropdown optionsDropdown
COLORColor valueColorPicker

Template Variable Syntax

Embedded scripts support parameterization using template variable syntax {{variableName}}. These parameters are configured through the dashboard and passed as template variables that should be used in your HTML/JavaScript code.

Usage Instructions:

  1. Template Variable Syntax:

- Use {{parameterKey}} syntax to insert parameter values into your HTML - Template variables work in HTML attributes - They will be replaced with actual values when the script is injected

  1. HTML Attributes (REQUIRED):

- Store ALL parameter values in data attributes on a configuration element - Template variables can ONLY be used here, not directly in JavaScript - Example: <div id="config" data-headline="{{headline}}" data-text="{{text}}"></div>

  1. JavaScript Access:

- JavaScript must read parameter values from the data attributes - Use getAttribute() or the dataset property - Examples:

     const config = document.getElementById("config");
     const headline = config?.getAttribute("data-headline");
     // OR using dataset:
     const { headline, text } = config.dataset;
  1. Type Safety:

- Be aware of parameter types when using them in JavaScript - NUMBER types: convert with Number() or parseInt() - BOOLEAN types: compare with 'true' or 'false' strings - DATE/DATETIME: parse with new Date()

  1. Required vs Optional:

- Required parameters will always have values - Optional parameters may be empty - handle gracefully - Provide fallback values for optional parameters

  1. Relevant Parameter Usage:

- Only use dynamic parameters that are relevant to your current use case - Ignore parameters that don't apply to the functionality you're implementing - Each parameter you use should serve a clear purpose in the script's functionality - It's perfectly fine to not use all parameters if they're not applicable

Example Patterns:

Pattern 1 - Configuration in Data Attributes:

<div
  id="script-config"
  data-api-key="{{apiKey}}"
  data-enabled="{{enabled}}"
  data-color="{{primaryColor}}"
></div>
<script>
  const config = document.getElementById("script-config");
  const apiKey = config.getAttribute("data-api-key");
  const enabled = config.getAttribute("data-enabled") === "true";
  const color = config.getAttribute("data-color");

  if (enabled && apiKey) {
    // Initialize with configuration
  }
</script>

Pattern 2 - Using dataset Property:

<div
  id="script-config"
  data-headline="{{headline}}"
  data-message="{{message}}"
  data-image-url="{{imageUrl}}"
></div>
<script>
  const config = document.getElementById("script-config");
  const { headline, message, imageUrl } = config.dataset;

  // Use the variables in your script logic
  if (headline) {
    document.querySelector("#headline").textContent = headline;
  }
</script>

Pattern 3 - Conditional Logic:

<div
  id="config"
  data-mode="{{activationMode}}"
  data-start="{{startDate}}"
  data-end="{{endDate}}"
></div>
<script>
  const config = document.getElementById("config");
  const mode = config.getAttribute("data-mode");

  if (mode === "timed") {
    const startDate = new Date(config.getAttribute("data-start"));
    const endDate = new Date(config.getAttribute("data-end"));
    const now = new Date();

    if (now >= startDate && now <= endDate) {
      // Show content
    }
  } else if (mode === "active") {
    // Show content immediately
  }
</script>

Validation Requirements:

  • Only use dynamic parameters that are relevant to your specific use case
  • Ignore parameters that don't apply to the functionality being implemented
  • Template variables {{parameterKey}} must match the exact key names from the parameter definitions
  • Handle both required and optional parameters appropriately
  • Provide sensible default behavior when optional parameters are not set
  • Ensure type-appropriate usage (don't use NUMBER parameters as strings without conversion)

Common Parameters

Every embedded script should have at minimum an enable/disable toggle parameter:

ParameterTypePurpose
enabledBOOLEANAllow site owner to activate/disable
apiKeyTEXTThird-party service credentials
trackingIdTEXTAnalytics/pixel identifiers
headlineTEXTCustomizable display text
colorCOLORUI customization

Output Structure

A complete embedded script implementation requires two parts:

1. Embedded Script Extension

src/site/embedded-scripts/
└── {script-name}/
    ├── embedded.html     # HTML/JavaScript code to inject
    └── extensions.ts     # Metadata (scriptType, placement)

2. Dashboard Configuration Page (Required)

src/dashboard/
├── withProviders.tsx     # WDS provider wrapper (required)
└── pages/
    └── {script-name}-settings/
        ├── extensions.ts  # Extension registration (REQUIRED)
        └── page.tsx       # Configuration UI using embeddedScripts API

Note: The dashboard page requires its own extensions.ts file. Without this file, the dashboard page will not appear in the Wix dashboard.

WARNING: The dashboard page uses DIFFERENT field names than embedded scripts:

  • Dashboard pages use title, routePath, component
  • Embedded scripts use name, source, placement, scriptType

Do NOT apply embedded script field names to dashboard page registrations.

See wix-cli-dashboard-page skill for dashboard page implementation details and the extension registration pattern.

Implementation Pattern

<!-- Configuration element with template variables -->
<div id="my-config" data-api-key="{{apiKey}}" data-enabled="{{enabled}}"></div>

<!-- Container for dynamic content -->
<div id="my-container"></div>

<style>
  /* Scoped styles for the embedded content */
  #my-container {
    /* styles */
  }
</style>

<script type="module">
  // Get configuration from data attributes
  const config = document.getElementById("my-config");
  if (!config) throw new Error("Config element not found");

  const { apiKey, enabled } = config.dataset;

  // Exit early if disabled (use throw at module scope, not return)
  if (enabled !== "true") {
    throw new Error("Script disabled");
  }

  // Implement functionality in a named function (return is allowed here)
  async function initialize() {
    try {
      // Your implementation
    } catch (error) {
      console.error("Script error:", error);
    }
  }

  // Initialize when DOM is ready
  if (document.readyState === "loading") {
    document.addEventListener("DOMContentLoaded", initialize);
  } else {
    initialize();
  }
</script>

Examples

Analytics Tracking

Request: "Add Google Analytics tracking to my site"

Output:

  • Script type: ANALYTICS
  • Placement: HEAD
  • Template variables: {{trackingId}}
  • Implements: gtag.js initialization, page view tracking

Popup/Modal

Request: "Create a coupon popup that shows when cart value exceeds $50"

Output:

  • Script type: FUNCTIONAL
  • Placement: BODY_END
  • Template variables: {{couponCode}}, {{minimumCartValue}}, {{enablePopup}}
  • Implements: Cart value detection, popup display logic, localStorage for "don't show again"

Third-Party Chat Widget

Request: "Integrate Intercom chat widget"

Output:

  • Script type: FUNCTIONAL
  • Placement: BODY_END
  • Template variables: {{appId}}, {{userEmail}}, {{userName}}
  • Implements: Intercom SDK initialization, user identification

Best Practices

  • Always create a dashboard page: Every embedded script needs a configuration UI
  • Include enable/disable toggle: Let site owners control activation without removing the script
  • Performance: Minimize impact - scripts should be lightweight and non-blocking
  • Security: Avoid inline event handlers, validate data, escape user input
  • Error handling: Fail silently when appropriate - don't break the site
  • Module scope early exits: Use throw new Error() for early exits at module scope, not return. Rollup (used by Astro) doesn't allow return statements at module scope. Wrap main logic in a named async function where return is valid.
  • Type conversions: Parameters are always strings - convert in JavaScript as needed
  • API calls: Only create fetch() calls to /api/\* endpoints that exist in the API spec
  • Scoping: Prefix CSS classes and IDs to avoid conflicts with site styles
  • Cleanup: Remove event listeners and intervals when appropriate

Complete Example: Coupon Popup

1. Define Parameters

Parameters for "cart-coupon-popup":
- couponCode (TEXT, required) - The coupon code to display
- popupHeadline (TEXT, required) - Headline text
- popupDescription (TEXT, required) - Description text
- minimumCartValue (NUMBER) - Minimum cart value to show popup
- enablePopup (BOOLEAN, required) - Enable/disable toggle

2. Embedded Script (embedded.html)

<div
  id="popup-config"
  data-coupon-code="{{couponCode}}"
  data-popup-headline="{{popupHeadline}}"
  data-minimum-cart-value="{{minimumCartValue}}"
  data-enable-popup="{{enablePopup}}"
></div>
<div id="popup-container"></div>

<script type="module">
  // Get configuration from data attributes
  const config = document.getElementById("popup-config");
  if (!config) throw new Error("Config element not found");

  const { couponCode, popupHeadline, minimumCartValue, enablePopup } =
    config.dataset;

  // Exit early if disabled (use throw at module scope, not return)
  if (enablePopup !== "true") {
    throw new Error("Popup disabled");
  }

  // Main logic in a function (return is allowed here)
  async function initializePopup() {
    const minValue = Number(minimumCartValue) || 0;
    // ... popup implementation
  }

  // Initialize when DOM is ready
  if (document.readyState === "loading") {
    document.addEventListener("DOMContentLoaded", initializePopup);
  } else {
    initializePopup();
  }
</script>

3. Dashboard Page (See wix-cli-dashboard-page skill)

Uses embeddedScripts API from @wix/app-management:

import { embeddedScripts } from "@wix/app-management";

// Load parameters
const script = await embeddedScripts.getEmbeddedScript();
const params = script.parameters; // { couponCode: "...", ... }

// Save parameters (all values must be strings)
await embeddedScripts.embedScript({
  parameters: {
    couponCode: "SAVE20",
    minimumCartValue: "50", // Number as string
    enablePopup: "true", // Boolean as string
  },
});

Extension Registration

Extension registration is MANDATORY and has TWO required steps.

Step 1: Create Script-Specific Extension File

Each embedded script requires an extensions.ts file in its folder:

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

export const embeddedscriptMyScript = extensions.embeddedScript({
  id: "{{GENERATE_UUID}}",
  name: "My Script",
  source: "./site/embedded-scripts/my-script/embedded.html",
  placement: "BODY_END",
  scriptType: "FUNCTIONAL",
});

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".

PropertyTypeDescription
idstringUnique static UUID v4 (generate fresh)
namestringDisplay name for the script
sourcestringRelative path to the HTML file
placementenumHEAD, BODY_START, or BODY_END
scriptTypeenumESSENTIAL, FUNCTIONAL, ANALYTICS, ADVERTISING

Step 2: Register in Main Extensions File

CRITICAL: After creating the script-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 embedded script will not be deployed to the site.

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

30.56%
按下载量换算52

windsurf

23.18%
按下载量换算40

trae

17.59%
按下载量换算30

OpenCode

13.75%
按下载量换算24

Codex

8.83%
按下载量换算15

Antigravity

3.75%
按下载量换算6

安全审计

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

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills