plugins marketplace
← All plugins

jdb-debugger

v1.0.0

Debug Java applications in real time using JDB (Java Debugger CLI). Attach to running JVMs or launch new ones under JDB, set breakpoints, step through code, inspect variables, analyze threads, and diagnose exceptions.

Claude Code1 skill

by brunoborges64updated 5 months ago

Source

git clone https://github.com/brunoborges/jdb-agentic-debugger

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

Layout

jdb-debugger/
├── .claude-plugin/plugin.json
└── skills/jdb-debugger/SKILL.md

Skills1

jdb-debuggerskills/jdb-debugger/SKILL.md

Debug Java applications in real time using JDB (Java Debugger CLI). Attach to running JVMs or launch new ones under JDB, set breakpoints, step through code, inspect variables, analyze threads, and diagnose exceptions. Use when debugging Java programs, investigating runtime behavior, or diagnosing production issues on JVMs with JDWP enabled.

Manifests1

.claude-plugin/plugin.json
{
  "name": "jdb-debugger",
  "version": "1.0.0",
  "description": "Debug Java applications in real time using JDB (Java Debugger CLI). Attach to running JVMs or launch new ones under JDB, set breakpoints, step through code, inspect variables, analyze threads, and diagnose exceptions.",
  "keywords": [
    "java",
    "debugger",
    "jdb",
    "debugging",
    "jvm",
    "jdwp",
    "development-tools",
    "troubleshooting"
  ],
  "author": {
    "name": "brunoborges"
  },
  "agents": [
    "./agents/jdb-debugger.agent.md",
    "./agents/jdb-session.agent.md",
    "./agents/jdb-diagnostics.agent.md",
    "./agents/jdb-analyst.agent.md"
  ]
}