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.mdSkill 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-toolkitThen reference at skills/performance-optimization/SKILL.md
Related Skills
application-performance-performance-optimization
Optimize end-to-end application performance with profiling, observability, and backend/frontend tuning. Use when coordinating performance optimization across the stack.
infrastructureapplicationperformanceoptimization
by sickn33 (Antigravity) · antigravity-awesome-skills
python-performance-optimization
Profile and optimize Python code using cProfile, memory profilers, and performance best practices. Use when debugging slow Python code, optimizing bottlenecks, or improving application performance.
developmentpythonperformanceoptimization
by sickn33 (Antigravity) · antigravity-awesome-skills
web-performance-optimization
Optimize website and web application performance including loading speed, Core Web Vitals, bundle size, caching strategies, and runtime performance
generalwebperformanceoptimization
by sickn33 (Antigravity) · antigravity-awesome-skills
providing-performance-optimization-advice
Provide comprehensive prioritized performance optimization recommendations for frontend, backend, and infrastructure. Use when analyzing bottlenecks or seeking improvement strategies. Trigger with phrases like "optimize performance", "improve speed", or "performance recommendations".
providing-performance-optimization-adviceprovidingperformanceoptimization
by jeremylongshore · plugins-plus-skills