Agent skill
detecting-memory-leaks
Detect potential memory leaks and analyze memory usage patterns in code. Use when troubleshooting performance issues related to memory growth or identifying leak sources. Trigger with phrases like "detect memory leaks", "analyze memory usage", or "find memory issues".
Install this agent skill to your Project
npx add-skill https://github.com/jeremylongshore/claude-code-plugins-plus-skills/tree/main/plugins/performance/memory-leak-detector/skills/detecting-memory-leaks
SKILL.md
Memory Leak Detector
Detect and diagnose memory leaks in Node.js, Python, and JVM applications by analyzing event listeners, closures, unbounded caches, and retained references.
Overview
This skill helps you identify and resolve memory leaks in your code. By analyzing your code for common memory leak patterns, it can help you improve the performance and stability of your application.
How It Works
- Initiate Analysis: The user requests memory leak detection.
- Code Analysis: The plugin analyzes the codebase for potential memory leak patterns.
- Report Generation: The plugin generates a report detailing potential memory leaks and recommended fixes.
When to Use This Skill
This skill activates when you need to:
- Detect potential memory leaks in your application.
- Analyze memory usage patterns to identify performance bottlenecks.
- Troubleshoot performance issues related to memory leaks.
Examples
Example 1: Identifying Event Listener Leaks
User request: "detect memory leaks in my event handling code"
The skill will:
- Analyze the code for unremoved event listeners.
- Generate a report highlighting potential event listener leaks and suggesting how to properly remove them.
Example 2: Analyzing Cache Growth
User request: "analyze memory usage to find excessive cache growth"
The skill will:
- Analyze cache implementations for unbounded growth.
- Identify caches that are not properly managed and recommend strategies for limiting their size.
Best Practices
- Code Review: Always review the reported potential leaks to ensure they are genuine issues.
- Regular Analysis: Incorporate memory leak detection into your regular development workflow.
- Targeted Analysis: Focus your analysis on specific areas of your code that are known to be memory-intensive.
Integration
This skill can be used in conjunction with other performance analysis tools to provide a comprehensive view of application performance.
Prerequisites
- Access to application source code in ${CLAUDE_SKILL_DIR}/
- Memory profiling tools (valgrind, heapdump, etc.)
- Understanding of application memory architecture
- Runtime environment for testing
Instructions
- Analyze code for common memory leak patterns
- Identify unremoved event listeners and callbacks
- Check for unbounded cache growth
- Review closure usage and retained references
- Generate report with leak locations and severity
- Provide remediation recommendations
Output
- Memory leak detection report with file locations
- Pattern analysis for event listeners and caches
- Memory usage trends and growth patterns
- Code snippets highlighting potential leaks
- Recommended fixes with code examples
Error Handling
If memory leak detection fails:
- Verify code file access permissions
- Check profiling tool installation
- Validate code syntax and structure
- Ensure sufficient memory for analysis
- Review runtime environment configuration
Resources
- Memory profiling tool documentation
- Memory leak detection best practices
- JavaScript/Node.js memory management guides
- Performance optimization resources
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
dockerfile-generator
Dockerfile Generator - Auto-activating skill for DevOps Basics. Triggers on: dockerfile generator, dockerfile generator Part of the DevOps Basics skill category.
branch-naming-helper
Branch Naming Helper - Auto-activating skill for DevOps Basics. Triggers on: branch naming helper, branch naming helper Part of the DevOps Basics skill category.
readme-generator
Readme Generator - Auto-activating skill for DevOps Basics. Triggers on: readme generator, readme generator Part of the DevOps Basics skill category.
makefile-generator
Makefile Generator - Auto-activating skill for DevOps Basics. Triggers on: makefile generator, makefile generator Part of the DevOps Basics skill category.
gitignore-generator
Gitignore Generator - Auto-activating skill for DevOps Basics. Triggers on: gitignore generator, gitignore generator Part of the DevOps Basics skill category.
pre-commit-hook-setup
Pre Commit Hook Setup - Auto-activating skill for DevOps Basics. Triggers on: pre commit hook setup, pre commit hook setup Part of the DevOps Basics skill category.
Didn't find tool you were looking for?