java

A Java coding guide for writing and reviewing modern Java code, using Java 21 as its baseline and calling out Java 25 features separately.

In plain words
What is it for?
Use it when creating or reviewing Java applications, libraries, tests, and build tooling. It covers topics such as records, sealed classes, exceptions, concurrency, security, and resource management.
Why use it?
It helps avoid common design, error-handling, concurrency, security, testing, and tooling mistakes. It also gives consistent rules for choosing Java language features and patterns.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/sumonmselim/agentguard/java
Any agent
npx skills add SumonMSelim/agentguard --skill java
Clone the repo
git clone --depth 1 https://github.com/SumonMSelim/agentguard

Made for: Claude Code, Codex.

Per session 44 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,492 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00044 $0.01492
Opus 5 $0.00022 $0.00746
Sonnet 5 $0.00009 $0.00298
Haiku 4.5 $0.00004 $0.00149

Measured 2d ago against content hash d11a448d16b9, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

java 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 2d ago.

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.

skills/java/SKILL.md · 95 lines

How it starts

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

Java

Design

  • Composition over inheritance. Extend only for true is-a relationships
  • Immutability by default. final fields, no setters unless mutation required
  • Records for data carriers (16+). No boilerplate POJOs
  • Sealed classes for closed type hierarchies (17+). Use exhaustive switch expressions over them
  • Pattern matching instanceof (16+): if (obj instanceof String s) — no explicit cast
  • Small interfaces. One concern per interface
  • Factory methods or builders over telescoping constructors
  • No null in public APIs. Optional<T> for absent values. Never Optional as field type
  • Objects.requireNonNull(param, "param") at method entry for non-null enforcement

Errors

  • Checked exceptions for recoverable conditions callers must handle. Unchecked for programming errors
  • Never catch Exception or Throwable except at boundaries (HTTP handler, queue consumer)
  • Log full stack trace. Never swallow exceptions silently
  • try-with-resources for all Closeable. No manual finally close blocks
  • Catch specific exceptions. Never use exceptions for flow control

Modern Java

  • var where type is obvious from right-hand side. Not to obscure types
  • Streams for transformation pipelines. Stream.toList() (16+) over Collectors.toList()
  • List.of(), Map.of(), Set.of() for immutable collections. List.copyOf() for defensive copy
  • Sequenced collections (21+): SequencedCollection, getFirst(), getLast() over index hacks
  • switch expressions over statements. Pattern matching in switch (21+) with exhaustive coverage
  • Unnamed patterns and variables (22+, stable 25): catch (IOException _), case Point(int x, _)
  • Record patterns (21+): if (obj instanceof Point(int x, int y))
  • Text blocks for multiline strings (SQL, JSON, HTML). No string concat across lines
  • Stream gatherers (22+, stable 25): stream.gather(...) for custom intermediate operations
  • instanceof checks before casts eliminated — use pattern matching everywhere

Read the full file on GitHub · 95 lines

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. 2d ago First seen · 95 lines · 0 tokens per session scan A d11a448d16b9

Subscribe to this mod's changes

java is a skill published in the GitHub repository SumonMSelim/agentguard (56 stars, last pushed 1mo ago), licensed MIT. It adds 44 tokens to every session and 1,492 once invoked, about $0.0002 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-30.