plugins marketplace
← All plugins

jvm-pulse

v1.0.0

Profile any Java project's garbage collection and JFR telemetry: capture (locally, attached to a running JVM, or in a container), analyze with GCToolkit + jfr, and get a shareable static HTML report.

Claude Code1 skill

by Bruno Borges24updated 1 week ago

Source

git clone https://github.com/brunoborges/jvm-pulse

Clone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.

Layout

jvm-pulse/
├── .claude-plugin/plugin.json
└── skills/pulse/SKILL.md

Skills1

pulseskills/pulse/SKILL.md

Use when profiling a Java project's memory/GC behavior, diagnosing an OutOfMemoryError or GC pauses, or tuning JVM heap/collector settings. Captures GC+JFR telemetry (local launch, attached to an already-running JVM, or inside a container) and produces a shareable static HTML report.

Manifests1

.claude-plugin/plugin.json
{
  "name": "jvm-pulse",
  "version": "1.0.0",
  "description": "Profile any Java project's garbage collection and JFR telemetry: capture (locally, attached to a running JVM, or in a container), analyze with GCToolkit + jfr, and get a shareable static HTML report.",
  "author": {
    "name": "Bruno Borges",
    "url": "https://github.com/brunoborges"
  },
  "keywords": [
    "java",
    "jvm",
    "garbage-collection",
    "jfr",
    "flight-recorder",
    "gctoolkit",
    "performance",
    "profiling"
  ]
}