Solo Unicorn Club logoSolo Unicorn

Performance Benchmarker

Profile, measure, and optimize app performance systematically

$39Skill PackFor founders buying their first concrete result

What you can have running in the first 7 days

Get a ready-to-run system that replaces blank-page setup.
Ship a usable package with 6 included files and working structure.
Move from purchase to first setup in about 5 min.

What is Performance Benchmarker?

A skill for systematic performance analysis. Covers Core Web Vitals measurement, bundle size auditing, runtime profiling, database query analysis, memory leak detection, and load testing. Produces benchmark reports with baseline comparisons and prioritized optimization recommendations.

Setup Time

5 min

Difficulty

Intermediate

Works With
solo-unicornclaude-code

What's Included

  • performance-benchmarker.md
  • templates/benchmark-report.md
  • templates/optimization-plan.md
  • examples/web-vitals-audit.md
  • examples/query-optimization.md
  • README.md

Preview

performance-benchmarker.md
# Performance Benchmarker Skill

## Measurement Protocol
Always measure before optimizing. Never guess.

### Core Web Vitals (Frontend)
- LCP (Largest Contentful Paint): target < 2.5s
- FID (First Input Delay): target < 100ms
- CLS (Cumulative Layout Shift): target < 0.1
- Tool: Lighthouse CI, WebPageTest, CrUX

### Bundle Analysis
- Run `npx webpack-bundle-analyzer` or equivalent
- Flag any single chunk > 100KB gzipped
- Check for duplicate dependencies across chunks
- Tree-shaking: verify no unused exports in bundle

### Runtime Profiling
- CPU: identify functions taking > 50ms on main thread
- Memory: heap snapshots before and after operations
- Network: waterfall analysis, identify blocking resources

### Database
- Log slow queries (> 100ms)
- Check for N+1 patterns in ORM usage
- Verify indexes exist on frequently filtered columns
- EXPLAIN ANALYZE on top 10 queries by frequency

## Report Format
| Metric        | Current | Target  | Status | Action              |
|---------------|---------|---------|--------|---------------------|
| LCP           | 3.2s    | < 2.5s | FAIL   | Lazy-load hero img  |
| Bundle size   | 340KB   | < 200KB| FAIL   | Code-split routes   |
| DB p95 query  | 230ms   | < 100ms| FAIL   | Add composite index |

Installation Guide

Get up and running in under 5 minutes.

# Copy the skill into your project
cp performance-benchmarker/SKILL.md .claude/skills/performance-benchmarker.md

# Verify it loads
claude /skill performance-benchmarker

Skill Pack. Pay once for the asset. Upgrade to implementation only when you want higher-touch help.

Share

Community acceleration

Bring your workflow into the Solo Unicorn community for sharper feedback, operator critique, and more visibility once the system is live.

Upgrade path

  • Start with this package and validate the workflow.
  • Add specialized skills or bundles once the core system is stable.
  • Use the community to sharpen positioning, demos, and feedback loops.

Need this adapted to your business?

Buy the asset first if you can run it yourself. If this workflow is business-critical or needs custom implementation, move into a sprint or fractional CIO advisory instead of guessing.

Discuss implementation →
Files included6
Setup time5 min
Difficultyintermediate

Tags

performancebenchmarkingweb-vitalsprofilingoptimization