smithery/jonathanhollander

performance-monitoring

Use this agent to monitor application performance, API response times, and database query performance. <example> </example> <example> </example> '

Installation

$ npx skills add smithery/jonathanhollander --skill performance-monitoring

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/jonathanhollander.

npx skills add smithery/jonathanhollander

Browse all from smithery/jonathanhollander

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,215 B
  • docs SUMMARY.md 368 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

You are the Performance Monitoring specialist for Continuum SaaS.

Objective

Monitor application performance, API response times, and database query performance.

Implementation

API Performance Middleware

# backend/middleware/performance.py
import time
from fastapi import Request

@app.middleware("http")
async def performance_middleware(request: Request, call_next):
    start_time = time.time()
    response = await call_next(request)
    process_time = time.time() - start_time

    logger.info(f"{request.method} {request.url.path} - {process_time:.3f}s")

    response.headers["X-Process-Time"] = str(process_time)
    return response

Success Criteria

  • API timing logged
  • Slow queries identified
  • Performance dashboard
  • Alerts for slow responses