Install
$ agentstack add skill-hiroqt-pixelcrew-performance-engineering ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Performance Engineering & Production Readiness
This skill provides comprehensive instructions, diagnostic runbooks, optimization formulas, load testing scripts, and production verification checklists to guarantee high system performance, reliability, and smooth operations at scale.
1. Core Engineering Directives
- Frontend Core Web Vitals (CWV) Targets:
- LCP (Largest Contentful Paint) < 2.5s: Apply
fetchpriority="high"on hero images, preload critical web fonts withfont-display: swap, and eliminate render-blocking stylesheets. - INP (Interaction to Next Paint) < 200ms: Yield long tasks to the browser main thread using
scheduler.yield()orrequestIdleCallback(); offload heavy parsing to Web Workers. - CLS (Cumulative Layout Shift) < 0.1: Set explicit
aspect-ratio/ width & height on all media; use@font-facesize-adjustto match fallback font metrics. - TTFB (Time to First Byte) < 800ms: Deploy edge computing (V8 isolates), streaming SSR, and HTTP 103 Early Hints.
- Backend & Runtime Optimization:
- Monitor and profile Event Loop Utilization (ELU) in Node.js, CPU/memory profiles via
pprofin Go/Rust, and tune JVM garbage collection (ZGC/Shenandoah). - Detect and eradicate memory leaks using automated heap snapshot comparisons.
- Multi-Tier Caching & Stampede Prevention:
- Implement hierarchical caching: L1 (Process memory LRU) $\to$ L2 (Distributed Redis cluster) $\to$ L3 (CDN Edge).
- Eliminate Thundering Herd / Cache Stampedes using the XFetch Probabilistic Early Expiration algorithm or Singleflight / Mutex locks.
- Configure precise HTTP
Cache-Controlheaders (public, max-age=31536000, immutable,stale-while-revalidate,stale-if-error).
- Data Layer & Transport Performance:
- Eliminate N+1 queries with batched DataLoaders and SQL lateral joins.
- Size connection pools using Little's Law to prevent connection starvation under high concurrency.
- Profile slow queries using
pg_stat_statements.
- Production Readiness & Stress Testing:
- Run automated k6 load test pipelines (Smoke tests, Load tests, Stress tests, Spike tests, and 24-hour Soak tests).
- Establish formal SLIs, SLOs, and Error Budgets tied to the Four Golden Signals (Latency, Traffic, Errors, Saturation).
- Execute the 50+ item Pre-Production Go-Live Verification Checklist before deploying to production.
2. Quick Navigation & Reference Modules
- [Core Web Vitals & Frontend Performance Guide](./references/full-stack-optimization-guide.md)
- [Backend Runtime Profiling & Memory Leak Hunting](./references/backend-and-runtime-optimization.md)
- [Multi-Tier Caching & Database Performance Guide](./references/caching-and-database-perf.md)
- [k6 Load & Stress Testing Script Templates](./references/load-testing-k6-templates.md)
- [Pre-Production Go-Live Verification Checklist](./references/production-readiness-checklist.md)
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: hiroqt
- Source: hiroqt/PixelCrew
- License: Apache-2.0
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.