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

wix-cli-cms-collectionWIX CLI CMS collection 搜索

Agent Skill

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

总安装

539

周安装

22

GitHub Stars

公开资料未说明

下载量

172
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add wix-incubator/skills --skill "wix-cli-cms-collection"

简介

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

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

SKILL.md

name
wix-cli-cms-collection
description
Use when defining database schemas, creating data collections, or setting up structured data storage. Triggers include CMS, collection, database, schema, data model, fields, relationships, permissions, data structure, entity definition.
compatibility
Requires Wix CLI development environment.

Wix CMS Collection Builder

Creates CMS collections (databases) for Wix CLI apps. Collections store structured data that can be accessed from dashboard pages, site pages, backend code, and external applications.

File Structure

In Wix CLI apps, all CMS collections are defined in a single file:

File: src/data/extensions.ts

This file uses the extensions.genericExtension() pattern from @wix/astro/builders to register all collections:

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

export const dataExtension = extensions.genericExtension({
  compId: "{{GENERATE_UUID}}",
  compName: "data-extension",
  compType: "DATA_COMPONENT",
  compData: {
    dataComponent: {
      collections: [
        // All collections defined here
      ],
    },
  },
});

CRITICAL: The compId must be a unique, static UUID string. Generate a fresh UUID v4 for each app - do NOT use randomUUID() or copy UUIDs from examples. See EXTENSIONS.md for UUID generation instructions.

Key points:

  • Single file contains all collections
  • Uses extensions.genericExtension() from @wix/astro/builders
  • Each collection includes: idSuffix, displayName, fields, dataPermissions, and optionally initialData
  • Collections are generated by merging operations (INSERT, UPDATE, DELETE) with existing collections
  • See extension template for complete structure
  • See GENERATION.md for detailed technical information about the generation process

Non-Matching Intents

Do NOT use this skill for:

  • Querying/reading data → Use dashboard page or backend code
  • Dashboard UI for data → Use wix-cli-dashboard-page
  • Backend API endpoints → Use wix-cli-backend-api
  • Data migration → Manual process

Field Types

TypeDescriptionUse Case
TEXTSingle-line textNames, titles
RICH_TEXTFormatted HTML textBlog content
RICH_CONTENTRich content with embedded mediaComplex blog posts
NUMBERDecimal numbersPrices, quantities
BOOLEANTrue/falseToggles, flags
DATEDate onlyBirthdays
DATETIMEDate with timeTimestamps
TIMETime onlySchedules
IMAGESingle imageThumbnails
DOCUMENTFile attachmentPDFs
VIDEOVideo fileMedia
AUDIOAudio filePodcasts
MEDIA_GALLERYMultiple mediaGalleries
REFERENCELink to one itemAuthor → User
MULTI_REFERENCELink to many itemsPost → Tags
ADDRESSStructured addressLocations
URLURL validationLinks
PAGE_LINKLink to Wix pageInternal navigation
LANGUAGELanguage codeMulti-language content
OBJECTJSON objectFlexible data
ARRAYArray of valuesGeneric arrays
ARRAY_STRINGArray of stringsTags list
ARRAY_DOCUMENTArray of documentsFile collections
ANYAny typeMost flexible

Complete reference: See FIELD_TYPES.md for detailed documentation of all 24+ field types, including examples, constraints, and use cases.

Field Properties

{
  "key": "email",
  "displayName": "Email Address",
  "type": "TEXT",
  "required": true,
  "unique": true,
  "defaultValue": null,
  "description": "User's primary email"
}
PropertyDescription
keyField identifier (camelCase)
displayNameLabel shown in CMS
typeField data type
requiredMust have value
uniqueNo duplicates allowed
defaultValueInitial value
descriptionHelp text

System Fields (Automatic)

Every collection includes: _id, _createdDate, _updatedDate, _owner

Permissions

Access levels control who can read, create, update, and delete items in collections.

