---
title: "Memory Benchmarks"
description: "Memory usage monitoring tools for repomix."
type: skill
canonical_url: https://claudary.paisolsolutions.com/skills/readme-590
source: "Claudary"
difficulty: intermediate
author: "Claude Code Knowledge Pack"
date: 2026-07-10T11:36:45.233Z
license: CC-BY-4.0
attribution: "Memory Benchmarks — Claudary (https://claudary.paisolsolutions.com/skills/readme-590)"
---

# Memory Benchmarks
Memory usage monitoring tools for repomix.

## Overview

# Memory Benchmarks

Memory usage monitoring tools for repomix.

## Setup

```bash
cd scripts/memory
npm install
```

## Quick Start

```bash
# Quick memory leak check
npm run leak:quick

# Detailed analysis
npm run leak:analyze
```

## Available Scripts

- `npm run leak:quick` - Fast leak detection (20 iterations)
- `npm run leak:watch` - Continuous monitoring  
- `npm run leak:analyze` - Comprehensive analysis with reports

## Understanding Results

- **Heap Memory**: JavaScript objects (should stabilize)
- **RSS Memory**: Total process memory (watch for growth > 100%)

Look for consistent upward trends that indicate memory leaks.

---

Source: [Claudary](https://claudary.paisolsolutions.com/skills/readme-590) · https://claudary.paisolsolutions.com
