Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计通过

configure-memory-profiling配置内存分析

Agent Skill

configure-memory-profiling 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,333

周安装

55

GitHub Stars

28

下载量

436
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:configure-memory-profiling(配置内存分析)
来源仓库:https://github.com/laurigates/claude-plugins
仓库路径:skills/configure-memory-profiling
安装命令:
npx skills add https://github.com/laurigates/claude-plugins --skill configure-memory-profiling
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/laurigates/claude-plugins --skill configure-memory-profiling

简介

configure-memory-profiling 用于 Python 项目的内存分析基础设施搭建。

  • 适用于内存泄漏检测与对象分配热点定位。configure-memory-profiling 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 集成 pytest-memray 实现 CI 回归防护。
  • 仅限 Python 项目使用,其他语言需另选工具链。
  • 建议在低峰期运行以避免影响正常开发流程。

SKILL.md

/configure:memory-profiling

Check and configure memory profiling infrastructure for Python projects using pytest-memray.

When to Use This Skill

Use this skill when...Use another approach when...
Setting up memory profiling for a Python project from scratchProject is not Python — memray/pytest-memray are Python-only
Adding pytest-memray integration for CI memory regression detectionProfiling CPU performance — use cProfile or py-spy instead
Configuring memory leak detection in test suitesRunning load/stress tests — use /configure:load-tests
Setting memory thresholds and allocation benchmarks for CIQuick one-off memory check — run uv run pytest --memray directly
Enabling native C extension stack tracking for deep profilingProfiling production systems live — use memray standalone or Grafana

Context

  • Project root:!pwd
  • Python project:!find. -maxdepth 1 \(-name 'pyproject.toml' -o -name 'setup.py' \)
  • pytest-memray installed:!grep -r 'pytest-memray' pyproject.toml requirements*.txt
  • memray installed:!grep -r 'memray' pyproject.toml requirements*.txt
  • Conftest fixtures:!grep -l 'memray' tests/conftest.py
  • Memory test files:!find tests -maxdepth 2 -name '*memory*' -o -name '*memray*'
  • Benchmark tests:!find tests -maxdepth 2 -type d -name 'benchmarks'
  • CI workflows:!find.github/workflows -maxdepth 1 -name '*memory*'
  • Memory reports dir:!find. -maxdepth 1 -type d -name 'memory-reports'

Parameters

Parse from $ARGUMENTS:

  • --check-only: Report memory profiling compliance status without modifications
  • --fix: Apply all fixes automatically without prompting
  • --threshold <mb>: Set default memory threshold in MB (default: 100)
  • --native: Enable native stack tracking for C extensions

Supported tools:

ToolBest For
pytest-memray (recommended)Test-integrated profiling, CI/CD memory limits, leak detection
memray standaloneDeep analysis, flame graphs, production profiling
tracemallocQuick debugging, no dependencies, lightweight

Execution

Execute this memory profiling configuration check:

Step 1: Verify this is a Python project

Read the context values. If no pyproject.toml or setup.py is found, report "Not a Python project" and stop.

Step 2: Check latest tool versions

Use WebSearch or WebFetch to verify current versions:

  1. pytest-memray: Check PyPI
  2. memray: Check PyPI

Step 3: Analyze current memory profiling setup

Check for complete setup:

  • pytest-memray installed as dev dependency
  • memray backend installed
  • pytest configuration in pyproject.toml (markers, addopts)
  • Memory limit tests using @pytest.mark.limit_memory
  • Leak detection enabled (--memray-leak-detection)
  • Native tracking configured (if --native flag)
  • CI/CD integration configured
  • Reports directory exists

Step 4: Generate compliance report

Print a compliance report covering:

  • Installation status (pytest-memray, memray, pytest versions)
  • Configuration (pytest integration, markers, leak detection, native tracking)
  • Test coverage (memory limit tests, allocation benchmarks)
  • CI/CD integration (workflow, threshold, artifact upload, trend tracking)

End with overall issue count and recommendations.

If --check-only is set, stop here.

Step 5: Install and configure pytest-memray (if --fix or user confirms)

  1. Install pytest-memray: uv add --group dev pytest-memray
  2. Install native support if --native: uv add --group dev pytest-memray[native]
  3. Update pyproject.toml with pytest configuration (markers, filterwarnings)
  4. Create memory-reports/ directory
  5. Use configuration templates from REFERENCE.md

Step 6: Create memory profiling test files

  1. Add memory fixtures to tests/conftest.py (reports dir setup, threshold fixture, data generator)
  2. Create tests/test_memory_example.py with example memory limit tests
  3. Create tests/benchmarks/test_memory_benchmarks.py for trend tracking
  4. Use test templates from REFERENCE.md

Step 7: Add package scripts

Add memory profiling commands to Makefile or pyproject.toml:

  • test-memory: uv run pytest --memray
  • test-memory-report: Run with bin output + generate flame graph
  • test-memory-leaks: uv run pytest --memray --memray-leak-detection
  • test-memory-native: uv run pytest --memray --native

Step 8: Configure CI/CD integration

Create .github/workflows/memory-profiling.yml with:

  • Memory profiling on PRs (detect regressions)
  • Scheduled weekly benchmarks for trend tracking
  • Flame graph generation
  • PR comment with results
  • Use workflow template from REFERENCE.md

Step 9: Update standards tracking

Update .project-standards.yaml:

components:
  memory_profiling: "2025.1"
  memory_profiling_tool: "pytest-memray"
  memory_profiling_threshold_mb: 100
  memory_profiling_leak_detection: true
  memory_profiling_ci: true
  memory_profiling_native: false

Step 10: Print final compliance report

Print a summary of packages installed, configuration applied, test files created, commands available, CI/CD configured, and next steps for the user.

For detailed test templates, CI workflows, and standalone memray commands, see REFERENCE.md.

Agentic Optimizations

ContextCommand
Quick compliance check/configure:memory-profiling --check-only
Auto-fix all issues/configure:memory-profiling --fix
Run memory testsuv run pytest --memray
Detect memory leaksuv run pytest --memray --memray-leak-detection
Run with native trackinguv run pytest --memray --native
Generate flamegraphuv run memray flamegraph output.bin -o flamegraph.html

Flags

FlagDescription
--check-onlyReport status without offering fixes
--fixApply all fixes automatically without prompting
--threshold <mb>Set default memory threshold in MB (default: 100)
--nativeEnable native stack tracking for C extensions

Examples

# Check compliance and offer fixes
/configure:memory-profiling

# Check only, no modifications
/configure:memory-profiling --check-only

# Auto-fix with custom threshold
/configure:memory-profiling --fix --threshold 200

# Enable native tracking for C extensions
/configure:memory-profiling --fix --native

Error Handling

  • Not a Python project: Skip with message, suggest manual setup
  • pytest not installed: Offer to install pytest first
  • memray not supported: Note platform limitations (Linux/macOS only)
  • Native tracking unavailable: Warn about missing debug symbols
  • CI workflow exists: Offer to update or skip

See Also

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.73%
按下载量换算151

Claude

30.66%
按下载量换算134

Cursor

18.61%
按下载量换算81

Gemini CLI

10.55%
按下载量换算46

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/laurigates/claude-plugins --skill configure-memory-profiling 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills