java-idioms

java-idioms is a skill for Claude Code, Codex, Gemini CLI from irahardianto/rugged-gemini. It costs 0 tokens per session (1,339 once invoked), scanned A, original, MIT.

A guide to writing clear, type-safe code in modern Java, including features introduced in Java 17 and later. It covers records, sealed types, pattern matching, and framework-aware coding.

In plain words
What is it for?
Use it when designing Java data objects, restricted type hierarchies, result handling, and other everyday implementation patterns.
Why use it?
It helps Java code stay readable and reduces repetitive or error-prone patterns while fitting the language's standard tools and frameworks.

Skill for Claude CodeCodexGemini CLI

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/irahardianto/rugged-gemini/java-idioms
Any agent
npx skills add irahardianto/rugged-gemini --skill java-idioms
Clone the repo
git clone --depth 1 https://github.com/irahardianto/rugged-gemini

Made for: Claude Code, Codex, Gemini CLI.

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 java-idioms

README.md
[![agentmods](https://agentmods.dev/badge/skills/irahardianto/rugged-gemini/java-idioms.svg)](https://agentmods.dev/skills/irahardianto/rugged-gemini/java-idioms)
Your own site
<a href="https://agentmods.dev/skills/irahardianto/rugged-gemini/java-idioms"><img src="https://agentmods.dev/badge/skills/irahardianto/rugged-gemini/java-idioms.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,339 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.00000 $0.01339
Opus 5 $0.00000 $0.00669
Sonnet 5 $0.00000 $0.00268
Haiku 4.5 $0.00000 $0.00134

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

Security

Grade A, and why

java-idioms 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 5d 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.

.gemini/skills/java-idioms/SKILL.md · 168 lines

How it starts

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

Java Idioms and Patterns

Java rewards clarity, type safety, and robust ecosystem tooling. Modern Java (17+ LTS) favors records, sealed classes, and pattern matching. Idiomatic Java = clean, readable, framework-aware.

Scope: Java coding idioms. Test naming: GEMINI.md § Testing Strategy. Logging: @.gemini/skills/logging-and-observability-principles/SKILL.md.

Modern Java Features (17+ LTS)

  1. Records for immutable data carriers:

    // ✅ Concise, immutable, auto-generated equals/hashCode/toString
    public record CreateTaskRequest(String title, Priority priority) {}
    
    // ❌ Verbose boilerplate POJO
    public class CreateTaskRequest { /* getters, setters, equals, hashCode... */ }
    
  2. Sealed classes for constrained hierarchies:

    public sealed interface TaskResult permits Success, Failure, Pending {}
    public record Success(Task task) implements TaskResult {}
    public record Failure(String reason) implements TaskResult {}
    public record Pending(String taskId) implements TaskResult {}
    
  3. Pattern matching with switch:

    return switch (result) {
        case Success(var task) -> ResponseEntity.ok(task);
        case Failure(var reason) -> ResponseEntity.badRequest().body(reason);
        case Pending(var id) -> ResponseEntity.accepted().body(id);
    };
    
  4. Text blocks for queries and templates:

    String query = """
        SELECT t.id, t.title, t.priority
        FROM tasks t
        WHERE t.user_id = ?
        ORDER BY t.created_at DESC
        """;
    
  5. Virtual threads (21+) for I/O-bound work:

    try (var executor = Executors.newVirtualThreadPerTaskExecutor()) {
        executor.submit(() -> fetchUser(userId));
        executor.submit(() -> fetchTasks(userId));
    }
    

Error Handling

  1. Domain exception hierarchies — never raw Exception:
    public abstract class DomainException extends RuntimeException {
        protected DomainException(String message) { super(message); }
    }
    
    public class NotFoundException extends DomainException {
        private final String resource;
        private final String resourceId;
        public NotFoundException(String resource, String resourceId) {
            super(String.format("%s '%s' not found", resource, resourceId));
            this.resource = resource;
            this.resourceId = resourceId;
        }
    }
    

Read the full file on GitHub · 168 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. 5d ago First seen · 168 lines · 0 tokens per session scan A 4cb91c8c36c8

Subscribe to this mod's changes

java-idioms is a skill published in the GitHub repository irahardianto/rugged-gemini (5 stars, last pushed 3mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,339 tokens. 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

wxjava-api-contributor

按 WxJava 的 Maven 多模块、Java 8、公共 API 兼容性和 TestNG 约定,为微信官方接口新增或维护 SDK 支持。适用于新增 Service API、请求响应 Bean、序列化、HTTP 实现、Starter 配置或回归测试时。.

binarywang/WxJava · 68 tokens

azure-security-keyvault-secrets-java

Azure Key Vault Secrets Java SDK for secret management. Use when storing, retrieving, or managing passwords, API keys, connection strings, or other sensitive configuration data.

microsoft/skills · 40 tokens

azure-ai-anomalydetector-java

Build anomaly detection applications with Azure AI Anomaly Detector SDK for Java. Use when implementing univariate/multivariate anomaly detection, time-series analysis, or AI-powered monitoring.

microsoft/skills · 43 tokens

azure-communication-chat-java

Build real-time chat applications with Azure Communication Services Chat Java SDK. Use when implementing chat threads, messaging, participants, read receipts, typing notifications, or real-time chat features.

microsoft/skills · 41 tokens

azure-communication-common-java

Azure Communication Services common utilities for Java. Use when working with CommunicationTokenCredential, user identifiers, token refresh, or shared authentication across ACS services.

microsoft/skills · 35 tokens

azure-data-tables-java

Build table storage applications with Azure Tables SDK for Java. Use when working with Azure Table Storage or Cosmos DB Table API for NoSQL key-value data, schemaless storage, or structured data at scale.

microsoft/skills · 47 tokens