# Memray

> Use this skill when the user wants to profile Python memory usage, find memory leaks, generate flame graphs, or analyze Python application memory behavior.

- Skill: `javimosch/memray` (Agent Skill)
- Install (CLI): `npx skillmds@latest add javimosch/memray`
- Raw SKILL.md: https://api.skillmd.com/api/skills/javimosch/memray/raw
- Safety review: PASS (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: javimosch (https://skillmd.com/u/javimosch)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/javimosch/memray

---


# memray Plugin

Memory profiler for Python applications with live flame graphs and reports.

## Commands

### Run
- `memray run profile` — Profile a Python script

### Flamegraph
- `memray flamegraph generate` — Generate a flame graph from a snapshot

### Table
- `memray table generate` — Generate a table report from a snapshot

## Usage Examples
- "Profile this Python script for memory usage"
- "Generate a flame graph from the memory snapshot"
- "Show memory allocations in a table"

## Installation

```bash
pip install memray
```

## Examples

```bash
# Profile a script
memray run my_script.py

# Profile and generate live flamegraph
memray run --live my_script.py

# Generate flame graph from snapshot
memray flamegraph output.bin

# Generate table report
memray table output.bin

# Show statistics
memray stats output.bin

# Track specific function
memray run -f my_function my_script.py
```

