-
Performance
Cut my server response times
Profile slow endpoints, find where the time actually goes, and fix the top offenders.
Free Prompt
What This Does / How This Helps
This profiles your endpoints, breaks down where response time goes, and fixes the top offenders: sequential awaits, N+1 queries, missing caching, and third-party calls in the request path. Slow server responses compound across every interaction, and they're usually not one big problem but five boring ones. The sequential-await pattern is nearly universal in AI-generated code: three independent queries awaited in a row, tripling latency for free. Fixing the top few endpoints by measurement, rather than optimizing randomly, is what keeps this a two-hour task instead of a two-week one.
Want to skip doing this by hand?
Fortivibe audits your app for all of the areas these prompts cover (and more).