Token导航 LogoToken导航TokenDH.com
图像处理操作浏览器github未标认证来源可访问clear审计通过

fluxwing-component-viewerFluxwing 组件查看器

Agent Skill

用于辅助图像生成、图片编辑、视觉素材处理或图像模型工作流。它适合让 Agent 根据文本生成图片、处理背景、整理视觉提示词或调用相关图像工具。使用时需要确认输入图片、版权来源、输出格式和模型限制;涉及人物、品牌、商品或公开展示素材时,应额外核对授权、真实性和内容合规边界。

总安装

6,214

周安装

306

GitHub Stars

14

下载量

2,231
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/jackspace/claudeskillz --skill 'Fluxwing Component Viewer'

简介

用于辅助图像生成和图片编辑工作流。

  • 适合查看和管理视觉组件资源。
  • 需确认输入图片版权、输出格式及模型限制。
  • 安装命令:npx skills add https://github.com/jackspace/claudeskillz --skill 'Fluxwing Component Viewer'。
  • 涉及品牌或人物素材时应核对授权与真实性。

SKILL.md

Fluxwing Component Viewer

View detailed information about a specific uxscii component from any source.

Data Location Rules

READ from (bundled templates - reference only):

  • {SKILL_ROOT}/../uxscii-component-creator/templates/ - 11 component templates
  • {SKILL_ROOT}/../uxscii-screen-scaffolder/templates/ - 2 screen examples (if available)

READ from (project workspace):

  • ./fluxwing/components/ - Your created components
  • ./fluxwing/library/ - Customized template copies
  • ./fluxwing/screens/ - Your created screens

NEVER write - this is a read-only viewer!

Your Task

Display comprehensive details about a single uxscii component, including metadata, ASCII template preview, and context-appropriate actions.

Component Lookup Process

1. Parse Component Name

  • Extract component name from user request
  • If no name provided: Ask "Which component would you like to view?"
  • Normalize name to lowercase with hyphens

2. Search Priority Order (Stop at First Match)

Search these locations in order and stop at the first match:

  1. Project Components: ./fluxwing/components/[name].uxm

- User/agent-created custom components - Fully editable - Tag as: "Your Component"

  1. Project Library: ./fluxwing/library/[name].uxm

- Customized copies of bundled templates - Fully editable - Tag as: "Your Library"

  1. Bundled Templates: {SKILL_ROOT}/../uxscii-component-creator/templates/[name].uxm

- Read-only reference templates - Must be copied to edit - Tag as: "Bundled Template"

Important: Stop searching after first match. If found in bundled templates, check if it also exists in user's project and add a note: "💡 You also have a customized version in./fluxwing/library/"

3. Read Component Files

For the matched component, read both files:

  • [name].uxm - JSON metadata
  • [name].md - ASCII template

Display Format

Concise View (Default)

Present component information in a clean, scannable format:

📄 PRIMARY-BUTTON
─────────────────────────────────────────────────────
📦 Source: Bundled Template
📍 Location: Component Creator Templates
⏱️  Modified: 2024-10-11 10:30:00
🔖 Version: 1.0.0

Description:
Standard clickable button with hover, focus, and disabled states

Component Details:
• Type: button
• Props: text (string), variant (string), disabled (boolean)
• States: default, hover, focus, disabled
• Accessibility: ✓ Role (button), ✓ Focusable, ✓ Keyboard (Space, Enter)

ASCII Template Preview (first 20 lines):

Default State:
▓▓▓▓▓▓▓▓▓▓▓▓
▓ {{text}} ▓
▓▓▓▓▓▓▓▓▓▓▓▓

Hover State:
░▓▓▓▓▓▓▓▓▓▓▓░
░▓ {{text}} ▓░
░▓▓▓▓▓▓▓▓▓▓░

Disabled State:
┌ ─ ─ ─ ─ ─┐
│ {{text}} │
└ ─ ─ ─ ─ ─┘

[... 1 more state]

Template has 4 states total. View full template?
─────────────────────────────────────────────────────

Format Guidelines

Header Section:

  • Component name in CAPS
  • Emoji indicators:

- 📦 = Bundled Template - ✏️ = Your Library - 🎨 = Your Component

  • Full file path for clarity
  • Last modified timestamp (if available)
  • Version from metadata

Description:

  • Use the metadata.description field from.uxm file
  • Keep it concise (1-2 lines)

Component Details:

  • Type: Direct from.uxm type field
  • Props: List prop names with types in parentheses

