jdtls-lombok-fix

jdtls-lombok-fix is a skill for Claude Code from SkillPanel/claude-plugins. It costs 154 tokens per session (1,223 once invoked), scanned A, original, MIT.

A repair for false error messages from JDTLS, the Java language server, in projects that use Lombok. Lombok is a Java library that generates code such as getters, builders, and loggers during compilation.

In plain words
What is it for?
Use it when JDTLS reports missing Lombok-generated methods or fields while the normal Java build succeeds.
Why use it?
It removes editor diagnostics that appear to be errors even though the project builds successfully with Maven or Gradle.

Skill for Claude Code

Written for Claude Code: ${CLAUDE_PLUGIN_ROOT} variable. Also seen: mentions Claude Code.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the jdtls-lombok-fix plugin — 1 skill shipped together

Good fit Use it when JDTLS reports missing Lombok-generated methods or fields while the normal Java build succeeds.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add SkillPanel/claude-plugins
Claude Code
/plugin install jdtls-lombok-fix

Made for: Claude Code.

Or install jdtls-lombok-fix, the plugin that ships this one along with the rest of its 1 skill.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for jdtls-lombok-fix

README.md
[![agentmods](https://agentmods.dev/badge/skills/skillpanel/claude-plugins/jdtls-lombok-fix/github.svg)](https://agentmods.dev/skills/skillpanel/claude-plugins/jdtls-lombok-fix)
Your own site
<a href="https://agentmods.dev/skills/skillpanel/claude-plugins/jdtls-lombok-fix"><img src="https://agentmods.dev/badge/skills/skillpanel/claude-plugins/jdtls-lombok-fix/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for jdtls-lombok-fix

Your own site · 80×15
<a href="https://agentmods.dev/skills/skillpanel/claude-plugins/jdtls-lombok-fix"><img src="https://agentmods.dev/badge/skills/skillpanel/claude-plugins/jdtls-lombok-fix.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 154 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,223 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00154 $0.01223
Opus 5 $0.00077 $0.00611
Sonnet 5 $0.00031 $0.00245
Haiku 4.5 $0.00015 $0.00122

Measured 9d ago against content hash 3ac9189c135b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

jdtls-lombok-fix scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/apply_patch.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/jdtls-lombok-fix/skills/jdtls-lombok-fix/SKILL.md · 77 lines

How it starts

The opening of the file, as written. The whole thing — 77 lines — stays where its author put it; the contents beside it link to each section on GitHub.

jdtls-lombok-fix

Claude Code's jdtls-lsp plugin starts Eclipse JDT LS without the Lombok javaagent. Lombok's compile-time magic (@Slf4j, @Getter, @Builder, @RequiredArgsConstructor, @Data, …) never gets applied inside JDTLS, so every Lombok-using class lights up with false errors in the language server's diagnostics — while Maven/Gradle compile just fine because they have Lombok on the annotation-processor path.

The noise is indistinguishable from real compile errors unless you know the fingerprint, and it distracts from actual code review. This skill applies the workaround documented in https://github.com/anthropics/claude-plugins-official/issues/1000: patch the official plugin marketplace's marketplace.json so that jdtls-lsp starts JDTLS with --jvm-arg=-javaagent:<lombok.jar>.

Preconditions

Run this ONLY when both are true:

  1. You've seen one or more diagnostics matching the Lombok fingerprint below.
  2. The build tool is not also reporting those errors. If you haven't run a build recently, run the project's normal build command (./mvnw compile, ./gradlew compileJava, etc.) and confirm it succeeds. If it fails, the errors are real — do NOT apply this patch; fix the code instead.

Lombok fingerprint

Diagnostic message Likely annotation
log cannot be resolved (often JDT code [570425394]) @Slf4j, @Log4j2, @Log, @CommonsLog
The method builder() is undefined for the type X @Builder, @SuperBuilder
The method getX() / setX() is undefined for the type Y @Getter, @Setter, @Data, @Value
The blank final field X may not have been initialized ([33554513]) @RequiredArgsConstructor, @AllArgsConstructor, @Data
The constructor X(...) is undefined @RequiredArgsConstructor, @AllArgsConstructor, @NoArgsConstructor
The method toBuilder() is undefined @Builder(toBuilder=true)

Read the full file on GitHub · 77 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 77 lines · 0 tokens per session scan A 3ac9189c135b

Subscribe to this mod's changes

jdtls-lombok-fix is a skill published in the GitHub repository SkillPanel/claude-plugins (3 stars, last pushed 4mo ago), licensed MIT. It adds 154 tokens to every session and 1,223 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

nullaway

Guide for resolving NullAway static analysis errors. Best practices for: Passing ObservableSupplier/Supplier Dereferencing potentially @Nullable values Adding @NullMarked to Java code.

chromium/chromium · 43 tokens

wxjava-troubleshooter

A troubleshooting guide for WxJava, a Java library used to connect applications to WeChat services. It organizes problems involving setup, access tokens, signatures, payment certificates, callbacks, data conversion, network requests, and multiple accounts.

binarywang/WxJava · 65 tokens

performance-smell-detection

Detect potential code-level performance smells in Java - streams, collections, boxing, regex, object creation. Provides awareness, not absolutes - always measure before optimizing. For JPA/database performance, use jpa-patterns instead.

decebals/claude-code-java · 51 tokens

126-java-exception-handling

Use when you need to apply Java exception handling best practices — including using specific exception types, managing resources with try-with-resources, securing exception messages, preserving error context via exception chaining, validating inputs early with fail-fast principles, handling thread interruption…

jabrena/plinth · 144 tokens

jstall

This skill should be used when the user asks about "JVM performance", "Java thread dump", "Java deadlock", "JVM diagnosis", "what is my Java application doing", "slow Java", "Java profiling", "flamegraph", "Java CPU usage", "thread contention", "JVM inspection", "jstall", or any question about analyzing, debugging, or…

parttimenerd/jstall · 87 tokens

java-heap-dump-triage

A guide for investigating Java memory problems using heap dumps and related reports. A heap dump is a snapshot of objects held in the Java Virtual Machine's memory.

TencentBlueKing/bk-ci · 162 tokens