Token导航 LogoToken导航TokenDH.com
前端设计操作浏览器github未标认证来源可访问许可证需确认审计提醒

daisyui-5大酒 5 号

Agent Skill

daisyui-5 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,915

周安装

79

GitHub Stars

公开资料未说明

下载量

626
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/nenorrell/skills --skill daisyui-5

简介

用于处理GitHub仓库和代码协作信息。

  • 适合围绕仓库状态、代码变更进行整理。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 可结合来源仓库和原始README核验具体用法。
  • 安装前建议确认权限范围和维护状态。daisyui-5 属于前端设计类 Skill,可作为该场景下的辅助能力补充。
  • 注意是否会触发联网、命令执行或文件读写。

SKILL.md

daisyUI 5

CSS component library for Tailwind CSS 4. Provides semantic class names for common UI components.

Install

  1. Requires Tailwind CSS 4. No tailwind.config.js (deprecated in v4).
  2. Install: npm i -D daisyui@latest
  3. CSS file:
@import "tailwindcss";
@plugin "daisyui";
  1. CDN alternative:
<link href="https://cdn.jsdelivr.net/npm/daisyui@5" rel="stylesheet" type="text/css" />
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>

Usage Rules

  1. Style elements by combining: component class + part classes + modifier classes
  2. Customize with Tailwind utility classes when daisyUI classes aren't sufficient (e.g. btn px-10)
  3. Use ! suffix on utilities as last resort for specificity (e.g. btn bg-red-500!)
  4. If a component doesn't exist in daisyUI, build it with Tailwind utilities
  5. Use Tailwind responsive prefixes for flex/grid layouts
  6. Only use daisyUI class names or Tailwind utility classes — no custom CSS
  7. Use https://picsum.photos/{w}/{h} for placeholder images
  8. Don't add custom fonts unless necessary
  9. Don't add bg-base-100 text-base-content to body unless necessary
  10. Follow Refactoring UI best practices for design decisions

Class Name Categories

  • component: Required component class
  • part: Child part of a component
  • style: Sets specific style
  • behavior: Changes behavior
  • color: Sets specific color
  • size: Sets specific size
  • placement/direction: Sets position/direction
  • modifier: Modifies component
  • variant: Conditional prefix (variant:utility-class)

Colors

Semantic Color Names

ColorPurpose
primary / primary-contentMain brand color / foreground on primary
secondary / secondary-contentSecondary brand color / foreground
accent / accent-contentAccent brand color / foreground
neutral / neutral-contentNon-saturated UI / foreground
base-100/200/300 / base-contentSurface colors (light to dark) / foreground
info / info-contentInformative messages / foreground
success / success-contentSuccess messages / foreground
warning / warning-contentWarning messages / foreground
error / error-contentError messages / foreground

Color Rules

  1. Use daisyUI color names in Tailwind utilities: bg-primary, text-base-content
  2. Colors change automatically per theme — no dark: prefix needed
  3. Avoid Tailwind color names (e.g. text-gray-800) — they don't adapt to themes
  4. Use base-* colors for page majority, primary for important elements
  5. *-content colors must contrast well against their associated colors

Config

@plugin "daisyui"; /* no config */

@plugin "daisyui" {
  themes: light --default, dark --prefersdark;
  root: ":root";
  include: ;
  exclude: ;
  prefix: ;
  logs: true;
}

Config options: themes (enable/set default), root, include/exclude (components), prefix (e.g. daisy-), logs.

Custom Themes

@plugin "daisyui/theme" {
  name: "mytheme";
  default: true;
  prefersdark: false;
  color-scheme: light;
  --color-base-100: oklch(98% 0.02 240);
  --color-base-200: oklch(95% 0.03 240);
  --color-base-300: oklch(92% 0.04 240);
  --color-base-content: oklch(20% 0.05 240);
  --color-primary: oklch(55% 0.3 240);
  --color-primary-content: oklch(98% 0.01 240);
  --color-secondary: oklch(70% 0.25 200);
  --color-secondary-content: oklch(98% 0.01 200);
  --color-accent: oklch(65% 0.25 160);
  --color-accent-content: oklch(98% 0.01 160);
  --color-neutral: oklch(50% 0.05 240);
  --color-neutral-content: oklch(98% 0.01 240);
  --color-info: oklch(70% 0.2 220);
  --color-info-content: oklch(98% 0.01 220);
  --color-success: oklch(65% 0.25 140);
  --color-success-content: oklch(98% 0.01 140);
  --color-warning: oklch(80% 0.25 80);
  --color-warning-content: oklch(20% 0.05 80);
  --color-error: oklch(65% 0.3 30);
  --color-error-content: oklch(98% 0.01 30);
  --radius-selector: 1rem;
  --radius-field: 0.25rem;
  --radius-box: 0.5rem;
  --size-selector: 0.25rem;
  --size-field: 0.25rem;
  --border: 1px;
  --depth: 1;
  --noise: 0;
}

All CSS variables above are required. Colors can be OKLCH, hex, or other formats.

Creating DaisyUI Components

Follow this workflow when creating or extending React components that wrap daisyUI. See references/creating-components.md for detailed patterns, compound component examples, and test templates.

1. Resolve the components directory

Check AGENTS.md or CLAUDE.md for a DAISY_COMPONENTS_DIR variable. If not found, use src/components/daisy.

2. Ensure foundational files exist

Before creating any component, verify the project has the required infrastructure. If any are missing, create them from the bundled scripts/ templates. See references/creating-components.md for the full bootstrapping checklist and file contents.

Required files:

  • <DAISY_COMPONENTS_DIR>/daisy-meta.ts — from bundled scripts/daisy-meta.ts
  • generators/daisy/generate-daisy-safelist.ts — from bundled scripts/generate-daisy-safelist.ts (update the import path to point to daisy-meta.ts)
  • src/app/styles/daisy.css — must import daisyUI plugin and the generated safelist
  • package.json script "generate:safelist" — must run the generator
  • The daisy.css file must be imported in the root layout or global CSS entry point

3. Register in daisy-meta.ts

Add the new component's capabilities to COMPONENT_CAPABILITIES in <DAISY_COMPONENTS_DIR>/daisy-meta.ts. Reference the daisyUI docs (see Component Reference below) for which modifiers it supports.

4. Create the component

  • Follow patterns in existing <DAISY_COMPONENTS_DIR>/daisy* files
  • Prefer compound components for multi-part daisyUI components (card, modal, dropdown, etc.)
  • Each sub-component in a compound component gets its own file
  • See references/creating-components.md for compound component structure

5. Generate safelist

npm run generate:safelist

Generates src/app/styles/daisy-safelist.css.

6. Add tests

Use the project's test framework (check package.json for jest/vitest). Default to Jest + React Testing Library. Test: rendering, prop variations (colors, sizes, variants), compound component composition, and accessibility.

7. Extend the safelist generator

If the new component introduces a capability modifier not yet handled in generate-daisy-safelist.ts, update buildClassList() to iterate over it.

Component Reference

Component docs are split by category. Read only the relevant file:

  • Layout components: See references/layout.md drawer, navbar, footer, hero, dock, divider, indicator, join, stack, fab
  • Data display: See references/data-display.md card, list, table, stat, badge, avatar, chat, timeline, countdown, diff, carousel, hover-3d, hover-gallery, text-rotate
  • Input components: See references/input.md button, input, textarea, select, checkbox, radio, toggle, range, rating, file-input, filter, fieldset, label, validator, calendar
  • Feedback & overlay: See references/feedback.md alert, modal, toast, loading, skeleton, progress, radial-progress, status, steps, swap, tab
  • Navigation & chrome: See references/navigation.md accordion, collapse, breadcrumbs, dropdown, tooltip, link, kbd, menu, mask, mockup-browser, mockup-code, mockup-phone, mockup-window, pagination, theme-controller

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.9%
按下载量换算218

Claude

28.9%
按下载量换算181

Cursor

19.43%
按下载量换算122

Gemini CLI

10.25%
按下载量换算64

安全审计

Gen Agent Trust Hub

可疑

Socket

可疑

Snyk

通过

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills