Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计提醒

componentcomponent 搜索

Agent Skill

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

总安装

465

周安装

19

GitHub Stars

19

下载量

149
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/maximepodgorski/agent-skills --skill component

简介

component 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果。

  • 它可辅助整理技术组件、匹配 API 文档或提取模块定义,提升信息组织效率。
  • 使用时建议结合具体上下文缩小搜索范围,避免返回无关内容。
  • 安装前建议确认权限范围和维护状态,避免触发不必要的联网或文件操作。
  • component 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Component

Design system component workflow. Figma to production, DS-compliant.

Agent Capabilities

CapabilityUsed ForRequiredFallback
File read/writeSpecs, docs, audit reportsYes
Code search (grep/glob)Token scan, pattern discovery, codebase conventionsYes
Shell/command executionQuality gates (lint, typecheck)RecommendedList commands for user to run
Task/todo trackingShip loop progressRecommendedTrack in spec Progress section
User interactionToken creation approval, stuck escalationYes
Figma MCPDesign context extraction (code, screenshot, hints)RecommendedUser provides spec manually

Fallback rule: If Figma MCP is unavailable, the skill works from text input and codebase analysis. Warn the user and proceed.

Actions

ActionInputOutputReference
spec {name} [figma-link]Component name + optional Figma linkSpec in ds/specs/active/spec.md
`doc {path\name}`File path or component namedoc.md co-located in component folderdoc.md
dev {name} [figma-link]Component name + optional Figma linkImplemented component (ship loop)dev.md
`review {path\figma-link}`File path or Figma linkDS compliance reportreview.md
`spec-review {spec-path\name}`Spec path or component nameMulti-perspective spec reviewspec-review.md
`audit {path\figma-link}`Directory path or Figma linkReport in ds/audits/active/audit.md

Flow

Recommended (new component):
  spec → spec-review → doc → dev → review

Quick (simple component):
  dev {name} [figma-link]

Maintenance (existing component):
  review {path}    or    doc {path}

Spec validation:
  spec-review {spec-path}

System-wide:
  audit {directory}    or    audit {figma-link}

Each action is standalone — usable independently without requiring prior actions.

Philosophy

  • Figma-first: Figma is the primary input. Design context drives structure, API, and implementation.
  • Principles over opinions: Grounded in Atomic Design, BEM, DTCG, WCAG — not arbitrary preferences.
  • Reuse > create: Scan existing tokens, variables, typography BEFORE generating. Never invent.
  • Human-in-the-loop: Never create a new token without user approval.
  • Zero hardcoded values: Every hex, px, hardcoded spacing/color/radius is a CRITICAL violation.
  • Adapt to project: Read CLAUDE.md + codebase. Match the project's naming, not the skill's.
  • Stack-agnostic: Works with React, Vue, Svelte, Angular, Web Components — no hardcoded framework.

Figma Integration

When a Figma link is provided, the skill calls get_design_context from Figma MCP:

Figma link provided?
  │
  ├─ YES → Call get_design_context(fileKey, nodeId)
  │         → Receives: code + screenshot + contextual hints
  │         → Extract: component hierarchy, props, variants, tokens used
  │         → Cross-reference with codebase conventions
  │         → Proceed with enriched context
  │
  └─ NO  → Proceed from codebase / manual input only

Combined failure state:
  Figma MCP unavailable AND no component in codebase AND no spec in ds/specs/active/?
    → Error: "No context available. Provide a Figma link with MCP configured,
       create the component first, or run /component spec {name} with a description."

URL parsing:

  • figma.com/design/:fileKey/:fileName?node-id=:nodeId → convert - to : in nodeId
  • figma.com/design/:fileKey/branch/:branchKey/:fileName → use branchKey as fileKey

Token Scan Protocol

Before any dev or review action, scan the project for existing design tokens:

1. SCAN sources (in order):
   - CSS custom properties (--*)
   - SCSS/LESS variables ($*, @*)
   - Tailwind config (tailwind.config.*)
   - CSS-in-JS theme objects
   - Design token files (tokens.json, *.tokens.*)

2. DETECT naming pattern:
   - Prefix convention (--color-*, --bg-*, $spacing-*)
   - Tier structure (primitive → semantic → component)
   - Categorization (color, spacing, typography, radius, shadow)

3. MATCH Figma values to existing tokens:
   - Color: match hex/rgba to nearest token
   - Spacing: match px values to spacing scale
   - Typography: match font-size/weight/family to type tokens
   - Radius: match border-radius to radius tokens

4. FLAG missing tokens:
   - Value needed but no token exists → ASK user
   - Present options: closest match, create new, custom
   - NEVER create a token without user approval

Action Router

User input
  │
  ├─ "spec", "spec component",
  │  "component spec"                   → Load references/actions/spec.md
  │
  ├─ "doc", "document component",
  │  "component doc"                    → Load references/actions/doc.md
  │
  ├─ "dev", "develop component",
  │  "implement component",
  │  "component dev"                    → Load references/actions/dev.md
  │
  ├─ "review", "review component",
  │  "component review",
  │  "check component"                  → Load references/actions/review.md
  │
  ├─ "spec-review", "spec-review component",
  │  "component spec-review",
  │  "review spec"                      → Load references/actions/spec-review.md
  │
  └─ "audit", "audit component",
     "component audit",
     "audit ds", "audit design system"  → Load references/actions/audit.md

Loading rule: Read the action file BEFORE executing. The action file contains all logic, principles references, and templates needed.

Input detection:

Input contains figma.com URL?
  YES → Extract fileKey + nodeId, call Figma MCP
  NO  → Check if input is a file path (contains / or .)
    YES → Load from codebase
    NO  → Treat as component name, search codebase

Project Structure (in user's project)

ds/
├── specs/
│   ├── active/       ← Current specs (from spec action)
│   ├── shipped/      ← Components delivered
│   └── dropped/      ← Abandoned specs
└── audits/
    ├── active/       ← Current audit findings
    ├── shipped/      ← Fixes applied
    └── dropped/      ← Won't fix

ComponentName/
├── ComponentName.{ext}  (detected from project)
├── doc.md             ← Generated by doc action
├── ComponentName.test.ts
└── index.ts

Principles

Standards that inform every action. Loaded by review and audit for compliance checks.

PrincipleStandardReference
CompositionAtomic Design (Brad Frost)composition.md
NamingBEM (Block Element Modifier)naming.md
TokensDTCG (W3C Design Token Community Group)tokens.md
Props APIComponent API patternsprops-api.md
AccessibilityWCAG 2.1 AAaccessibility.md

Templates

File Templates (generated output files)

TemplateUsed byReference
Component specspecspec.md
Component docdocdoc.md
Audit reportauditaudit-report.md

Output Templates (chat status messages)

TemplateUsed byReference
Spec outputspecspec-output.md
Spec-review outputspec-reviewspec-review-output.md
Doc outputdocdoc-output.md
Dev outputdevdev-output.md
Review outputreviewreview-output.md
Audit outputauditaudit-output.md

Configuration

All behavior is configurable by editing the skill files directly.

What to changeEdit
Action logicreferences/actions/{action}.md
DS principlesreferences/principles/{principle}.md
Output templatesreferences/templates/{template}.md

References

Actions:

Principles:

Templates (files):

Output (chat):

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.58%
按下载量换算49

Claude

31.13%
按下载量换算46

Cursor

19.7%
按下载量换算29

Gemini CLI

8.6%
按下载量换算13

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/maximepodgorski/agent-skills --skill component 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills