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;
Installs
8
GitHub Stars
2
First Seen
Feb 16, 2026
backend-latency-profiler-helper — monkey1sai/openai-cli