Skip to content

/java-concurrency-review

Reviews Java code for thread safety, race conditions, deadlocks, and Java 21 virtual thread compatibility. Use when user asks to "review concurrency", "is this thread safe", "check for race conditions", "concurrency issues", or "virtual thread compatible".

shell
$ npx -y skills add ducpm2303/claude-java-plugins --skill java-concurrency-review --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.
  • You can call itInvoke it directly when you want it.
  • Slash command/java-concurrency-review
How auto-invocation works

Context preview

The summary Claude sees to decide when to auto-load this skill.

Reviews Java code for thread safety, race conditions, deadlocks, and Java 21 virtual thread compatibility. Use when user asks to "review concurrency", "is this thread safe", "check for race conditions", "concurrency issues", or "virtual thread compatible".

SKILL.md

java-concurrency-review.SKILL.md
description: Reviews Java code for thread safety, race conditions, deadlocks, and Java 21 virtual thread compatibility. Use when user asks to "review concurrency", "is this thread safe", "check for race conditions", "concurrency issues", or "virtual thread compatible".
argument-hint: "[paste concurrent code or select in editor]"
allowed-tools: Read, Grep, Glob

Review the Java code for concurrency correctness. Before reviewing, detect the Java version from `pom.xml` or `build.gradle` — suggest modern alternatives only if the version supports them.

Step 1 — Identify concurrency primitives in use

List all concurrency mechanisms found: `synchronized`, `volatile`, `AtomicXxx`, `Lock`, `ExecutorService`, `CompletableFuture`, `CountDownLatch`, `Semaphore`, `BlockingQueue`, virtual threads (Java 21+).

Step 2 — Review for race conditions

  • Flag shared mutable fields accessed from multiple threads without synchronization
  • Flag read-modify-write operations (e.g., `count++`) not wrapped in `synchronized` or `AtomicInteger`
  • Flag non-atomic check-then-act patterns: `if (map.containsKey(k)) map.get(k)` → suggest `map.computeIfAbsent()`
  • Flag `HashMap` shared across threads → suggest `ConcurrentHashMap`
  • Flag `ArrayList` / `HashSet` shared across threads → suggest concurrent alternatives

Step 3 — Review for deadlocks

  • Flag multiple locks acquired in inconsistent order across methods
  • Flag `synchronized` calls that invoke external/unknown code while holding a lock
  • Flag `ReentrantLock` without `try/finally` unlock → lock may never be released
  • Flag nested `synchronized` blocks on different objects

Step 4 — Review synchronization granularity

  • Flag `synchronized` on entire methods where only a small critical section needs protection
  • Suggest `ReentrantLock` for fine-grained locking with timeout capability
  • Flag `synchronized(this)` in classes exposed to external code → suggest private lock object
  • For Java 21+: flag `synchronized` on virtual thread code → suggest `ReentrantLock` (avoids carrier thread pinning)

Step 5 — Review visibility

  • Flag fields shared across threads without `volatile`, `AtomicXxx`, or synchronization
  • Flag `boolean` flag fields used to stop threads → must be `volatile` or `AtomicBoolean`
  • Flag lazy initialization without double-checked locking or `volatile`

Step 6 — Review thread lifecycle

  • Flag `new Thread(...)` created directly in application code → suggest `ExecutorService`
  • Flag `ExecutorService` never shut down → resource leak
  • Flag unbounded thread pools (`Executors.newCachedThreadPool()`) under high load → suggest bounded pool
  • For Java 21+: suggest `Executors.newVirtualThreadPerTaskExecutor()` for I/O-bound workloads

Output format

1. **Summary** — overall thread safety assessment 2. **Issues** — grouped by: 🔴 Critical (data corruption risk) / 🟡 Warning (potential deadlock/liveness) / 🔵 Suggestion (improvement) 3. **Each issue**: location + problem + fix with before/after code

Next Steps

  • If deadlock risk found → suggest running thread dump analysis: `jstack <pid>`
  • If using Java 21+ → consider `/java-virtual-threads` modernization
  • After fixes → run `/java-review` for general code quality
Read more
Read it on GitHub ↗
Ships withclaude-java-plugins

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.

Get the whole plugin, auto-invoked
Stats
17
Stars
0
Views
0
Forks
Maintained
Maintenance
Shell
Language
3mo ago
Last commit
4mo ago
Created

Repo: ducpm2303/claude-java-plugins

Other skills on claude-java-plugins.