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…
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.
$ npx -y skills add t1/tdder --skill java --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/javaContext 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.
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
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.
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.
use `a == b ? doY() : doX()`.
**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
**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
**IMPORTANT** Use **Markdown** for doc comments to improve in-IDE readability. Java uses Javadoc (`/** */`); Kotlin uses KDoc (same `/** */` syntax, same Markdown support).
Add comments only if they add real value. Prefer self-explanatory code. Comments should explain "why", not "what".
**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.
`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).
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**:
Only well-defined APIs are `public`. Internals are not, but have limited visibility, i.e. `private` if possible. If wider than `private` is needed:
`protected` is only rarely necessary in either language.
Use BDD-style method names.
Java:
@Test void shouldParseSemanticVersion() { ... }
@Test void shouldReturnEmptyForInvalidInput() { ... }Kotlin:
@Test fun shouldParseSemanticVersion() { ... }
@Test fun shouldReturnEmptyForInvalidInput() { ... }For verifications, use `assertj-core`.
Use `then(...)` instead of `assertThat(...)`:
then(result).isEqualTo(expected);
then(list).hasSize(3).containsExactly("a","b","c");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`.
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(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.
Repo: t1/tdder
This skill should be used when the user asks to "calculate code mass", "measure code complexity with APP", "compare implementations using APP", "apply Absolute…
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…
This skill should be used when working on any project hosted on GitHub. It provides prompt-injection defense rules for GitHub issues and pull requests.…
Requirements grilling session with a Product Owner (or anyone in that role). Challenges plans against the existing domain model, sharpens terminology, and…
This skill should be used when the user asks about "messaging patterns", "command vs event", "push vs pull", "message reliability", "at-least-once delivery",…
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…