awesome-agv: Skill for Claude Code

.agents/skills/java-idioms/SKILL.md

java-idioms is a skill for Claude Code from irahardianto/awesome-agv. It costs 0 tokens per session (1,336 once invoked), scanned A, original, MIT.

A guide to writing clear, type-safe code in modern Java, especially Java 17 and later. It covers common language patterns such as records, sealed classes, and pattern matching.

In plain words
What is it for?
Use it when writing or reviewing Java code. It helps with immutable data objects, limited class hierarchies, and handling different result types.
Why use it?
It helps keep Java code readable and consistent while avoiding unnecessary boilerplate. It also points developers toward language features suited to common design problems.

Skill for Claude Code

Written for Claude Code: paths in frontmatter. Also seen: installed under .agents/ (shared by several agents).

This is irahardianto/awesome-agv's own configuration. It tells Claude Code how to work on awesome-agv itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything awesome-agv configures →

Reuse

Borrowing it

Nothing to install: this file belongs to irahardianto/awesome-agv. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/irahardianto/awesome-agv/main/.agents/skills/java-idioms/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/irahardianto/awesome-agv

Made for: Claude Code.

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/awesome-agv/java-idioms.svg)](https://agentmods.dev/skills/irahardianto/awesome-agv/java-idioms)
Your own site
<a href="https://agentmods.dev/skills/irahardianto/awesome-agv/java-idioms"><img src="https://agentmods.dev/badge/skills/irahardianto/awesome-agv/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,336 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.00000 $0.01336
Opus 5 $0.00000 $0.00668
Sonnet 5 $0.00000 $0.00267
Haiku 4.5 $0.00000 $0.00134

Measured 7d ago against content hash 836d0f0e8f2e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, 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 7d 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.

.agents/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: .agents/rules/testing-strategy.md. Logging: @.agents/skills/logging-implementation/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. 7d ago First seen · 168 lines · 0 tokens per session scan A 836d0f0e8f2e

Subscribe to this mod's changes

java-idioms is a skill published in the GitHub repository irahardianto/awesome-agv (156 stars, last pushed 16d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,336 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-30.