Solo Unicorn Club logo

Skill Packs

Performance Benchmarker

Profile, measure, and optimize app performance systematically

// First 7 days

What can be running fast.

01

Get a ready-to-run system that replaces blank-page setup.

02

Ship a usable package with 6 included files and working structure.

03

Move from purchase to first setup in about 5 min.

// Included files

What is inside the package.

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

Description

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.

solo-unicornclaude-code

Upgrade path

  • 01Start with this package and validate the workflow.
  • 02Add specialized skills or bundles once the core system is stable.
  • 03Use the community to sharpen positioning, demos, and feedback loops.
Previewperformance-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 |

// Community acceleration

Use the room after the purchase.

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

Discuss implementation