Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计异常

tapforce-shadcn-sveltetapforce shadcn/ui Svelte 前端

Agent Skill

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

总安装

753

周安装

32

GitHub Stars

公开资料未说明

下载量

264
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/tapforce/agents-skills --skill tapforce-shadcn-svelte

简介

tapforce-shadcn-svelte 用于辅助前端页面和组件开发。

  • 适合生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码。
  • 结合项目现有设计系统和路由方式生成组件,避免孤立片段输出。
  • 涉及页面改动时应配合本地预览和构建检查确认视觉效果。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

tapforce-shadcn-svelte

This skill provides comprehensive guidance for setting up and using the shadcn-svelte library in Svelte projects. It covers installation, configuration, component usage, theming, and best practices.

Requirements

  • Project must be based on SvelteKit framework version 2.0 or higher
  • Project must use Svelte 5.0 or higher
  • Project should use TailwindCSS (recommended)

Resources

  • -

Available Components

Check Project Installation

You must check if shadcn-svelte is already installed in the project. To check, look for the components.json file in the project root directory.

# Check if components.json exists
ls -la components.json

If the file exists, shadcn-svelte is already configured in the project.

Installation

Prerequisites

Project requires SvelteKit ^2 and TailwindCSS ^4 ready before initializing shadcn-svelte.

Initialize shadcn-svelte

pnpm dlx shadcn-svelte@latest init

The @latest tag indicates installing the latest version. For adding components by command, you need to get the real version from package.json and use it in the command.

Configure components.json

You will be asked a few questions to configure components.json:

  • Which base color would you like to use? › Slate
  • Where is your global CSS file? (this file will be overwritten) › src/routes/layout.css
  • Configure the import alias for lib: › $lib
  • Configure the import alias for components: › $lib/components
  • Configure the import alias for utils: › $lib/utils
  • Configure the import alias for hooks: › $lib/hooks
  • Configure the import alias for ui: › $lib/components/ui

Setup Path Aliases (if needed)

If you are not using the default alias $lib, you'll need to update your svelte.config.js file to include those aliases:

const config = {
  // ... other config
  kit: {
    // ... other config
    alias: {
      "@/*": "./path/to/lib/*",
    },
  },
};

CLI Usage

Initialize Project

pnpm dlx shadcn-svelte@latest init

Options:

  • -c, --cwd <path>: the working directory (default: the current directory)
  • -o, --overwrite: overwrite existing files (default: false)
  • --no-deps: disable adding & installing dependencies
  • --skip-preflight: ignore preflight checks and continue (default: false)
  • --base-color <name>: the base color for the components (choices: "slate", "gray", "zinc", "neutral", "stone")
  • --css <path>: path to the global CSS file
  • --components-alias <path>: import alias for components
  • --lib-alias <path>: import alias for lib
  • --utils-alias <path>: import alias for utils
  • --hooks-alias <path>: import alias for hooks
  • --ui-alias <path>: import alias for ui
  • --proxy <proxy>: fetch items from registry using a proxy

Add Components

pnpm dlx shadcn-svelte@latest add [component]

Example:

pnpm dlx shadcn-svelte@latest add button

Options:

  • -c, --cwd <path>: the working directory (default: the current directory)
  • --no-deps: skips adding & installing package dependencies
  • --skip-preflight: ignore preflight checks and continue (default: false)
  • -a, --all: install all components to your project (default: false)
  • -y, --yes: skip confirmation prompt (default: false)
  • -o, --overwrite: overwrite existing files (default: false)
  • --proxy <proxy>: fetch components from registry using a proxy

Import and Use Components

After adding a component, you can import it like this:

<script lang="ts">
  import { Button } from "$lib/components/ui/button";
</script>

<Button>Click me</Button>

Import Guidelines:

  • Always use destructuring imports from the component's own folder: import {Button} from "$lib/components/ui/button"
  • Import sub-components together from their parent: import {Card, CardHeader, CardTitle} from "$lib/components/ui/card"
  • Never use namespace imports for simple components: import * as Button from "$lib/components/ui/button"
  • Use direct component paths without /index.js suffix

Theming

CSS Variables Convention

shadcn-svelte uses a simple background and foreground convention for colors. The background variable is used for the background color of the component and the foreground variable is used for the text color.

For example, given these CSS variables:

--primary: oklch(0.208 0.042 265.755);
--primary-foreground: oklch(0.984 0.003 247.858);

The background color will be var(--primary) and the foreground color will be var(--primary-foreground):

<div class="bg-primary text-primary-foreground">Hello</div>

Generated CSS Structure

The init command generates the full CSS structure in your global CSS file. The exact oklch values depend on the chosen base color (slate, gray, zinc, neutral, stone). The generated file includes:

  1. TailwindCSS import and tw-animate-css animation library
  2. Dark mode custom variant: @custom-variant dark (&:is(.dark *))
  3. :root CSS variables for light mode colors
  4. .dark CSS variables for dark mode colors
  5. @theme inline block mapping CSS variables to TailwindCSS v4 utilities
  6. @layer base block for default border and background styles