- Format: propName (type) - Example: text (string), disabled (boolean)

  • States: Comma-separated list of state names
  • Accessibility: Show checkmarks for present features

- Role, Focusable, Keyboard shortcuts, ARIA labels

ASCII Template Preview:

  • Show first 20 lines by default
  • If template has multiple states, show state labels
  • If template exceeds 20 lines, add: [... N more states/lines]
  • Preserve exact spacing and box-drawing characters
  • Show variables as {{variableName}}

Truncation Logic

If .md template exceeds 20 lines:

  1. Count total states/sections in template
  2. Show first 2-3 states completely
  3. Add summary line: [... N more states]
  4. Offer: "View full template?" as interactive option

Interactive Options

After displaying the component, offer context-appropriate actions:

For Bundled Templates (read-only)

What would you like to do?

1️⃣ Copy to project library (makes it editable)
2️⃣ View full template file (all states)
3️⃣ View full metadata (complete .uxm)
4️⃣ Browse all components

Action Details:

  • Copy: Copy both.uxm and.md to ./fluxwing/library/
  • View full template: Display complete.md file (no truncation)
  • View full metadata: Display complete.uxm JSON
  • Browse: Return to library browser

For Project Files (./fluxwing/library/ or./fluxwing/components/)

What would you like to do?

1️⃣ Edit component (modify .uxm and .md)
2️⃣ View full template file (all states)
3️⃣ View full metadata (complete .uxm)
4️⃣ Delete component (manual: remove files from filesystem)
5️⃣ Browse all components

Action Details:

  • Edit: Open both.uxm and.md for editing
  • Delete: Don't automatically delete - instruct user: To delete this component, remove these files from your filesystem: •./fluxwing/components/[name].uxm •./fluxwing/components/[name].md

Error Handling

No Component Name Provided

Which component would you like to view?

Example:
  "Show me primary-button"
  "View details for user-card"

View all available components: Ask me to "show me all components"

Component Not Found

✗ Component '[name]' not found.

Searched in:
- ./fluxwing/components/
- ./fluxwing/library/
- Bundled templates

Available components:
[List first 10 components found]

Did you mean one of these?
- primary-button
- submit-button
- user-card

Fuzzy search: If component name is close to an existing component, suggest it:

✗ Component 'primry-button' not found.

Did you mean 'primary-button'?

File Read Errors

✗ Found component but couldn't read files.

Location: ./fluxwing/components/[name].uxm
Error: [specific error message]

Please check file permissions and try again.

Example Interactions

Example 1: View Bundled Template

User: Show me the primary-button

Skill: 📄 PRIMARY-BUTTON
─────────────────────────────────────────────────────
📦 Source: Bundled Template
📍 Location: Component Creator Templates

Description:
Standard clickable button with hover, focus, and disabled states

Component Details:
• Type: button
• Props: text (string), variant (string), disabled (boolean)
• States: default, hover, focus, disabled
• Accessibility: ✓ Full support

[ASCII preview shown...]

What would you like to do?
1️⃣ Copy to project library
2️⃣ View full template
3️⃣ View metadata
4️⃣ Browse all components

Example 2: View User Component

User: What's in my submit-button component?

Skill: 📄 SUBMIT-BUTTON
─────────────────────────────────────────────────────
🎨 Source: Your Component
📍 Location: ./fluxwing/components/submit-button.uxm
⏱️  Modified: 2024-10-15 14:23:00

Description:
Custom submit button for forms

Component Details:
• Type: button
• Props: text (string)
• States: default
• Accessibility: ✓ Basic support

[ASCII preview shown...]

💡 Tip: Add more states with "expand submit-button with hover and disabled"

Resources

  • Core Concepts: See {SKILL_ROOT}/docs/02-core-concepts.md for component fundamentals

You're helping users understand their uxscii components in detail!

适合场景

01

文本生成图片

02

图片风格化

03

产品图和创意图

04

需要 FLUX 模型时

能力概览

能力 1

调用 FLUX 图像模型

能力 2

支持文本生图和图像改写

能力 3

覆盖 LoRA 或风格适配

能力 4

适合创意视觉生成

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

平台分布

Claude Code

26.77%
按下载量换算597

windsurf

25.16%
按下载量换算561

OpenCode

20.07%
按下载量换算448

Codex

14.2%
按下载量换算317

Antigravity

7.17%
按下载量换算160

Gemini CLI

3.52%
按下载量换算79

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源字段存在多来源差异,先按来源优先级自动处理,无法消解时进入异常复核队列。

来源信息

继续浏览同类 Skills