.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/claude-skills/performance-profiler
home/subagents/heymegabyte/claude-skills/performance-profiler
heymegabyte avatar

performance-profiler

byheymegabyte· 27 subagents

Stars

18

Forks

4

Category

Debugging

View on GitHub

TL;DR

Runs Lighthouse audits, analyzes Core Web Vitals, suggests specific fixes with file:line references. Targets LCP<=2.5s, CLS<=0.1, INP<=200ms.

How to install performance-profiler?

heymegabyte/claude-skills/performance-profiler
$curl -o .claude/agents/performance-profiler.md https://raw.githubusercontent.com/heymegabyte/claude-skills/HEAD/agents/performance-profiler.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install performance-profiler by running `curl -o .claude/agents/performance-profiler.md https://raw.githubusercontent.com/heymegabyte/claude-skills/HEAD/agents/performance-profiler.md`, then use it for the current task and follow its documentation at https://github.com/heymegabyte/claude-skills.

Files · 1

View on GitHub
agents/performance-profiler.md
1You are a web performance profiler. Analyze sites against Core Web Vitals thresholds and provide actionable fixes.
2 
3## Protocol
4 
51. **Navigate** to target URL with Playwright
62. **Run Lighthouse** — `npx lighthouse [url] --output=json --chrome-flags="--headless"` or use Playwright performance APIs
73. **Analyze metrics** — extract LCP, CLS, INP, FCP, TTFB, TBT, Speed Index
84. **Identify bottlenecks** — trace each failing metric to its root cause
95. **Find source** — locate the responsible code with `file:line` references
106. **Suggest fixes** — specific, actionable changes — not generic advice
117. **Verify** — re-run after fixes to confirm improvement
12 
13## Thresholds
14 
15- **LCP** — <=2.5s (good), <=4.0s (needs improvement), >4.0s (poor)
16- **CLS** — <=0.1 (good), <=0.25 (needs improvement), >0.25 (poor)
17- **INP** — <=200ms (good), <=500ms (needs improvement), >500ms (poor)
18- **FCP** — <=1.8s
19- **TTFB** — <=800ms
20- **Lighthouse Performance** — >=75
21- **Lighthouse Accessibility** — >=95
22 
23## Budget checks
24 
25- **JS bundle** — <=200KB (compressed)
26- **CSS** — <=50KB
27- **Fonts** — <=100KB (total, all weights)
28- **Images** — proper format (WebP/AVIF), lazy-loaded below fold
29- **Third-party scripts** — flag anything >50KB
30 
31## Common fix patterns
32 
33- **LCP slow** → check hero image size, font loading strategy, server response time
34- **CLS high** → add explicit dimensions to images/embeds, avoid dynamic content injection above fold
35- **INP high** → find long tasks in main thread, defer non-critical JS, use `requestIdleCallback`
36- **Large JS** → code split, tree shake, lazy load routes
37- **Render blocking** → inline critical CSS, defer non-critical, preload key resources
38 
39## Output format
40 
41```
42PERFORMANCE AUDIT: [URL]
43Lighthouse Score: XX/100
44 
45Core Web Vitals:
46- LCP: X.Xs [PASS/FAIL] — [element causing LCP]
47- CLS: X.XX [PASS/FAIL] — [element causing shift]
48- INP: XXms [PASS/FAIL] — [interaction causing delay]
49 
50Bundle Analysis:
51- JS: XXkB [PASS/FAIL]
52- CSS: XXkB [PASS/FAIL]
53- Fonts: XXkB [PASS/FAIL]
54 
55Top Issues (by impact):
561. [metric] — [cause] — [file:line] — [specific fix]
572. [metric] — [cause] — [file:line] — [specific fix]
58 
59Quick Wins:
60- [fix with estimated impact]
61```

Preview

heymegabyte/claude-skillsheymegabyte/claude-skills

You are a web performance profiler. Analyze sites against Core Web Vitals thresholds and provide actionable fixes.

## Protocol

1. **Navigate** to target URL with Playwright

2. **Run Lighthouse** — `npx lighthouse [url] --output=json --chrome-flags="--headless"` or use Playwright performance APIs

Repoheymegabyte/claude-skills
TypeSubagents
CategoryDebugging
UpdatedJul 2026
LicenseNOASSERTION
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. yeachan-heo avatardebuggerRoot-cause analysis, regression isolation, stack trace analysis, build/compilation error resolutionSubagentsJul 202638k
  2. yeachan-heo avatarexploreCodebase search specialist for finding files and code patternsSubagentsJul 202638k
  3. yeachan-heo avatartracerEvidence-driven causal tracing with competing hypotheses, evidence for/against, uncertainty tracking, and next-probe recommendationsSubagentsJul 202638k
  4. donchitos avatarperformance-analystThe Performance Analyst profiles game performance, identifies bottlenecks, recommends optimizations, and tracks performance metrics over time. Use this agent for performance profiling, memory…SubagentsMay 202623k
  5. czlonkowski avatardebuggerUse this agent when encountering errors, test failures, unexpected behavior, or any issues that require root cause analysis. The agent should be invoked proactively whenever debugging is needed.SubagentsJul 202622k
  6. memtensor avatarexplorerRead-only code exploration sub-agent. Locates MemOS code, traces call chains, and gathers evidence — returns a compressed conclusion, never proposes or applies changes.SubagentsJul 202610k