perf-optimizer

perf-optimizer is a skill for Claude Code, Codex from Shiven0504/claude-skills-collection. It costs 113 tokens per session (3,091 once invoked), scanned A, original, MIT.

A guide for making Next.js and React websites load faster and respond more quickly. It covers loading, responsiveness, visual stability, JavaScript size, images, caching, and rendering.

In plain words
What is it for?
Use it to improve Core Web Vitals—Google's measures of loading speed, interaction response, and layout stability—through performance checks and targeted code changes.
Why use it?
It helps locate and reduce slow pages, large browser downloads, delayed interactions, and layout movement.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to improve Core Web Vitals—Google's measures of loading speed, interaction response, and layout stability—through performance checks and targeted code changes.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/shiven0504/claude-skills-collection/perf-optimizer
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Shiven0504/claude-skills-collection --skill perf-optimizer
Clone the repo
git clone --depth 1 https://github.com/Shiven0504/claude-skills-collection

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for perf-optimizer

README.md
[![agentmods](https://agentmods.dev/badge/skills/shiven0504/claude-skills-collection/perf-optimizer/github.svg)](https://agentmods.dev/skills/shiven0504/claude-skills-collection/perf-optimizer)
Your own site
<a href="https://agentmods.dev/skills/shiven0504/claude-skills-collection/perf-optimizer"><img src="https://agentmods.dev/badge/skills/shiven0504/claude-skills-collection/perf-optimizer/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for perf-optimizer

Your own site · 80×15
<a href="https://agentmods.dev/skills/shiven0504/claude-skills-collection/perf-optimizer"><img src="https://agentmods.dev/badge/skills/shiven0504/claude-skills-collection/perf-optimizer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 113 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,091 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00113 $0.03091
Opus 5 $0.00056 $0.01545
Sonnet 5 $0.00023 $0.00618
Haiku 4.5 $0.00011 $0.00309

Measured 12d ago against content hash d8f463020be0, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

perf-optimizer scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

fetch(url, { next: { revalidate: 3600 } })
skills/custom/perf-optimizer/SKILL.md · 421 lines

How it starts

The opening of the file, as written. The whole thing — 421 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Frontend Performance Optimization

Help users diagnose and fix performance issues in Next.js/React applications with Tailwind CSS. Focus on high-impact changes rather than micro-optimizations.

Core Web Vitals

Google's Core Web Vitals are the three metrics that matter most for real-world user experience:

Metric What it measures Good Needs work Poor
LCP (Largest Contentful Paint) Loading — how fast the main content appears < 2.5s 2.5–4s > 4s
INP (Interaction to Next Paint) Responsiveness — how fast the page responds to input < 200ms 200–500ms > 500ms
CLS (Cumulative Layout Shift) Visual stability — how much the page jumps around < 0.1 0.1–0.25 > 0.25

Measuring performance

# Next.js built-in analytics
# Add to next.config.js:
# experimental: { webVitals: true }

# Or use the web-vitals library
npm install web-vitals
// app/layout.tsx — report Web Vitals
export function reportWebVitals(metric: {
  id: string
  name: string
  value: number
}) {
  console.log(metric) // or send to analytics
}

Browser tools:

  • Lighthouse (Chrome DevTools > Lighthouse tab) — synthetic lab test
  • Chrome DevTools Performance tab — detailed trace of what's happening
  • PageSpeed Insights — real-world field data from Chrome users

Image Optimization

Images are typically the largest elements on a page and the biggest opportunity for improvement. Next.js has a built-in Image component that handles optimization automatically.

Use next/image

import Image from 'next/image'

// Local images — automatically optimized at build time
import heroImage from '@/public/hero.jpg'

export function Hero() {
  return (
    <Image
      src={heroImage}
      alt="Product dashboard showing analytics"
      priority          // LCP image — preload it
      placeholder="blur" // show blur while loading (local images only)
      className="rounded-lg"
    />
  )
}

// Remote images — optimized on-demand
export function Avatar({ user }: { user: User }) {
  return (
    <Image
      src={user.avatarUrl}
      alt={`${user.name}'s avatar`}
      width={40}
      height={40}
      className="rounded-full"
    />
  )
}

Read the full file on GitHub · 421 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 421 lines · 113 tokens per session scan A d8f463020be0

Subscribe to this mod's changes

perf-optimizer is a skill published in the GitHub repository Shiven0504/claude-skills-collection (6 stars, last pushed 5mo ago), licensed MIT. It adds 113 tokens to every session and 3,091 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

react-patterns

React 18/19 patterns including hooks discipline, server/client component boundaries, Suspense + error boundaries, form actions, data fetching, state management decision trees, and accessibility-first composition. Use when writing or reviewing React components.

affaan-m/ECC · 49 tokens

chakra-ui-builder

Build responsive, accessible UI components and layouts using Chakra UI v3, install or configure Chakra UI in new and existing projects, and design scalable themes using tokens, semantic tokens, recipes, and slot recipes. Use this skill whenever a user asks to build, create, or generate any UI component, page, form…

chakra-ui/chakra-ui · 214 tokens

material-ui-tailwind

Integrates Material UI with Tailwind CSS v4 using cascade layers (enableCssLayer, @layer order) and documents Tailwind v3 interoperability (preflight, important, injectFirst, portals). Use when combining MUI with Tailwind utilities, slotProps className, or theme token bridges.

mui/material-ui · 67 tokens

fuzzy-ranking

Rank fuzzy matches with rankItem, filter with RankingInfo.passed, compare saved ranking metadata with compareItems, and configure rankings, thresholds, accessors, min/max bounds, or diacritics. Load for @tanstack/match-sorter-utils itself or fuzzy Table filterMeta wiring.

TanStack/table · 62 tokens

api-not-found

Diagnose missing TanStack Table v9 exports, options, state slices, and instance methods. Load before inventing an API when code sees a type error, undefined feature method, absent object key, adapter mismatch, or v8-shaped example.

TanStack/table · 53 tokens

r3f-best-practices

React Three Fiber (R3F) and Poimandres ecosystem best practices. Use when writing, reviewing, or optimizing R3F code. Triggers on tasks involving @react-three/fiber, @react-three/drei, zustand, @react-three/postprocessing, @react-three/rapier, or leva.

zebbern/claude-code-guide · 74 tokens