LevelDescription
UNDEFINEDNot set (inherits defaults)
ANYONEPublic access (including visitors)
SITE_MEMBERAny signed-in user (members and collaborators)
SITE_MEMBER_AUTHORSigned-in users, but members only access own items
CMS_EDITORSite collaborators with CMS Access permission
PRIVILEGEDCMS administrators and privileged users

Default pattern (recommended):

  • read: ANYONE, write: PRIVILEGED - Public read, admin write

Common patterns:

  • Public content: read: ANYONE, write: PRIVILEGED
  • User-generated content: read: SITE_MEMBER, write: SITE_MEMBER_AUTHOR
  • Editorial workflow: read: ANYONE, write: CMS_EDITOR
  • Private/admin: read: PRIVILEGED, write: PRIVILEGED

Complete reference: See PERMISSIONS.md for detailed documentation of all access levels, security best practices, and permission patterns.

Automatic Permission Forcing:

All permissions are automatically forced to ANYONE for collections with INSERT or UPDATE operations, regardless of what permissions are specified in the plan. This automatic override applies to all four permission fields (itemRead, itemInsert, itemUpdate, itemRemove). See PERMISSIONS.md for more details.

Relationships

One-to-One / Many-to-One (REFERENCE):

{
  "key": "category",
  "displayName": "Category",
  "type": "REFERENCE",
  "referenceOptions": {
    "referencedCollectionId": "categories"
  }
}

Many-to-Many (MULTI_REFERENCE):

{
  "key": "tags",
  "displayName": "Tags",
  "type": "MULTI_REFERENCE",
  "multiReferenceOptions": {
    "referencedCollectionId": "tags"
  }
}

CRITICAL Constraints:

  • REFERENCE/MULTI_REFERENCE fields can ONLY link to other custom CMS collections defined in your app
  • The referencedCollectionId MUST be the idSuffix of another collection in the same plan
  • NEVER use REFERENCE fields to link to Wix business entities (Products, Orders, Contacts, Members, etc.)
  • Use Wix SDK APIs to access Wix business entities instead

Output Structure

All collections are defined in a single file:

src/
└── data/
    └── extensions.ts    # All collections defined here

This file exports a dataExtension using extensions.genericExtension() that contains all collection definitions.

Extension Registration

CRITICAL: After creating or modifying src/data/extensions.ts, you MUST read ../../skills/references/EXTENSIONS.md and follow the "App Registration" section to update src/extensions.ts.

Without this step, the CMS collections will not be available in your app.

Collection Operations

Collections support three operation types for modifying collections:

INSERT

Creates a new collection or replaces an existing one with the same idSuffix.

Use when: Creating a new collection or completely replacing an existing collection.

UPDATE

Modifies an existing collection by merging new data with existing fields.

Use when: Adding fields, updating permissions, or modifying collection properties.

Behavior:

  • If collection exists: Merges new data with existing collection
  • If collection doesn't exist: Treats update as insert (creates new collection)

DELETE

Removes a collection from the app.

Use when: Removing a collection that is no longer needed.

Behavior:

  • Removes the collection from src/data/extensions.ts
  • If all collections are deleted, the entire file is deleted

Technical details: See GENERATION.md for how operations are merged and applied, including the getDataExtensionAndCollectionsFiles function.

Wix CLI-Specific Constraints

Embedded Script Parameters vs Collections

CRITICAL: NEVER create CMS collections to store configuration for embedded scripts.

All embedded script configuration must go through embedded script parameters (embeddedScriptParameters), not CMS collections.

DO NOT create collections for:

  • Colors, messages, headlines, text content
  • Coupon codes, display settings
  • UI customization (positions, sizes, styles)
  • Timing settings, feature toggles
  • Display frequencies, thresholds
  • Minimums/maximums
  • ANY configuration that controls how an embedded script behaves or appears

Examples of configuration (use parameters, NOT collections):

  • Popup headline → embedded script parameter
  • Coupon code → embedded script parameter
  • Background color → embedded script parameter
  • Display position → embedded script parameter
  • Show/hide toggles → embedded script parameter

