Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问clear审计通过

frontend-component前端组件

Agent Skill

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

总安装

306

周安装

13

GitHub Stars

161

下载量

107
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/alekspetrov/navigator --skill frontend-component

简介

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。

  • 适合生成或审查 React、Next.js、Vue、Tailwind、CSS 等代码,整理组件结构或定位布局问题。
  • 需结合项目现有设计系统、路由和构建方式使用,避免生成孤立片段。
  • 涉及页面改动时应配合本地预览和构建检查确认视觉效果。
  • frontend-component 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Frontend Component Generator

Generate production-ready React/Vue components with TypeScript, tests, and styles following modern best practices.

When to Invoke

Auto-invoke when user mentions:

  • "Create a component"
  • "Add a component"
  • "New component"
  • "Build a component"
  • "Generate component for [feature]"

What This Does

  1. Generates component file with TypeScript and props interface
  2. Creates test file with React Testing Library
  3. Generates CSS module for styling
  4. Creates barrel export (index.ts)
  5. Validates naming conventions
  6. Follows project patterns

Execution Steps

Step 1: Gather Component Requirements

Ask user for component details:

Component name: [PascalCase name, e.g., UserProfile]
Component type:
  - simple (basic functional component)
  - with-hooks (useState, useEffect, etc.)
  - container (data fetching component)

Styling approach:
  - css-modules (default)
  - styled-components
  - tailwind

Props needed: [Optional: describe expected props]

Validate component name:

  • Use predefined function: functions/name_validator.py
  • Ensure PascalCase format
  • No reserved words
  • Descriptive and specific

Step 1.5: Confirm Component Design (ToM Checkpoint) [EXECUTE]

IMPORTANT: This step MUST be executed for complex components.

Before generating files, confirm interpretation with user.

Display verification:

I understood you want:
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Component: {NAME}
Type: {TYPE} (inferred because: {REASON})
Location: src/components/{NAME}/
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Detected patterns from your codebase:
- Styling: {CSS_APPROACH} (found {EVIDENCE})
- Testing: {TEST_LIBRARY} (found in package.json)
- Similar component: {EXISTING_COMPONENT} at {PATH}

Props I'll generate:
{PROPS_PREVIEW}

Proceed with generation? [Y/n]

Skip verification if (HIGH-STAKES ONLY mode):

  • Simple presentational component (no hooks, no data fetching)
  • User explicitly said "quick", "just do it", or "skip confirmation"
  • Component name and type are unambiguous
  • No complex props structure

Always verify if:

  • Container component with data fetching
  • Complex props interface (5+ props)
  • Hooks component with side effects
  • Component name similar to existing component
  • User is new to codebase (no profile history)

Step 2: Generate Props Interface

Based on component type and requirements:

Use predefined function: functions/props_interface_generator.py

# Generates TypeScript interface based on component requirements
python3 functions/props_interface_generator.py \
  --name "UserProfile" \
  --props "userId:string,onUpdate:function,isActive:boolean"

Output:

interface UserProfileProps {
  userId: string;
  onUpdate?: () => void;
  isActive?: boolean;
  children?: React.ReactNode;
  className?: string;
}

Step 3: Generate Component File

Use appropriate template based on type:

Simple component:

Use template: templates/component-simple-template.tsx

Component with hooks:

Use template: templates/component-with-hooks-template.tsx

Container component:

Use template: templates/component-container-template.tsx

Use predefined function: functions/component_generator.py

python3 functions/component_generator.py \
  --name "UserProfile" \
  --type "simple" \
  --props-interface "UserProfileProps" \
  --template "templates/component-simple-template.tsx" \
  --output "src/components/UserProfile/UserProfile.tsx"

Template substitutions:

  • ${COMPONENT_NAME} → Component name (PascalCase)
  • ${PROPS_INTERFACE} → Generated props interface
  • ${STYLE_IMPORT} → CSS module import
  • ${DESCRIPTION} → Brief component description

Step 4: Generate Test File

Use predefined function: functions/test_generator.py

