performance

performance is a skill for Claude Code from yonatangross/orchestkit. It costs 64 tokens per session (3,360 once invoked), scanned A, original, MIT.

A collection of guidance for making web pages, server code, and AI systems use fewer resources and respond faster. It covers page loading, React rendering, images, backend profiling, caching, and model inference.

In plain words
What is it for?
It is for improving Core Web Vitals—Google's measures of page loading, responsiveness, and visual stability—along with React performance, backend behavior, caching, and AI inference.
Why use it?
It helps identify common causes of slow pages, heavy downloads, inefficient server work, and costly or slow AI responses.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: agent in frontmatter; mentions Claude Code.

Part of the ork plugin — 107 skills, 36 commands, 36 agents, 32 hooks shipped together

Good fit It is for improving Core Web Vitals—Google's measures of page loading, responsiveness, and visual stability—along with React performance, backend behavior, caching, and AI inference.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/yonatangross/orchestkit/performance
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 yonatangross/orchestkit --skill performance
Clone the repo
git clone --depth 1 https://github.com/yonatangross/orchestkit

Made for: Claude Code.

Or install ork, the plugin that ships this one along with the rest of its 107 skills, 36 commands, 36 agents, 32 hooks.

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 performance

README.md
[![agentmods](https://agentmods.dev/badge/skills/yonatangross/orchestkit/performance/github.svg)](https://agentmods.dev/skills/yonatangross/orchestkit/performance)
Your own site
<a href="https://agentmods.dev/skills/yonatangross/orchestkit/performance"><img src="https://agentmods.dev/badge/skills/yonatangross/orchestkit/performance/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 performance

Your own site · 80×15
<a href="https://agentmods.dev/skills/yonatangross/orchestkit/performance"><img src="https://agentmods.dev/badge/skills/yonatangross/orchestkit/performance.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 64 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,360 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium MCP Rug Pull · line 162
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
How audits are shown
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.00064 $0.03360
Opus 5 $0.00032 $0.01680
Sonnet 5 $0.00013 $0.00672
Haiku 4.5 $0.00006 $0.00336

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

Security

Grade A, and why

performance scanned grade A with 0 findings 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 2d ago.

The scan reads SKILL.md. This mod also ships 7 executable files (scripts/api-optimization.ts, scripts/caching-patterns.ts, scripts/database-optimization.ts, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/ork/skills/performance/SKILL.md · 334 lines

How it starts

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

Performance

Comprehensive performance optimization patterns for frontend, backend, and LLM inference.

Quick Reference

Category Rules Impact When to Use
Core Web Vitals 4 CRITICAL LCP, INP, CLS optimization with 2026 thresholds
Render Optimization 3 HIGH React Compiler, memoization, virtualization
Lazy Loading 3 HIGH Code splitting, route splitting, preloading
Image Optimization 2 HIGH AVIF/WebP formats, responsive images
Profiling & Backend 3 MEDIUM React DevTools, py-spy, bundle analysis
LLM Inference 3 MEDIUM vLLM, quantization, speculative decoding
Caching 2 HIGH Redis cache-aside, prompt caching, HTTP cache headers
Query & Data Fetching 2 HIGH TanStack Query prefetching, optimistic updates, rollback
Sustainability 1 MEDIUM Page weight budgets, lazy loading, optimized formats, dark mode

Total: 23 rules across 9 categories

Core Web Vitals

Google's Core Web Vitals with 2026 stricter thresholds.

Rule File Key Pattern
LCP Optimization rules/cwv-lcp.md Preload hero, SSR, fetchpriority="high"
INP Optimization rules/cwv-inp.md scheduler.yield, useTransition, requestIdleCallback
INP Advanced rules/cwv-inp-advanced.md Layout thrashing, third-party scripts, rAF patterns
CLS Prevention rules/cwv-cls.md Explicit dimensions, aspect-ratio, font-display

2026 Thresholds

Metric Current Good 2026 Good
LCP <= 2.5s <= 2.0s
INP <= 200ms <= 150ms
CLS <= 0.1 <= 0.08

Render Optimization

React render performance patterns for React 19+.

Rule File Key Pattern
React Compiler rules/render-compiler.md Auto-memoization, "Memo" badge verification
Manual Memoization rules/render-memo.md useMemo/useCallback escape hatches, state colocation
Virtualization rules/render-virtual.md TanStack Virtual for 100+ item lists

Read the full file on GitHub · 334 lines

Files

What ships with it

43 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 2d ago Changed 176d0bcae2dd
  2. 4d ago First seen · 334 lines · 64 tokens per session scan A 36778cf44ea8

Subscribe to this mod's changes

performance is a skill published in the GitHub repository yonatangross/orchestkit (231 stars, last pushed today), licensed MIT. It adds 64 tokens to every session and 3,360 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-05.

Related

Other skills, from other repositories

performance

Use when a page or interaction is slow for one user and the fix starts from a measurement — a failing Core Web Vital (LCP, INP, CLS), a heavy JS bundle, wasted re-renders, an over-broad client boundary: profile, attribute the cost to one phase, fix it, re-measure. NOT surviving concurrent load (that is scaling), NOT…

ericrisco/rsc-harness · 91 tokens

nextjs-optimization

Optimize images, fonts, scripts, and metadata for Next.js performance and Core Web Vitals. Use when configuring next/image for LCP, next/font for zero layout shift, next/script loading strategies, or generateMetadata for SEO.

FilippoDeSilva/skills · 51 tokens

image-optimization-cdn

Speed up your store by automatically resizing and converting product images to WebP/AVIF, adding lazy loading, and serving via CDN.

finsilabs/awesome-ecommerce-skills · 32 tokens

performance-optimization

Optimizes application performance. Use when performance requirements exist, when you suspect performance regressions, or when Core Web Vitals or load times need improvement. Use when profiling reveals bottlenecks that need fixing.

vanja-emichi/a0_agent_skills · 45 tokens

Chrome DevTools MCP Performance

Teach agents to use the Chrome DevTools MCP server for performance testing with traces, Core Web Vitals, throttling, and evidence-based analysis.

PramodDutta/qaskills · 35 tokens

react-advanced

Modern React 19 platform features and rendering architecture - the React Compiler (auto-memoization) and how it changes memoization guidance, concurrent rendering (useTransition/useDeferredValue/Suspense), the use() hook, Actions (useActionState/useOptimistic/useFormStatus), ref-as-prop and Context-as-provider…

bobmatnyc/claude-mpm-skills · 98 tokens