Available CSS Variables

The following variables are available (values shown are for the slate base color):

VariablePurpose
--background / --foregroundPage background and text
--card / --card-foregroundCard component colors
--popover / --popover-foregroundPopover/dropdown colors
--primary / --primary-foregroundPrimary action colors
--secondary / --secondary-foregroundSecondary action colors
--muted / --muted-foregroundMuted/subtle content
--accent / --accent-foregroundAccent/highlight colors
--destructiveDestructive action color
--borderBorder color
--inputInput border color
--ringFocus ring color
--chart-1 through --chart-5Chart colors
--sidebar-*Sidebar-specific variants
--radiusBase border radius

TailwindCSS v4 Theme Mapping

The init command also generates a @theme inline block required by TailwindCSS v4 to map CSS variables to Tailwind utility classes (e.g., bg-primary, text-foreground, border-border):

@theme inline {
  --radius-sm: calc(var(--radius) - 4px);
  --radius-md: calc(var(--radius) - 2px);
  --radius-lg: var(--radius);
  --radius-xl: calc(var(--radius) + 4px);
  --color-background: var(--background);
  --color-foreground: var(--foreground);
  --color-primary: var(--primary);
  --color-primary-foreground: var(--primary-foreground);
  /* ... maps all CSS variables to Tailwind color utilities */
}

@layer base {
  * {
    @apply border-border outline-ring/50;
  }
  body {
    @apply bg-background text-foreground;
  }
}

Dark Mode

Install mode-watcher

pnpm i mode-watcher

Add the ModeWatcher Component

Import the ModeWatcher component and use it in your root layout:

<script lang="ts">
  import { ModeWatcher } from "mode-watcher";
  let { children } = $props();
</script>

<ModeWatcher />
{@render children?.()}

Add a Mode Toggle

Simple Toggle Button

<script lang="ts">
  import SunIcon from "@lucide/svelte/icons/sun";
  import MoonIcon from "@lucide/svelte/icons/moon";
  import { toggleMode } from "mode-watcher";
  import { Button } from "$lib/components/ui/button";
</script>

<Button onclick={toggleMode} variant="outline" size="icon">
  <SunIcon class="h-[1.2rem] w-[1.2rem] scale-100 rotate-0 !transition-all dark:scale-0 dark:-rotate-90" />
  <MoonIcon class="absolute h-[1.2rem] w-[1.2rem] scale-0 rotate-90 !transition-all dark:scale-100 dark:rotate-0" />
  <span class="sr-only">Toggle theme</span>
</Button>

Dropdown Menu Toggle

<script lang="ts">
  import SunIcon from "@lucide/svelte/icons/sun";
  import MoonIcon from "@lucide/svelte/icons/moon";
  import { resetMode, setMode } from "mode-watcher";
  import {
    DropdownMenu,
    DropdownMenuContent,
    DropdownMenuItem,
    DropdownMenuTrigger
  } from "$lib/components/ui/dropdown-menu";
  import { buttonVariants } from "$lib/components/ui/button";
</script>

<DropdownMenu>
  <DropdownMenuTrigger class={buttonVariants({ variant: "outline", size: "icon" })}>
    <SunIcon class="h-[1.2rem] w-[1.2rem] scale-100 rotate-0 !transition-all dark:scale-0 dark:-rotate-90" />
    <MoonIcon class="absolute h-[1.2rem] w-[1.2rem] scale-0 rotate-90 !transition-all dark:scale-100 dark:rotate-0" />
    <span class="sr-only">Toggle theme</span>
  </DropdownMenuTrigger>
  <DropdownMenuContent align="end">
    <DropdownMenuItem onclick={() => setMode("light")}>Light</DropdownMenuItem>
    <DropdownMenuItem onclick={() => setMode("dark")}>Dark</DropdownMenuItem>
    <DropdownMenuItem onclick={() => resetMode()}>System</DropdownMenuItem>
  </DropdownMenuContent>
</DropdownMenu>

Rules

This skill includes the following rules:

[Component Maintenance]

  • Rule: component-maintenance
  • Description: Guidelines for maintaining shadcn components to ensure future update compatibility

[Component Usage Best Practices]

  • Rule: component-usage
  • Description: Best practices for using shadcn components effectively with their options

[Component Imports]

  • Rule: component-imports
  • Description: Best practices for importing shadcn-svelte components using folder paths for maximum compatibility

[CLI Usage]

  • Rule: cli-usage
  • Description: Always use CLI commands for installation, initialization, and adding components - never manually create config files

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.45%
按下载量换算86

Claude

31.57%
按下载量换算83

Cursor

18.97%
按下载量换算50

Gemini CLI

10.34%
按下载量换算27

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills