perf

Solid

Performance regression gate. Detects N+1 queries, sync-in-async, missing indexes, memory leaks, and bundle bloat before they reach production. Ranks findings by Cost Impact Hierarchy (architecture > data transfer > compute > DB > caching) so fix priority maps to actual unit-cost reduction.

Data & Documents 81 stars 23 forks Updated 4 days ago MIT

Install

View on GitHub

Quality Score: 88/100

Stars 20%
64
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# perf ## Purpose Performance regression gate. Analyzes code changes for patterns that cause measurable slowdowns — N+1 queries, sync operations in async handlers, unbounded DB queries, missing indexes, memory leaks, and bundle bloat. Not a profiler — a gate. Finds performance bugs with measurable/estimated impact before production, so developers fix them at the cheapest point in the cycle. ## Triggers - `/rune perf` — manual invocation before commit - Called by `cook` (L1): Phase 5 quality gate - Called by `review` (L2): performance patterns detected in diff - Called by `deploy` (L2): pre-deploy regression check - Called by `audit` (L2): performance health dimension ## Calls (outbound) - `scout` (L2): find hotpath files and identify framework in use - `browser-pilot` (L3): run Lighthouse / Core Web Vitals for frontend projects - `verification` (L3): run benchmark scripts if configured (e.g. `npm run bench`) - `design` (L2): when Lighthouse Accessibility BLOCK — design system may lack a11y foundation ## Called By (inbound) - `cook` (L1): Phase 5 quality gate before PR - `audit` (L2): performance dimension delegation - `review` (L2): performance patterns detected in diff - `deploy` (L2): pre-deploy perf regression check - `adversary` (L2): scalability stress test when bottleneck patterns detected in plan ## References - `references/cost-reference.md` — Cost priority hierarchy, quick wins checklist, instance right-sizing, data transfer traps, serverless optimization, ...

Details

Author
Rune-kit
Repository
Rune-kit/rune
Created
5 months ago
Last Updated
4 days ago
Language
JavaScript
License
MIT

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category