CMS collections should ONLY be created for:

  • Business data (products, orders, inventory, etc.)
  • User-generated content (reviews, comments, submissions)
  • Event logs (if explicitly requested for analytics/tracking)
  • Multi-record relational data that is NOT configuration

Decision Rule:

  • If it controls HOW the embedded script works or looks → it's configuration → use embedded script parameters
  • If it's business data or user-generated content → it's data → use CMS collections

Site Widget Settings vs Collections

CRITICAL: Site widgets have a built-in settings panel (panel.tsx) that handles ALL widget configuration.

For SITE_WIDGET-only blueprints (no DASHBOARD_PAGE or other extensions):

  • ALWAYS return collections: [] (empty array)
  • The widget panel handles everything
  • NEVER create collections to store widget configuration data

Configuration handled by widget panel (NOT collections):

  • Target date/time for countdown → widget panel
  • Display colors, fonts, sizes → widget panel
  • Headlines, labels, messages → widget panel
  • Feature toggles, show/hide options → widget panel
  • Numeric settings (delays, intervals, thresholds) → widget panel

Only create collections for SITE_WIDGET when ALL of these conditions are met:

  1. The blueprint ALSO includes a DASHBOARD_PAGE extension that needs to manage data the widget displays
  2. OR the widget explicitly needs to display MULTIPLE records of user-generated/business data (not configuration)
  3. AND the data is NOT configuration (dates, colors, settings, display options are ALWAYS configuration)

Additional patterns and anti-patterns: See CODEGEN_PATTERNS.md for app namespace scoping, initial data guidelines, field naming conventions, and common anti-patterns.

Examples

Simple Collection with Initial Data

Request: "Create a collection for handling fees with example data"

Generated file: src/data/extensions.ts

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

export const dataExtension = extensions.genericExtension({
  compId: "{{GENERATE_UUID}}",
  compName: "data-extension",
  compType: "DATA_COMPONENT",
  compData: {
    dataComponent: {
      collections: [
        {
          schemaUrl: "https://www.wix.com/",
          idSuffix: "additional-fees",
          displayName: "Additional Fees",
          displayField: "title",
          fields: [
            { key: "title", displayName: "Fee Title", type: "TEXT" },
            { key: "amount", displayName: "Fee Amount", type: "NUMBER" },
          ],
          dataPermissions: {
            itemRead: "ANYONE",
            itemInsert: "PRIVILEGED",
            itemUpdate: "PRIVILEGED",
            itemRemove: "PRIVILEGED",
          },
          initialData: [
            { title: "Handling Fee", amount: 5 },
            { title: "Gift Wrapping", amount: 3.5 },
          ],
        },
      ],
    },
  },
});

Note: Replace {{GENERATE_UUID}} with a freshly generated UUID v4 string.

Collection with Reference Relationship

Request: "Create collections for products and categories with relationships"

Collections:

  • categories - Category definitions
  • products - Products that reference categories

Both collections are defined in the same src/data/extensions.ts file, with the products collection using a REFERENCE field to link to categories.

Complete examples: See EXAMPLES.md for more real-world examples including collections with references, multi-references, complex fields, and multiple collections.

Common Patterns

Soft Delete: Add isDeleted (BOOLEAN, default: false)

Status/Workflow: Add status (TEXT) with values like draft/pending/published

URL Slug: Add slug (TEXT, unique) for SEO-friendly URLs

Owner Tracking: Add createdBy (REFERENCE → custom collection, not Members)

Note: For owner tracking, create a custom collection for users rather than referencing Wix Members directly.

Verification

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

Reference Documentation

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Claude Code

25.77%
按下载量换算44

windsurf

22.95%
按下载量换算39

trae

17.63%
按下载量换算30

OpenCode

10.96%
按下载量换算19

Codex

8.16%
按下载量换算14

Antigravity

2.97%
按下载量换算5

安全审计

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

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills