Claude Java Plugins banner
ducpm2303 ducpm2303

Claude Java Plugins

Development community

Description

Java developer toolkit for Claude Code — skills, agents, hooks, and coding standards for Java 8+ projects

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

Java Plugins for Claude Code

A Claude Code plugin marketplace with 3 focused plugins for Java developers. All plugins support **Java 8 through Java 21** and tailor advice to your target Java version.

Plugins

Plugin Skills Commands Agents Install when
java-core 14 2 java-architect, java-build-resolver Every Java project
java-spring 9 2 java-spring-expert Spring Boot projects
java-quality 3 1 java-security-reviewer, java-performance-reviewer, java-test-engineer Quality enforcement

Quick Setup (5 minutes)

  1. Copy `templates/CLAUDE.md.template` to your Java project root as CLAUDE.md and fill in the placeholders
  2. Copy `templates/settings.json.template` to .claude/settings.local.json to pre-approve build/test commands
  3. Install the plugins (below)

Installation

Step 1 — Add the marketplace

/plugin marketplace add ducpm2303/claude-java-plugins

Step 2 — Install plugins

/plugin install java-core@java-plugins       # every Java project
/plugin install java-spring@java-plugins     # Spring Boot projects
/plugin install java-quality@java-plugins    # security + performance + testing

Updating

/plugin marketplace update java-plugins

Skills (auto-invoked)

Skills activate automatically based on context, or invoke them explicitly.

java-core

Skill What it does
/java-core:java-review Review Java code for bugs, naming issues, and version-appropriate idioms
/java-core:java-refactor Suggest and apply version-gated refactorings
/java-core:java-explain Explain Java code in plain language
/java-core:java-fix Diagnose compile errors or stack traces
/java-core:java-docs Generate Javadoc for classes and methods
/java-core:java-health Structural health score across Security, Tests,