frontend-excellence
Modern frontend patterns for React Server Components, performance optimization, and Core Web Vitals
npx skills add rohitg00/awesome-claude-code-toolkit --skill frontend-excellence --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Frontend Excellence ## React Server Components Server Components run on the server and send rendered HTML to the client. They can directly access databases, filesystems, and internal APIs without exposing them to the browser. ```tsx // app/products/page.tsx (Server Component by default) async function ProductsPage() { const products = await db.query("SELECT * FROM products WHERE active = true"); return ( <main> <h1>Products</h1> <ProductList products={products} /> <AddToCartButton /> {/* Client Component */} </main> ); } ``` Rules: - Server Components cannot use `useState`, `useEffect`, or browser APIs - Mark interactive components with `'use client'` at the top of the file - Pass serializable props from Server to Client Components (no functions, no classes) - Keep `'use client'` boundary as deep in the tree as possible ## Streaming SSR ```tsx import { Suspense } from 'react'; export default function Dashboard() { return ( <div> <Header /> {/* renders immediately */} <Suspense fallback={<ChartSkeleton />}> <AnalyticsChart /> {/* streams when ready */} </Suspense> <Suspense fallback={<TableSkeleton />}> <RecentOrders /> {/* streams independently */} </Suspense> </div> ); } ``` Eac
- React Server Components
- Streaming SSR
- Code Splitting
- Bundle Optimization
- Core Web Vitals Targets
- LCP Optimization
- Image Optimization
- Font Loading Strategy
- CLS Prevention
- Performance Monitoring
What does the frontend-excellence skill do?
Modern frontend patterns for React Server Components, performance optimization, and Core Web Vitals
How do I install it?
Run `npx skills add rohitg00/awesome-claude-code-toolkit --skill frontend-excellence --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From rohitg00/awesome-claude-code-toolkit, a repository with 2,438 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.