スキル一覧に戻る
cityfish91159

frontend-mastery

by cityfish91159

0🍴 0📅 2026年1月24日
GitHubで見るManusで実行

SKILL.md


name: frontend_mastery description: Advanced React patterns, performance optimization, and state management rules. allowed-tools: Read, Edit, Write

Frontend Mastery Protocol (React + Vite + Tailwind)

1. Performance "Pro" Checklist

Before submitting any UI component, verify:

  • Re-renders: Are we re-rendering unnecessarily? Use React.memo or useCallback for stable props.
  • Lazy Loading: Are strict routes lazy-loaded? (React.lazy)
  • Image Optimization: Are images using proper formats (WebP/AVIF) and loading="lazy"?
  • Zustand Selectors: Are we selecting only what we need?
    • const { user, token } = useAuthStore()
    • const user = useAuthStore((s) => s.user)
  • Bundle Size: Did we import a huge library for one function? (e.g. import lodash vs lodash/debounce)

2. State Management Rules (Zustand + React Query)

  • Server State: MUST use React Query.
    • NEVER store server data in global Zustand store manually (unless caching for UI sync).
    • Use staleTime and cacheTime appropriately.
  • Client State: Use Zustand for global, useState for local.
    • Avoid "Prop Drilling" > 2 levels. Use Context or Zustand.

3. Architectectural Patterns

  • Container/Presenter: Separate logic (Hooks) from View (JSX).
    • Complex components should have a custom hook (e.g., useComponentLogic.ts).
  • Composition: Use children prop instead of passing components as props where possible.
  • Custom Hooks: Extract reusable logic immediately. useBoolean, useToggle, etc.

4. Code Quality & Formatting

  • Naming: use[Action] for hooks, handle[Event] for handlers.
  • CSS (Tailwind):
    • Group layout (flex, grid) first, then spacing, then visual (bg, text).
    • Use clsx or tailwind-merge for conditional classes.
    • NO inline styles (style={{}}) except for dynamic coordinates.

6. Error Boundaries

  • Critical UI parts MUST have an <ErrorBoundary>.
  • Async components (Suspense) must handle loading states gracefully.

スコア

総合スコア

50/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です