Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问clear审计通过

vant-vue3范特 vue3

Agent Skill

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

总安装

3,166

周安装

136

GitHub Stars

347

下载量

1,110
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/teachingai/full-stack-skills --skill vant-vue3

简介

vant-vue3 用于辅助前端页面、组件和样式的开发。

  • 适合生成或审查 Vue 3 和 Vant UI 相关代码。
  • 使用时需结合项目现有组件库和构建配置。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 涉及页面改动时应通过本地预览确认组件交互效果。
  • vant-vue3 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Vant of Vue 3

When to use this skill

Use this skill whenever the user is working with Vant for Vue 3 or asks for:

  • Vant installation, setup, or project initialization
  • Vue 3 mobile UI implementation with vant
  • van-button, van-cell, van-form, van-dialog, van-popup, van-toast
  • Vant ConfigProvider, theme variables, or theme customization
  • Mobile-first page structure, touch-oriented UI, or form flows based on Vant
  • Converting generic Vue 3 UI to Vant component usage
  • Reviewing or fixing existing Vant Vue 3 code

Trigger terms include:

  • vant
  • vant vue3
  • Vant of Vue 3.0
  • van-button, van-form, van-cell, van-dialog, van-toast, van-popup
  • ConfigProvider
  • theme-vars
  • vant 组件
  • Vant 主题定制

Scope and alignment

This skill is aligned to the official Vant documentation entry points:

The local skill content only claims coverage for files that actually exist in this skill directory. Do not reference non-existent local files. If the requested Vant component is not covered by a local example file, use the official guide as the primary reference and reuse the closest local pattern.

For the exact local-to-official mapping, read:

  • references/official-mapping.md

How to use this skill

Step 1: Identify the request area

Map the user request to one of these areas:

  1. Quick start / setup

- Installing Vant - Importing styles - Full import vs on-demand import - Vue 3 project bootstrap

  1. Component implementation

- Button - Cell - Form - Dialog - Toast - Popup

  1. Global config and theming

- ConfigProvider - theme-vars - Theme customization

  1. API lookup

- Common props - Component props/events/methods - Global config API

  1. Template or scaffold

- Project setup template - Reusable component structure

Step 2: Load only the matching files

Use the smallest relevant set of files.

A. Quick start / setup

  • examples/getting-started/installation.md
  • examples/getting-started/basic-usage.md
  • templates/project-setup.md

Use these when the user asks how to install Vant, register components, import CSS, or start a Vue 3 + Vant project.

B. Covered component examples

Use only the component file that matches the user request:

  • Button → examples/components/button.md
  • Cell → examples/components/cell.md
  • Form → examples/components/form.md
  • Dialog → examples/components/dialog.md
  • Popup → examples/components/popup.md
  • Toast → examples/components/toast.md

C. Global config and theme

  • api/config-provider.md
  • examples/advanced/theme-customization.md

Use these for ConfigProvider, dark/light theme handling, theme-vars, CSS variables, or global UI behavior.

D. API lookup

  • api/components.md
  • api/config-provider.md

Use these when the user needs prop names, event names, method names, or a quick API summary.

E. Official navigation and coverage boundaries

  • references/official-mapping.md

Use this file when:

  • You need to confirm what this skill covers locally
  • You need to route the user from an official Vant section to a local file
  • You need to handle a Vant component that is not yet covered by a local example

Step 3: Follow the response workflow

When answering with this skill:

  1. Confirm the target is Vant for Vue 3, not another Vue UI library.
  2. Pick the matching local example or API file.
  3. Keep code examples in Vue 3 Composition API style.
  4. Preserve Vant naming and usage conventions:

- import from vant - use van- components in templates - import vant/lib/index.css where setup requires it

  1. Prefer mobile-first structure and touch-oriented interaction patterns.
  2. If the requested component is not covered locally:

- say that the local skill does not contain a dedicated example file for that component - route via references/official-mapping.md - use the official guide as the primary source of truth - adapt the closest covered local example style instead of inventing fake local files

Local navigation map

This is the actual local navigation surface for the skill.

Getting started

  • examples/getting-started/installation.md
  • examples/getting-started/basic-usage.md
  • templates/project-setup.md

Components covered locally

  • examples/components/button.md
  • examples/components/cell.md
  • examples/components/form.md
  • examples/components/dialog.md
  • examples/components/popup.md
  • examples/components/toast.md

Theme and global configuration

  • api/config-provider.md
  • examples/advanced/theme-customization.md

API summaries

  • api/components.md
  • api/config-provider.md

Official mapping

  • references/official-mapping.md

Working rules

Do

  • Use only local files that actually exist
  • Keep answers anchored to the official Vant guide structure
  • Prefer concrete component code over abstract explanation
  • Use script setup style for Vue 3 examples unless the user already uses another style
  • Mention ConfigProvider when the user asks about global theme or locale-like app-wide config
  • Keep code samples runnable and focused

Do not

  • Do not reference icon.md, tabs.md, navbar.md, or other files that do not exist in this skill
  • Do not pretend this skill has full local coverage for every Vant component
  • Do not mix Vant patterns with Element Plus, Ant Design Vue, or other UI libraries
  • Do not output generic Vue UI advice when the user explicitly asks for Vant

Answer patterns

If the user asks for setup

Load:

  • examples/getting-started/installation.md
  • templates/project-setup.md

Return:

  • install command
  • CSS import
  • registration strategy
  • minimal Vue 3 + Vant starter

If the user asks for a covered component

Load:

  • the matching file under examples/components/
  • api/components.md if props/events are involved

Return:

  • minimal example first
  • then props/events/method notes
  • then usage pitfalls if relevant

If the user asks for theme customization

Load:

  • api/config-provider.md
  • examples/advanced/theme-customization.md

Return:

  • ConfigProvider usage
  • theme-vars example
  • CSS variable strategy
  • scope and inheritance notes

If the user asks for an uncovered Vant component

Load:

  • references/official-mapping.md
  • nearest covered local file

Return:

  • explicit note that the local skill has no dedicated example file for that component
  • route to the official Vant guide section
  • provide a Vant-consistent example following the same conventions used in this skill

Quality checklist

Before responding, verify that:

  • the answer is specifically for Vant of Vue 3
  • all referenced local files exist
  • imports come from vant
  • examples use Vue 3 syntax
  • setup examples include CSS import where needed
  • theme answers use ConfigProvider / theme-vars consistently

Resources

Keywords

Vant, Vant Vue 3, Vant of Vue 3.0, Vue 3 mobile UI, van-button, van-cell, van-form, van-dialog, van-toast, van-popup, ConfigProvider, theme-vars, mobile-first UI, Vant theme, Vant setup, Vant component library, vant 组件, vant vue3, 移动端组件库, 按钮, 单元格, 表单, 对话框, 提示, 弹出层, 主题定制

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

29.16%
按下载量换算324

OpenCode

24.63%
按下载量换算273

trae

16.4%
按下载量换算182

Codex

12.01%
按下载量换算133

Gemini CLI

7.18%
按下载量换算80

github-copilot

3.74%
按下载量换算42

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills