performance-optimization

Web performance optimization including bundle analysis, lazy loading, caching strategies, and Core Web Vitals

Content Preview
---
name: performance-optimization
description: Web performance optimization including bundle analysis, lazy loading, caching strategies, and Core Web Vitals
---

# Performance Optimization

## Bundle Analysis and Code Splitting

```typescript
// Dynamic import for route-level code splitting
const Dashboard = lazy(() => import("./pages/Dashboard"));
const Settings = lazy(() => import("./pages/Settings"));

function App() {
  return (
    <Suspense fallback={<PageSkeleton />}>
      <Routes>
    
How to Use

Recommended: Install to project (local)

mkdir -p .claude/skills
curl -o .claude/skills/performance-optimization.md \
  https://raw.githubusercontent.com/rohitg00/awesome-claude-code-toolkit/main/skills/performance-optimization/SKILL.md

Skill is scoped to this project only. Add .claude/skills/ to your .gitignoreif you don't want to commit it.

Alternative: Clone full repo

git clone https://github.com/rohitg00/awesome-claude-code-toolkit

Then reference at skills/performance-optimization/SKILL.md

Related Skills