Token导航 LogoToken导航TokenDH.com
前端设计external-servicegithub未标认证来源可访问clear审计提醒

shadcn-vueshadcn/ui Vue 命令行

Agent Skill

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

总安装

13,944

周安装

581

GitHub Stars

8

下载量

4,648
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/noartem/laravel-vue-skills --skill shadcn-vue

简介

可访问的 Vue/Nuxt 组件库,具有 Reka UI、Tailwind CSS 和深色模式支持。

  • 提供 50 多个预构建的、可访问的组件(按钮、卡片、对话框、数据表、表单),可通过 CLI 进行安装,并具有自动 TypeScript 路径配置
  • 需要使用 npx shadcn-vue@latest init 进行初始化
  • 设置 Components.json
  • 、Tailwind CSS 变量以及添加组件之前的路径别名
  • 通过 CSS 变量支持暗模式、用于动态表单生成的自动表单以及用于可排序/可过滤数据表的 TanStack Table 集成
  • 包括用于 opencode、Codex、Cursor 和 VS Code 的 MCP 服务器设置,以及用于自定义组件组织的注册表命名空间支持

SKILL.md

shadcn-vue


Quick Start (3 Minutes)

For Vue Projects (Vite)

1. Initialize shadcn-vue

npx shadcn-vue@latest init

During initialization:

  • Style: New York or Default (cannot change later!)
  • Base color: Slate (recommended)
  • CSS variables: Yes (required for dark mode)

2. Configure TypeScript Path Aliases

// tsconfig.json
{
  "compilerOptions": {
    "baseUrl": ".",
    "paths": {
      "@/*": ["./src/*"]
    }
  }
}

3. Configure Vite

// vite.config.ts
import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
import tailwindcss from "@tailwindcss/vite"; // Tailwind v4
import path from "path";

export default defineConfig({
  plugins: [vue(), tailwindcss()],
  resolve: {
    alias: {
      "@": path.resolve(__dirname, "./src"),
    },
  },
});

4. Add Your First Component

npx shadcn-vue@latest add button

Quick Reference

NeedCommand or file
Initialize projectnpx shadcn-vue@latest init
Add componentnpx shadcn-vue@latest add button
Add multiple componentsnpx shadcn-vue@latest add button card dialog
Build registry JSONnpx shadcn-vue@latest build
Generate component docsnpx tsx scripts/generate-shadcn-components.ts
Enable CSS variablescomponents.jsontailwind.cssVariables: true
Add registry namespacecomponents.jsonregistries map
Opencode MCP initnpx shadcn-vue@latest mcp init --client opencode
Codex MCP config~/.codex/config.toml with mcp_servers.shadcn

Bundled Resources

Templates (templates/):

  • quick-setup.ts - Complete setup guide for Vue/Nuxt with examples (190 lines)

References (references/):

  • cli.md - CLI commands and options
  • mcp.md - MCP setup, client configs, prompts
  • theming.md - Theming and cssVariables
  • error-catalog.md - All 7 documented issues with solutions (267 lines)
  • component-examples.md - All 50+ component examples with code
  • dark-mode-setup.md - Complete dark mode implementation guide
  • data-tables.md - Data tables with TanStack Table

Component Documentation (components/):

  • references/components.md - Index of all shadcn-vue components
  • components/<component>.md - Individual component documentation with installation, usage, and examples

Official Documentation:


When to Load References

Load these references based on the task:

  1. Load references/error-catalog.md when:

- User encounters "component not found" or import errors - Setup commands fail or configuration issues arise - Tailwind CSS variables or TypeScript paths broken - Trigger phrases: "not working", "error", "fails to", "broken"

  1. Load references/components.md when:

- User asks what components are available (names, categories, status) - User needs to add/use a component and wants the correct install/import paths - You need to confirm a component exists before recommending a custom build

  1. Load references/component-examples.md when:

- User asks "how do I implement [component]?" - Need copy-paste examples for specific components - Building forms, tables, navigation, or data display - Trigger phrases: "example", "how to use", "implement", "code sample"

  1. Load references/cli.md when:

- User asks how to run the CLI (init, add, update) or what prompts mean - Need the exact command/flags for installing one or more components - Troubleshooting CLI-related issues (registry, paths, overwrites)

  1. Load references/dark-mode-setup.md when:

- Implementing dark mode / theme switching - User mentions Vue 3 + Vite, Nuxt, or Astro setup - Need composable patterns for theme management - Trigger phrases: "dark mode", "theme", "light/dark", "color scheme"

  1. Load references/theming.md when:

- User wants to customize theme tokens via CSS variables (cssVariables, :root, .dark) - Need to wire Tailwind to CSS-variable-based colors and radii - Setting up/adjusting design tokens (colors, radius, typography) for shadcn-vue

  1. Load references/mcp.md when:

- Setting up MCP server for opencode, Codex, Cursor, VS Code - Configuring registries in components.json - Troubleshooting missing components or registry namespaces - Trigger phrases: "MCP", "opencode", "codex", "cursor", "registry"

  1. Load references/data-tables.md when:

- Building sortable/filterable/paginated tables - User mentions TanStack Table or DataTable - Trigger phrases: "data table", "table", "tanstack", "sorting", "pagination"


Critical Rules

Always Do

Run init before adding components

  • Creates required configuration and utilities
  • Sets up path aliases

Use CSS variables for theming (cssVariables: true)

  • Enables dark mode support
  • Flexible theme customization

Configure TypeScript path aliases

  • Required for component imports
  • Must match components.json aliases

Keep components.json in version control

  • Team members need same configuration
  • Documents project setup

Never Do

Don't change style after initialization

  • Requires complete reinstall
  • Reinitialize in new directory instead

Don't mix Radix Vue and Reka UI v2

  • Incompatible component APIs
  • Use one or the other

Don't skip TypeScript configuration

  • Component imports will fail
  • IDE autocomplete won't work

Don't use without Tailwind CSS

  • Components are styled with Tailwind
  • Won't render correctly

Common Mistakes

  • Running add before init and missing components.json.
  • Forgetting to enable the MCP server in the client UI/config.
  • Mis-typed registry namespaces (@namespace/component).
  • Using CSS variable classes without tailwind.cssVariables: true.

CLI Commands Reference

init Command

# Initialize in current directory
npx shadcn-vue@latest init

# Initialize in specific directory (monorepo)
npx shadcn-vue@latest init -c ./apps/web

add Command

# Add single component
npx shadcn-vue@latest add button

# Add multiple components
npx shadcn-vue@latest add button card dialog

# Add all components
npx shadcn-vue@latest add --all

diff Command

# Check for component updates
npx shadcn-vue@latest diff button

mcp Command

# Initialize MCP for specific client
npx shadcn-vue@latest mcp init --client opencode
npx shadcn-vue@latest mcp init --client codex
npx shadcn-vue@latest mcp init --client cursor
npx shadcn-vue@latest mcp init --client vscode

Configuration

shadcn-vue uses components.json to configure:

  • Component paths (@/components/ui)
  • Utils location (@/lib/utils)
  • Tailwind config paths
  • TypeScript paths

Full example: See templates/components.json or generate via npx shadcn-vue@latest init


Utils Library

The @/lib/utils.ts file provides the cn() helper for merging Tailwind classes:

  • Combines multiple className strings
  • Uses clsx + tailwind-merge for conflict resolution

Auto-generated by shadcn-vue init - no manual setup needed.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

27.74%
按下载量换算1,289

Antigravity

23.66%
按下载量换算1,100

OpenCode

19.54%
按下载量换算908

Gemini CLI

14.6%
按下载量换算679

github-copilot

8.31%
按下载量换算386

Codex

3.83%
按下载量换算178

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills