build-jvm-analysis
Installation
SKILL.md
JVM Analysis
Patterns for analyzing, optimizing, and debugging JVM applications — both static and runtime.
Philosophy
- Measure before tuning — profile first, optimize based on evidence
- Static + runtime complement — static finds structural issues, runtime finds behavioral issues
- Production-safe tooling — low overhead profilers that won't crash or slow production
- Understand tool limitations — safepoint bias, entry point coverage, what tools can't see
- Right tool for the job — no single tool does everything