Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计通过

vtex-io-storefront-reactvtex IO storefront React 搜索

Agent Skill

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。它适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。

总安装

3,795

周安装

163

GitHub Stars

25

下载量

1,330
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/vtex/skills --skill vtex-io-storefront-react

简介

用于辅助前端页面、组件和样式逻辑的开发与维护。

  • 适合生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码。
  • 通过 npx skills add 命令从指定仓库安装并使用该技能。
  • 需结合项目现有设计系统和路由方式,避免生成孤立片段;涉及页面改动时应配合本地预览确认效果。
  • 建议在实际构建环境中验证生成的代码兼容性。

SKILL.md

Storefront React Components

When this skill applies

Use this skill when building shopper-facing React components under the react builder for storefront experiences.

  • Creating product or category UI widgets
  • Building custom banners, forms, and shopper-facing layout pieces
  • Using storefront hooks or context providers
  • Styling components with css-handles

Do not use this skill for:

  • admin pages
  • block registration and render-runtime contracts
  • service runtime or backend route design
  • GraphQL schema design

Decision rules

  • Treat storefront components as browser-facing UI and keep them safe for shopper contexts.
  • Prefer keeping storefront components presentational and props-driven, and move complex data fetching or business logic to hooks or container components.
  • Use vtex.css-handles instead of hardcoded global class names.
  • Prefer receiving data through props or documented storefront hooks and contexts such as useProduct, useRuntime, or useOrderForm instead of calling VTEX APIs directly from the browser or using app keys in storefront code.
  • Keep components resilient to loading, empty, and unavailable product or search context.
  • For shopper-facing copy, use message IDs and helpers from the messages infrastructure, as described in vtex-io-messages-and-i18n, instead of string literals.
  • Treat storefront components as part of the storefront accessibility surface: use semantic HTML elements such as button or a instead of clickable divs, and ensure important content has appropriate labels or alternative text.
  • When accessing browser globals such as window or document, guard against server-side execution, for example by using useEffect or checking typeof window!== 'undefined'.

Hard constraints

Constraint: Storefront styling must use css-handles

Storefront components MUST expose styling through css-handles, not arbitrary hardcoded class names.

Why this matters

css-handles are the customization contract for storefront components. Hardcoded or hidden class names make themes harder to extend safely.

Detection

If a storefront component uses arbitrary global class names without css-handles, STOP and expose styling through handles first.

Correct

const CSS_HANDLES = ['container', 'title'] as const

Wrong

return <div className="my-random-block-root">...</div>

Constraint: Storefront components must remain browser-safe

Storefront React code MUST not depend on Node-only APIs or server-only assumptions.

Why this matters

These components run in the shopper-facing frontend. Server-only dependencies break rendering and create runtime failures in the browser.

Detection

If a component uses Node-only modules, filesystem access, or server runtime assumptions, STOP and redesign it for the browser.

Correct

return <span>{label}</span>

Wrong

import fs from 'fs'

Constraint: Shopper-facing strings must be localizable

Visible storefront strings MUST use the app i18n pattern instead of hardcoded text.

Why this matters

Storefront UIs run across locales and stores. Hardcoded strings make the component less reusable and less consistent with VTEX IO localization.

Detection

If shopper-visible copy is hardcoded in JSX, STOP and move it to the i18n mechanism.

Correct

<FormattedMessage id="storefront.cta" />

Wrong

<span>Buy now</span>

Preferred pattern

Keep storefront components small, props-driven, css-handle-based, and safe for shopper contexts.

Minimal css-handles pattern:

import { useCssHandles } from 'vtex.css-handles'

const CSS_HANDLES = ['container', 'title'] as const

export function MyComponent() {
  const { handles } = useCssHandles(CSS_HANDLES)

  return (
    <div className={handles.container}>
      <h2 className={handles.title}>...</h2>
    </div>
  )
}

Common failure modes

  • Hardcoding class names instead of using css-handles.
  • Using browser-unsafe dependencies.
  • Hardcoding shopper-visible strings.
  • Fetching data in ad hoc ways instead of using VTEX storefront patterns.
  • Putting complex business logic or heavy data fetching directly inside presentational components instead of using hooks or containers.
  • Using non-semantic clickable elements such as div or span with onClick where a button or a element should be used.

Review checklist

  • Is this component truly shopper-facing?
  • Are styles exposed through css-handles?
  • Is the component safe for browser execution?
  • Are visible strings localized?
  • Is the data flow appropriate for a storefront component?

Related skills

Reference

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.03%
按下载量换算479

Claude

29.91%
按下载量换算398

Cursor

19.2%
按下载量换算255

Gemini CLI

9.21%
按下载量换算122

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills