From memory-profiler
Detects and diagnoses memory leaks in applications by running repetitive workloads, measuring memory growth, tracing retention paths, and suggesting fixes.
How this command is triggered — by the user, by Claude, or both
Slash command
/memory-profiler:find-leaksThe summary Claude sees in its command listing — used to decide when to auto-load this command
# /find-leaks - Find Memory Leaks Detect and diagnose memory leaks in the application. ## Steps 1. Configure the application for leak detection with appropriate tooling 2. Establish a baseline memory measurement at application startup 3. Run a repetitive workload: process N requests, render N times, or execute N iterations 4. Measure memory after each iteration to detect steady growth 5. Force garbage collection between measurements to isolate true leaks 6. Identify objects that grow in count across iterations without being released 7. Trace the retention path: what is holding references...
Detect and diagnose memory leaks in the application.
6plugins reuse this command
First indexed Mar 30, 2026
npx claudepluginhub twzrd-sol/awesome-claude-code-toolkit --plugin memory-profiler/find-leaksDetects and diagnoses memory leaks in applications by running repetitive workloads, measuring memory growth, tracing retention paths, and suggesting fixes.
/memory-leakDiagnoses memory leaks by analyzing symptom descriptions or code paths. Traces allocation patterns, identifies retained references, and proposes fixes with regression tests.
/debugWalks through a structured debugging workflow: reproduce, isolate, analyze, hypothesize, test, and fix. Outputs root cause analysis, fix recommendations, and prevention strategies.
/detect-bottlenecksDetects performance bottlenecks across the application stack — CPU, memory, I/O, database, lock contention, resource exhaustion — and generates a prioritized remediation plan with root cause analysis.