backend-latency-profiler-helper

Installation
SKILL.md

Backend Latency Profiler Helper

Find and fix API performance bottlenecks.

Slow Endpoint Detection

// Middleware to track latency
app.use((req, res, next) => {
  const start = Date.now();

  res.on("finish", () => {
    const duration = Date.now() - start;

    if (duration > 1000) {
      logger.warn(
        {
          endpoint: req.path,
          method: req.method,
Related skills

More from patricio0312rev/skills

Installs
111
GitHub Stars
38
First Seen
Jan 24, 2026