Diagnoses and resolves memory leaks in JavaScript/Node.js applications. Use when a user reports high memory usage, OOM errors, or wants to capture, compare, or
复制下面这句话,粘贴给 Claude Code、Codex、Cursor 等 AI 编程工具,它会读取安装说明并在你确认后完成安装。
请阅读 https://ai.atlankj.com/install/asset/gh-memory-leak-debugging-2913b0539da5 ,按照其中的说明把「memory-leak-debugging」安装到你(当前 AI 工具)中。执行前先告诉我将运行的命令和写入的位置,等我确认。
查看 AI 将读取的安装说明正在读取 GitHub 原文…
内容来自 GitHub 原始文件,由原作者维护。在 GitHub 查看
This skill provides expert guidance and workflows for finding, diagnosing, and fixing memory leaks in JavaScript and Node.js applications using Chrome DevTools MCP tools.
Advanced memory debugging tools (compare_heapsnapshots, get_heapsnapshot_details, etc.) are only available when the server is started with the --memoryDebugging flag. First check if these tools are available; if not, try to read the MCP configuration file to check if --memoryDebugging is enabled.
.heapsnapshot files directly, as they are extremely large and will consume too many tokens. Use the Chrome DevTools MCP heap snapshot tools to summarize, compare, and inspect snapshots.close_heapsnapshot for each loaded snapshot to release memory held by the MCP server.When investigating a frontend web application memory leak, utilize the chrome-devtools-mcp tools to interact with the application and take snapshots.
click, navigate_page, fill, etc. (specifying pageId) to manipulate the page into the desired state.take_heapsnapshot (with pageId) to save .heapsnapshot files to disk at baseline, target (after actions), and final (after reverting actions) states.Once you have generated .heapsnapshot files using take_heapsnapshot, compare them with Chrome DevTools MCP memory tools.
get_heapsnapshot_summary for each snapshot to confirm that the files load and to compare high-level totals.compare_heapsnapshots to compare baseline and target snapshots. Start without classIndex for the summary diff, then request detailed class diffs only for suspicious growth by specifying classIndex.compare_heapsnapshots before drilling into specific node IDs.When a class or object type grows unexpectedly, inspect the retaining chain and dominators with the MCP tools before changing code.
get_heapsnapshot_class_nodes to list instances of the suspicious class.get_heapsnapshot_retainers, get_heapsnapshot_retaining_paths, get_heapsnapshot_dominators, and get_heapsnapshot_edges to understand why representative nodes are still reachable.get_heapsnapshot_object_details with a specific nodeId to retrieve detailed object metadata (size, type, distance, and DOM detachedness).get_heapsnapshot_duplicate_strings when string growth dominates the diff.Use built-in MCP memory tools and filters to pinpoint specific leak categories directly without external tools.
get_heapsnapshot_details or get_heapsnapshot_class_nodes with filterName to target common leak causes:
objectsRetainedByDetachedDomNodes: Identifies detached DOM elements retained in memory.objectsRetainedByEventHandlers: Identifies objects kept alive by unremoved event listeners.objectsRetainedByContexts: Identifies objects trapped in closures or execution contexts.objectsRetainedByConsole: Identifies objects retained by console logging.