Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
kotlin avatar

Kotlin Tooling Java To Kotlin

  • 1.1k installs
  • 983 repo stars
  • Updated July 21, 2026
  • kotlin/kotlin-agent-skills

kotlin-tooling-java-to-kotlin is a Claude Code skill that systematically verifies Java-to-Kotlin file conversions and prevents behavioral regressions using a post-conversion checklist for developers migrating JVM codebas

About

kotlin-tooling-java-to-kotlin is an official Kotlin agent skill providing a post-conversion verification checklist after each Java file becomes Kotlin. The checklist covers compilation and test passes, semantic correctness without new side effects, preserved public API signatures, unchanged exception behavior, and annotation preservation with correct Kotlin site targets (@field:, @get:, @set:, @param:). Developers reach for this skill immediately after converting a .java file to .kt to catch behavioral drift before merging. It complements broader Java-to-Kotlin migration workflows by focusing on per-file regression prevention.

  • 14-point post-conversion verification checklist
  • Covers compilation, semantic correctness, annotations, imports, documentation, nullability and collections
  • Ensures public API signatures and exception behavior remain identical
  • Validates Javadoc-to-KDoc conversion and annotation site targets
  • Hard-gate review before committing converted Kotlin files

Kotlin Tooling Java To Kotlin by the numbers

  • 1,083 all-time installs (skills.sh)
  • +64 installs in the week ending Aug 4, 2026 (Skillselion tracking)
  • Ranked #109 of 1,352 Code Review & Quality skills by installs in the Skillselion catalog
  • Security screen: LOW risk (skills.sh audit)
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/kotlin/kotlin-agent-skills --skill kotlin-tooling-java-to-kotlin

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs1.1k
repo stars983
Security audit3 / 3 scanners passed
Last updatedJuly 21, 2026
Repositorykotlin/kotlin-agent-skills

How do you verify Java to Kotlin conversion correctness?

Systematically verify Java-to-Kotlin conversions and prevent behavioral regressions.

Who is it for?

Android and JVM developers converting Java modules to Kotlin who need per-file regression checks before merge.

Skip if: Greenfield Kotlin projects with no Java legacy or teams only needing syntax translation without behavioral verification.

When should I use this skill?

User just converted a Java file to Kotlin and needs checklist verification for compilation, tests, APIs, and annotations.

What you get

Completed post-conversion checklist confirming compile success, test pass, API parity, and annotation preservation

  • post-conversion verification checklist

Files

SKILL.mdMarkdownGitHub ↗

Java to Kotlin Conversion

Convert Java source files to idiomatic Kotlin using a disciplined 4-step conversion methodology with 5 invariants checked at each step. Supports framework-aware conversion that handles annotation site targets, library idioms, and API preservation.

Workflow

digraph j2k_workflow {
  rankdir=TB;
  "User specifies files" -> "Step 0: Scan & Detect";
  "Step 0: Scan & Detect" -> "Load framework guides";
  "Load framework guides" -> "Step 1: Convert";
  "Step 1: Convert" -> "Step 2: Write .kt";
  "Step 2: Write .kt" -> "Step 3: Git rename";
  "Step 3: Git rename" -> "Step 4: Verify";
  "Step 4: Verify" -> "Next file?" [label="pass"];
  "Step 4: Verify" -> "Fix issues" [label="fail"];
  "Fix issues" -> "Step 1: Convert";
  "Next file?" -> "Step 0: Scan & Detect" [label="batch: yes"];
  "Next file?" -> "Done" [label="no more files"];
}

Step 0: Scan & Detect Frameworks

Before converting, scan the Java file's import statements to detect which frameworks are in use. Load ONLY the matching framework reference files to keep context focused.

Framework Detection Table

Import prefixFramework guide
org.springframework.*SPRING.md
lombok.*LOMBOK.md
javax.persistence.*, jakarta.persistence.*, org.hibernate.*HIBERNATE.md
com.fasterxml.jackson.*JACKSON.md
io.micronaut.*MICRONAUT.md
io.quarkus.*, javax.enterprise.*, jakarta.enterprise.*QUARKUS.md
dagger.*, dagger.hilt.*DAGGER-HILT.md
io.reactivex.*, rx.*RXJAVA.md
org.junit.*, org.testng.*JUNIT.md
com.google.inject.*GUICE.md
retrofit2.*, okhttp3.*RETROFIT.md
org.mockito.*MOCKITO.md

If javax.inject.* is detected, check for Dagger/Hilt vs Guice by looking for other imports from those frameworks. If ambiguous, load both guides.

Step 1: Convert

Apply the conversion methodology from CONVERSION-METHODOLOGY.md.

This is a 4-step chain-of-thought process: 1. Faithful 1:1 translation — exact semantics preserved 2. Nullability & mutability audit — val/var, nullable types 3. Collection type conversion — Java mutable → Kotlin types 4. Idiomatic transformations — properties, string templates, lambdas

Five invariants are checked after each step. If any invariant is violated, revert to the previous step and redo.

Apply any loaded framework-specific guidance during step 4 (idiomatic transformations).

Step 2: Write Output

Write the converted Kotlin code to a .kt file with the same name as the original Java file, in the same directory.

Step 3: Preserve Git History

To preserve git blame history, use a two-phase approach:

# Phase 1: Rename (creates rename tracking)
git mv src/main/java/com/example/Foo.java src/main/kotlin/com/example/Foo.kt
git commit -m "Rename Foo.java to Foo.kt"

# Phase 2: Replace content (tracked as modification, not new file)
# Write the converted Kotlin content to Foo.kt
git commit -m "Convert Foo from Java to Kotlin"

If the project keeps Java and Kotlin in the same source root (e.g., src/main/java/), rename in place:

git mv src/main/java/com/example/Foo.java src/main/java/com/example/Foo.kt

If the project does not use Git, simply write the .kt file and delete the .java file.

Step 4: Verify

After conversion, verify using checklist.md:

  • Attempt to compile the converted file
  • Run existing tests
  • Check annotation site targets
  • Confirm no behavioral changes

Batch Conversion

When converting multiple files (a directory or package):

1. List all `.java` files in the target scope 2. Sort by dependency order — convert leaf dependencies first (files that don't import other files in the conversion set), then work up to files that depend on them 3. Convert one file at a time — apply the full workflow (steps 0-4) for each 4. Track progress — report which files are done, which remain 5. Handle cross-references — after converting a file, update imports in other Java files if needed (e.g., if a class moved packages)

For large batches, consider converting in packages (bottom-up from leaf packages).

Common Pitfalls

See KNOWN-ISSUES.md for:

  • Kotlin keyword conflicts (when, in, is, object)
  • SAM conversion ambiguity
  • Platform types from Java interop
  • @JvmStatic / @JvmField / @JvmOverloads usage
  • Checked exceptions and @Throws
  • Wildcard generics → Kotlin variance

Related skills

FAQ

What does kotlin-tooling-java-to-kotlin verify after conversion?

kotlin-tooling-java-to-kotlin checks compilation, test pass status, unchanged public API signatures, preserved exception behavior, no new side effects, and correct Kotlin annotation site targets after each Java-to-Kotlin file conversion.

When should kotlin-tooling-java-to-kotlin run in a migration?

kotlin-tooling-java-to-kotlin runs immediately after converting each individual Java file to Kotlin, before merging, to catch behavioral and annotation regressions early.

Is Kotlin Tooling Java To Kotlin safe to install?

skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.

Code Review & Qualitybackendtestingintegrations

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.