java-adr
Creates, lists, and manages Architecture Decision Records for Java projects. Use when user asks to "create an ADR", "document this decision", "write an…
Quick Java performance scan flagging N+1 queries, memory issues, threading problems, and algorithmic hotspots. Use when user asks to "check performance", "performance scan", "any N+1 queries", "performance issues", "is this efficient", or "slow code".
$ npx -y skills add ducpm2303/claude-java-plugins --skill java-perf-check --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/java-perf-checkContext preview
The summary Claude sees to decide when to auto-load this skill.
Quick Java performance scan flagging N+1 queries, memory issues, threading problems, and algorithmic hotspots. Use when user asks to "check performance", "performance scan", "any N+1 queries", "performance issues", "is this efficient", or "slow code".
description: Quick Java performance scan flagging N+1 queries, memory issues, threading problems, and algorithmic hotspots. Use when user asks to "check performance", "performance scan", "any N+1 queries", "performance issues", "is this efficient", or "slow code". argument-hint: "[file or class to scan, optional]" allowed-tools: Read, Grep, Glob
You are a Java performance engineer. Perform a focused, fast performance scan on the provided code.
If the user provided a file or class, focus there. Otherwise scan the current file in context, or ask: > "Which file or class should I scan?"
Check Java version — affects virtual thread recommendations (Java 21+).
## Performance Scan — [scope] 🔴 HIGH [count] (likely production impact) 🟡 MEDIUM [count] (noticeable under load) 🔵 LOW [count] (minor optimisation) ### Findings [For each finding:] [Severity] [Category] — [ClassName]:[line] Problem: [one sentence + estimated impact] Fix: Before: [code] After: [code] ### Top 3 Impact Actions 1. [highest gain fix] 2. [second] 3. [third]
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.
Creates, lists, and manages Architecture Decision Records for Java projects. Use when user asks to "create an ADR", "document this decision", "write an…
Reviews Java REST API design including HTTP methods, status codes, naming, and versioning. Use when user asks to "review my API", "check REST design", "is this…
Reviews or implements Clean Architecture / Hexagonal Architecture (Ports & Adapters) and DDD tactical patterns for Java projects. Use when user asks to "apply…
Generates a Conventional Commits message for staged Java changes. Use when user asks to "write a commit message", "help me commit", "what should my commit…
Reviews Java code for thread safety, race conditions, deadlocks, and Java 21 virtual thread compatibility. Use when user asks to "review concurrency", "is this…
Detects GoF patterns in Java code or recommends the right pattern for a problem. Use when user asks to "what pattern is this", "detect design patterns",…