python3 functions/test_generator.py \
  --component-name "UserProfile" \
  --component-path "src/components/UserProfile/UserProfile.tsx" \
  --template "templates/test-template.test.tsx" \
  --output "src/components/UserProfile/UserProfile.test.tsx"

Test template includes:

  • Basic rendering test
  • Props validation test
  • Event handler tests (if applicable)
  • Accessibility tests

Template substitutions:

  • ${COMPONENT_NAME} → Component name
  • ${IMPORT_PATH} → Relative import path
  • ${TEST_CASES} → Generated test cases based on props

Step 5: Generate Style File

Use predefined function: functions/style_generator.py

python3 functions/style_generator.py \
  --name "UserProfile" \
  --approach "css-modules" \
  --template "templates/style-template.module.css" \
  --output "src/components/UserProfile/UserProfile.module.css"

CSS Modules template:

.container {
  /* Component wrapper styles */
}

.title {
  /* Title styles */
}

/* Add more classes as needed */

Styled Components alternative:

// Generated if --approach "styled-components"
import styled from 'styled-components';

export const Container = styled.div`
  /* Component wrapper styles */
`;

export const Title = styled.h2`
  /* Title styles */
`;

Step 6: Generate Barrel Export

Create index.ts for clean imports:

Write(
  file_path: "src/components/UserProfile/index.ts",
  content: "export { UserProfile } from './UserProfile';\nexport type { UserProfileProps } from './UserProfile';\n"
)

Allows usage:

import { UserProfile } from '@/components/UserProfile';

Step 7: Show Component Summary

Display generated files and usage:

✅ Component Created: UserProfile

Structure:
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
📁 src/components/UserProfile/
   ├── UserProfile.tsx         (Component)
   ├── UserProfile.test.tsx    (Tests)
   ├── UserProfile.module.css  (Styles)
   └── index.ts                (Exports)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Props Interface:
interface UserProfileProps {
  userId: string;
  onUpdate?: () => void;
  isActive?: boolean;
}

Usage:
import { UserProfile } from '@/components/UserProfile';

<UserProfile
  userId="123"
  onUpdate={() => console.log('Updated')}
  isActive={true}
/>

Next Steps:
1. Customize component implementation
2. Run tests: npm test UserProfile
3. Import and use in your feature

Predefined Functions

1. name_validator.py

Validates component naming conventions.

Usage:

python3 functions/name_validator.py --name "UserProfile"

Checks:

  • PascalCase format
  • Not a reserved word (e.g., Component, Element, etc.)
  • Descriptive (length > 2 chars)
  • No special characters

Returns: Valid name or error message


2. props_interface_generator.py

Generates TypeScript props interface from user input.

Usage:

python3 functions/props_interface_generator.py \
  --name "UserProfile" \
  --props "userId:string,onUpdate:function,isActive:boolean"

Supported types:

  • string, number, boolean
  • function (becomes () => void)
  • array (becomes any[])
  • object (becomes Record<string, any>)
  • react-node (becomes React.ReactNode)

Returns: TypeScript interface string


3. component_generator.py

Generates component file from template with substitutions.

Usage:

python3 functions/component_generator.py \
  --name "UserProfile" \
  --type "simple" \
  --props-interface "UserProfileProps" \
  --template "templates/component-simple-template.tsx" \
  --output "src/components/UserProfile/UserProfile.tsx"

Parameters:

  • --name: Component name (PascalCase)
  • --type: Component type (simple/with-hooks/container)
  • --props-interface: Props interface name
  • --template: Template file path
  • --output: Output file path

Returns: Generated component code


4. test_generator.py

Generates test file with React Testing Library.

Usage:

python3 functions/test_generator.py \
  --component-name "UserProfile" \
  --component-path "src/components/UserProfile/UserProfile.tsx" \
  --template "templates/test-template.test.tsx" \
  --output "src/components/UserProfile/UserProfile.test.tsx"

Generates tests for:

  • Component rendering
  • Props validation
  • Event handlers
  • Accessibility attributes

Returns: Generated test code


5. style_generator.py

Generates style file (CSS Modules or Styled Components).

Usage:

python3 functions/style_generator.py \
  --name "UserProfile" \
  --approach "css-modules" \
  --template "templates/style-template.module.css" \
  --output "src/components/UserProfile/UserProfile.module.css"

Supported approaches:

  • css-modules (default)
  • styled-components
  • tailwind (generates className utilities)

Returns: Generated style code


Templates

component-simple-template.tsx

Basic functional component template.

Placeholders:

  • ${COMPONENT_NAME} - Component name
  • ${PROPS_INTERFACE} - Props interface definition
  • ${STYLE_IMPORT} - CSS import statement
  • ${DESCRIPTION} - Component description

component-with-hooks-template.tsx

Component template with useState, useEffect examples.

Additional placeholders:

  • ${HOOKS} - Hook declarations
  • ${HANDLERS} - Event handler functions

component-container-template.tsx

Container component template with data fetching.

Additional placeholders:

  • ${API_IMPORT} - API function import
  • ${DATA_TYPE} - Data type definition
  • ${FETCH_LOGIC} - Data fetching implementation

test-template.test.tsx

React Testing Library test template.

Placeholders:

  • ${COMPONENT_NAME} - Component name
  • ${IMPORT_PATH} - Import path
  • ${TEST_CASES} - Generated test cases

style-template.module.css

CSS Modules template.

Placeholders:

  • ${COMPONENT_NAME_KEBAB} - Component name in kebab-case
  • ${BASE_STYLES} - Base container styles

Examples

See examples/ directory for reference implementations:

  1. Button.tsx - Simple component with variants
  2. SearchBar.tsx - Component with hooks (useState, useEffect)
  3. UserProfile.tsx - Container component with data fetching

Each example includes:

  • Component implementation
  • Test file
  • Style file
  • Usage documentation

Best Practices

Component Design

  • Keep components small and focused (single responsibility)
  • Compose complex UIs from simple components
  • Lift state up only when necessary
  • Use descriptive names (UserProfile, not UP)

TypeScript

  • Define prop interfaces explicitly
  • Avoid any type (use unknown if needed)
  • Export types for consumers
  • Use strict mode

Testing

  • Test user behavior, not implementation
  • Query by role/text, not test IDs
  • Test accessible attributes
  • Mock external dependencies

Styling

  • CSS Modules for scoped styles
  • BEM or descriptive class names
  • Mobile-first responsive design
  • Use CSS custom properties for theming

Accessibility

  • Semantic HTML (button, nav, main, etc.)
  • ARIA labels when needed
  • Keyboard navigation support
  • Focus management in modals/dropdowns

Troubleshooting

Component Not Rendering

Problem: Generated component throws errors

Solutions:

  1. Check TypeScript compilation errors
  2. Verify all imports are correct
  3. Check props interface matches usage
  4. Validate JSX syntax

Tests Failing

Problem: Generated tests don't pass

Solutions:

  1. Ensure React Testing Library is installed
  2. Check test queries match component output
  3. Verify mocks are set up correctly
  4. Run tests with --verbose flag

Styles Not Applying

Problem: CSS modules not loading

Solutions:

  1. Check CSS module import syntax
  2. Verify webpack/vite config supports CSS modules
  3. Check className is applied to element
  4. Inspect browser devtools for loaded styles

Success Criteria

This skill succeeds when:

  • Component file generated with valid TypeScript
  • Test file created with passing tests
  • Style file generated with scoped styles
  • Barrel export allows clean imports
  • Props interface matches requirements
  • Code follows React best practices
  • Accessibility attributes included

Auto-invoke this skill when creating React components to ensure consistency and save time ⚛️

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Antigravity

32.23%
按下载量换算34

Gemini CLI

23.96%
按下载量换算26

kilo

16.3%
按下载量换算17

OpenCode

12.81%
按下载量换算14

Claude Code

8.67%
按下载量换算9

windsurf

3.66%
按下载量换算4

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills