Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计通过

flyonuiflyonui 搜索

Agent Skill

flyonui 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

210

周安装

9

GitHub Stars

3

下载量

73
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/peixotorms/odinlayer-skills --skill flyonui

简介

用于查找、检索和筛选相关信息。

  • 适合在关键词搜索或线索定位任务中使用。
  • 可结合来源仓库 README 核验具体用法。
  • 安装命令:npx skills add https://github.com/peixotorms/odinlayer-skills --skill flyonui。
  • 建议确认维护状态及是否涉及敏感数据访问。

SKILL.md

FlyonUI

1. Overview

FlyonUI is a Tailwind CSS component library with two layers:

  1. CSS Components (49 files) — Semantic class names like DaisyUI, providing pre-styled components
  2. JS Plugins (24 plugins) — Optional interactive behavior for components that need JavaScript (accordion, dropdown, tabs, carousel, etc.)

All FlyonUI files are available through the frontend-components MCP server under the flyonui framework.

2. Installation

npm install flyonui

Tailwind CSS v4

@import "tailwindcss";
@plugin "flyonui";

Tailwind CSS v3

// tailwind.config.js
module.exports = {
  plugins: [require("flyonui")],
}

JS Plugins (optional)

<!-- Include FlyonUI JS for interactive components -->
<script src="./node_modules/flyonui/flyonui.js"></script>

Or import specific plugins:

import "flyonui/accordion";
import "flyonui/dropdown";
import "flyonui/tabs";

3. MCP Workflow

3.1 Browse Components

# See all CSS components and JS plugins
list_components(framework: "flyonui")

# CSS components only
list_components(framework: "flyonui", category: "css")

# JS plugins only
list_components(framework: "flyonui", category: "plugins")

3.2 Get Component CSS

# Get CSS source for a component
get_component(framework: "flyonui", category: "css", component_type: "all", variant: "button")
get_component(framework: "flyonui", category: "css", component_type: "all", variant: "card")
get_component(framework: "flyonui", category: "css", component_type: "all", variant: "modal")

3.3 Get JS Plugin Source

# Get plugin implementation
get_component(framework: "flyonui", category: "plugins", component_type: "accordion", variant: "index")
get_component(framework: "flyonui", category: "plugins", component_type: "dropdown", variant: "index")

# Get plugin types
get_component(framework: "flyonui", category: "plugins", component_type: "accordion", variant: "types")

# Get plugin variant CSS
get_component(framework: "flyonui", category: "plugins", component_type: "dropdown", variant: "variants")

3.4 Search

search_components(query: "accordion", framework: "flyonui")
search_components(query: "select", framework: "flyonui")

4. CSS Components

4.1 Component Classes

FlyonUI follows the same naming convention as DaisyUI. Base class + modifiers:

ComponentBase ClassColor ExampleSize Example
Buttonbtnbtn-primarybtn-sm
Cardcard
Badgebadgebadge-primarybadge-sm
Alertalertalert-info
Inputinputinput-sm
Selectselectselect-sm
Checkboxcheckboxcheckbox-primarycheckbox-sm
Radioradioradio-primaryradio-sm
Toggleswitchesswitch-primaryswitch-sm
Tabletable
Tabtab
Menumenu
Modalmodal
Navbarnavbar
Drawerdrawer
Dropdowndropdown
Tooltiptooltip
Progressprogressprogress-primary
Loadingloading
Dividerdivider
Breadcrumbsbreadcrumbs
Pagination
Avataravatar
Indicatorindicator
Maskmask
Stackstack
Statstat
Skeletonskeleton
Timelinetimeline
Kbdkbd
Linklinklink-primary
Labellabel
Collapsecollapse
Carouselcarousel
Diffdiff
Filterfilter
Footerfooter

4.2 Color System

FlyonUI uses semantic colors matching Tailwind CSS theme:

ColorUsage
primaryPrimary brand actions
secondarySecondary actions
accentHighlights and accents
neutralDefault/neutral elements
infoInformational states
successSuccess states
warningWarning states
errorError/danger states

4.3 Size System

SizeModifier
Extra small-xs
Small-sm
Medium (default)-md
Large-lg
Extra large-xl

5. JS Plugins

5.1 Available Plugins

PluginPurpose
accordionExpandable/collapsible sections
carouselImage/content slider
collapseSingle collapsible element
comboboxSearchable select with filtering
copy-markupCopy to clipboard functionality
datatableInteractive data tables
dropdownDropdown menus
file-uploadFile upload with drag-and-drop
input-numberNumber input with increment/decrement
overlayModal/overlay management
pin-inputPIN/OTP input fields
range-sliderRange slider with labels
remove-elementRemove/dismiss elements
scrollspyScroll-based navigation highlighting
selectEnhanced select dropdowns
stepperMulti-step wizard
strong-passwordPassword strength indicator
tabsTab navigation
toggle-countCounter toggle
toggle-passwordShow/hide password
tooltipInteractive tooltips
tree-viewHierarchical tree navigation

5.2 Plugin Initialization

Plugins auto-initialize when the JS is loaded. They use data attributes for configuration:

<!-- Accordion -->
<div class="accordion" id="my-accordion">
  <div class="accordion-item active">
    <button class="accordion-toggle">Section 1</button>
    <div class="accordion-content">
      <p>Content 1</p>
    </div>
  </div>
  <div class="accordion-item">
    <button class="accordion-toggle">Section 2</button>
    <div class="accordion-content">
      <p>Content 2</p>
    </div>
  </div>
</div>
<!-- Tabs -->
<div class="tabs" data-tabs>
  <button class="tab tab-active" data-tab="#tab1">Tab 1</button>
  <button class="tab" data-tab="#tab2">Tab 2</button>
</div>
<div id="tab1">Content 1</div>
<div id="tab2" class="hidden">Content 2</div>
<!-- Dropdown -->
<div class="dropdown" data-dropdown>
  <button class="btn dropdown-toggle">Dropdown</button>
  <ul class="dropdown-menu">
    <li><a class="dropdown-item">Item 1</a></li>
    <li><a class="dropdown-item">Item 2</a></li>
  </ul>
</div>

5.3 Plugin Architecture

Each plugin follows this structure:

  • index.ts — Main plugin logic and class definition
  • types.ts — TypeScript type definitions
  • interfaces.ts — Interface definitions
  • variants.css — Optional CSS variants for the plugin

Fetch plugin source to understand initialization options, events, and API methods:

get_component(framework: "flyonui", category: "plugins", component_type: "accordion", variant: "index")

6. Theming

6.1 Built-in Themes

FlyonUI supports themes through data-theme:

<html data-theme="light">
<html data-theme="dark">

6.2 Custom Themes

Similar to DaisyUI, override CSS custom properties:

[data-theme="custom"] {
  --color-primary: oklch(65% 0.25 260);
  --color-secondary: oklch(70% 0.2 180);
  /* ... other color variables */
}

6.3 Dark Mode

FlyonUI supports both data-theme switching and Tailwind's dark: class strategy.

7. FlyonUI vs DaisyUI

FeatureFlyonUIDaisyUI
CSS Components4965+
JS Plugins24 interactive pluginsNone (CSS only)
Class namingSame conventionBase convention
Themingdata-theme + CSS varsdata-theme + CSS vars
Interactive componentsBuilt-in JS pluginsRequires external JS
File uploadBuilt-in pluginNot included
Data tablesBuilt-in pluginNot included
Tree viewBuilt-in pluginNot included
ComboboxBuilt-in pluginNot included

7.1 When to Use FlyonUI Over DaisyUI

  • You need interactive components (datatables, combobox, tree-view, file-upload)
  • You want a JS plugin system alongside CSS components
  • You need stepper/wizard functionality
  • You need copy-to-clipboard, password strength, or pin input

7.2 When to Use DaisyUI Over FlyonUI

  • You need CSS-only components with no JavaScript
  • You want the largest component catalog (65+ vs 49)
  • You need more built-in themes (30+)
  • You're already using a JS framework (React, Vue) for interactivity

8. Common Patterns

8.1 Card with Actions

<div class="card">
  <div class="card-body">
    <h5 class="card-title">Card Title</h5>
    <p>Card content goes here.</p>
    <div class="card-actions justify-end">
      <button class="btn btn-primary">Action</button>
    </div>
  </div>
</div>

8.2 Form Group

<div class="form-control">
  <label class="label">
    <span class="label-text">Email</span>
  </label>
  <input type="email" class="input" placeholder="email@example.com" />
</div>

8.3 Modal with Overlay Plugin

<button class="btn" data-overlay="#my-modal">Open Modal</button>
<div id="my-modal" class="modal overlay hidden">
  <div class="modal-box">
    <h3 class="text-lg font-bold">Modal Title</h3>
    <p>Modal content</p>
    <div class="modal-action">
      <button class="btn" data-overlay-close="#my-modal">Close</button>
    </div>
  </div>
</div>

9. Workflow Summary

StepAction
1. Identify componentWhat UI element is needed?
2. Check CSS componentget_component(framework: "flyonui", category: "css",...)
3. Check JS pluginDoes it need interactivity? Check list_components(category: "plugins")
4. Get plugin sourceget_component(framework: "flyonui", category: "plugins",...)
5. Apply classesUse base class + modifiers
6. Add data attributesFor JS plugin initialization
7. ThemeSet data-theme or define custom CSS variables

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

39.47%
按下载量换算29

Claude

31.2%
按下载量换算23

Cursor

17.45%
按下载量换算13

Gemini CLI

9.73%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

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

安装前确认

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

来源信息

继续浏览同类 Skills