Skip to content
Development
Skill

/java

Always load this skill when writing, modifying, creating, or moving Java or Kotlin source code, or when project setup has already chosen Java/Kotlin as the implementation language.

From plugin
tdder
1414 skills7 agents2 commands1 hook
Install
$ npx -y skills add t1/tdder --skill java --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.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/java

Context preview

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

Always load this skill when writing, modifying, creating, or moving Java or Kotlin source code, or when project setup has already chosen Java/Kotlin as the implementation language.

SKILL.md

java.SKILL.md
name: java
description: >
  Always load this skill when writing, modifying, creating, or moving Java or Kotlin source code,
  or when project setup has already chosen Java/Kotlin as the implementation language.
version: 0.3.0

Java & Kotlin Conventions

JVM language coding conventions complementing the TDD and Clean Code skills. We use modern language features to reduce boiler plate and get more to the point.

Java Version

When you need to know the latest Java version (e.g. for new projects, upgrades, or Dockerfiles), query the Adoptium API:

https://api.adoptium.net/v3/info/available_releases

Use `most_recent_feature_release` (latest GA) by default. Use `most_recent_lts` only when explicitly asked for LTS.

Code Style

Logic Expressions

  • Try to prevent negating expressions, e.g., instead of `a != b ? doX() : doY()`

use `a == b ? doY() : doX()`.

Line Breaks

  • Annotations can often go in the same line as the field or method they apply to.
  • Java: `@Override void foo() {` or `@Test void should() {`
  • Kotlin: `override fun foo() {` or `@Test fun should() {`

Local Type Inference

**Java:** Use `var` for local variable type inference where the type is clear from context.

var users = userRepository.findAll();
var count = items.size();

**Kotlin:** Type inference is the default. Prefer `val` (immutable) over `var` (mutable); only use `var` when the variable must be reassigned.

val users = userRepository.findAll()
var count = items.size  // only if count is later mutated

Static Imports (Java) / Imports (Kotlin)

**Java:** Prefer static imports when they do not reduce readability. This includes constants like `MediaType.APPLICATION_JSON`. The context is most often sufficient to understand what it is, e.g., `@Produces(APPLICATION_JSON)`. Exception: do not statically import `List.of(...)`, `Map.of(...)`, or the like, as a method name like `of` doesn't say, what it does. The number of usages of the import is **not** relevant!

import static jakarta.ws.rs.core.MediaType.APPLICATION_JSON;
import static org.assertj.core.api.BDDAssertions.then;
import static org.mockito.BDDMockito.given;

**Kotlin:** There are no static imports. Import top-level functions and object/companion members directly. The same readability rule applies — import short, context-sufficient names; avoid importing bare `of`.

import jakarta.ws.rs.core.MediaType.APPLICATION_JSON
import org.assertj.core.api.BDDAssertions.then
import org.mockito.kotlin.given

Javadoc / KDoc

**IMPORTANT** Use **Markdown** for doc comments to improve in-IDE readability. Java uses Javadoc (`/** */`); Kotlin uses KDoc (same `/** */` syntax, same Markdown support).

Comments

Add comments only if they add real value. Prefer self-explanatory code. Comments should explain "why", not "what".

Exception Handling

**Java:** Hide checked exceptions within a method by wrapping them in `RuntimeException` and add a helpful message:

try{
    return objectMapper.writeValueAsString(value);
} catch(JsonProcessingException e) {
    throw new RuntimeException("could not write value as string",e);
}

**Kotlin:** Has no checked exceptions, so no wrapping is needed. When calling Java APIs that declare checked exceptions, Kotlin treats them as unchecked — handle them only if recovery makes sense.

Log Output

`System.out` output is only acceptable for "normal" output in CLI tools. `System.err` output is only acceptable for warnings and diagnostics (logs) in CLI tools. In all other cases, use some logging API (preferably slf4j) and if necessary a library (preferably logback).

Constructors and Dependency Injection

When available, use the capabilities of a Dependency Injection framework like CDI. Even though constructor injection is not commonly used in CDI, it makes, e.g., unit-testing (when DI is *not* available) easier than field injection does. Injecting with setters is very seldom a sensible option to choose.

If the value of a field doesn't depend on constructor parameters, then use a **Field initializer**:

  • Java: `private final HttpClient httpClient = HttpClient.newHttpClient();`
  • Kotlin: `val httpClient = HttpClient.newHttpClient()`

Visibility

Only well-defined APIs are `public`. Internals are not, but have limited visibility, i.e. `private` if possible. If wider than `private` is needed:

  • Java: use package-private (no modifier)
  • Kotlin: use `internal` (module-visible)

`protected` is only rarely necessary in either language.

Testing Conventions

BDD Naming

Use BDD-style method names.

Java:

@Test void shouldParseSemanticVersion() { ... }

@Test void shouldReturnEmptyForInvalidInput() { ... }

Kotlin:

@Test fun shouldParseSemanticVersion() { ... }

@Test fun shouldReturnEmptyForInvalidInput() { ... }

BDD Assertions

For verifications, use `assertj-core`.

Use `then(...)` instead of `assertThat(...)`:

then(result).isEqualTo(expected);
then(list).hasSize(3).containsExactly("a","b","c");

BDD Mockito

Use `given(...).willReturn(...)` instead of `when(...).thenReturn(...)`. Place Mockito `given()` calls in the "given" block:

given(repository.findById(id)).willReturn(Optional.of(entity));

var result = service.process(id);

then(result).isNotNull();

If the `then` of AssertJ is imported, too, fall back to `verify`.

Test Block Formatting

  • Always use an **empty line** to separate given, when, and then blocks (no comments)
  • Within these blocks, do **not** add empty lines between statements

Java:

@Test void shouldCalculateTotal() {
    given(taxService.rate()).willReturn(0.1);

    var items = List.of(new Item(10), new Item(20));
    var total = calculator.calculate(items);

    then(total).isEqualTo(33.0);
}

Kotlin:

@Test fun shouldCalculateTotal() {
    given(taxService.rate()).willReturn(0.1)

    val items = listOf(
Read more
Ships withtdder

A plugin for pi, Claude Code, and OpenCode that guides AI agents through disciplined Test-Driven Development and Clean Code practices. Note that currently this is WORK IN PROGRESS! I'm not even trying to keep it stable or tested.

Get the whole plugin

Other skills on tdder.

app
Skill

app

This skill should be used when the user asks to "calculate code mass", "measure code complexity with APP", "compare implementations using APP", "apply Absolute…

@t1@t1View Skill
clean-code
Skill

clean-code

This skill should be used when the user asks to "refactor code", "review code quality", "apply clean code principles", "check for code smells", "improve code…

@t1@t1View Skill
grill-po
Skill

grill-po

Requirements grilling session with a Product Owner (or anyone in that role). Challenges plans against the existing domain model, sharpens terminology, and…

@t1@t1View Skill
maven
Skill

maven

Always load this skill when a pom.xml file exists in the project, when creating or editing a pom.xml, or when setting up Maven project structure in a new…

@t1@t1View Skill