Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Idiomatic Kotlin patterns, best practices, and conventions for building robust, efficient, and maintainable Kotlin applications with coroutines, null safety, and DSL builders.
.claude/skills/loulanyue-kotlin-patterns/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-10 | ✗→✓ | ▲ Improved | 165% | 0% |
| case-11 | ✗→✓ | ▲ Improved | 217% | 0% |
| case-01 | ✓→✓ | = Same ✓ | 719% | 0% |
| case-02 | ✓→✓ | = Same ✓ | 547% | 0% |
| case-03 | ✓→✓ | = Same ✓ | 1409% | 0% |
Idiomatic Kotlin patterns and best practices for building robust, efficient, and maintainable applications.
This skill enforces idiomatic Kotlin conventions across seven key areas: null safety using the type system and safe-call operators, immutability via val and copy() on data classes, sealed classes and interfaces for exhaustive type hierarchies, structured concurrency with coroutines and Flow, extension functions for adding behaviour without inheritance, type-safe DSL builders using @DslMarker and lambda receivers, and Gradle Kotlin DSL for build configuration.
Null safety with Elvis operator:
kotlinfun getUserEmail(userId: String): String { val user = userRepository.findById(userId) return user?.email ?: "unknown@example.com" }
Sealed class for exhaustive results:
kotlinsealed class Result<out T> { data class Success<T>(val data: T) : Result<T>() data class Failure(val error: AppError) : Result<Nothing>() data object Loading : Result<Nothing>() }
Structured concurrency with async/await:
kotlinsuspend fun fetchUserWithPosts(userId: String): UserProfile = coroutineScope { val user = async { userService.getUser(userId) } val posts = async { postService.getUserPosts(userId) } UserProfile(user = user.await(), posts = posts.await()) }
Kotlin's type system distinguishes nullable and non-nullable types. Leverage it fully.
kotlin// Good: Use non-nullable types by default fun getUser(id: String): User { return userRepository.findById(id) ?: throw UserNotFoundException("User $id not found") } // Good: Safe calls and Elvis operator fun getUserEmail(userId: String): String { val user = userRepository.findById(userId) return user?.email ?: "unknown@example.com" } // Bad: Force-unwrapping nullable types fun getUserEmail(userId: String): String { val user = userRepository.findById(userId) return user!!.email // Throws NPE if null }
Prefer val over var, immutable collections over mutable ones.
kotlin// Good: Immutable data data class User( val id: String, val name: String, val email: String, ) // Good: Transform with copy() fun updateEmail(user: User, newEmail: String): User = user.copy(email = newEmail) // Good: Immutable collections val users: List<User> = listOf(user1, user2) val filtered = users.filter { it.email.isNotBlank() } // Bad: Mutable state var currentUser: User? = null // Avoid mutable global state val mutableUsers = mutableListOf<User>() // Avoid unless truly needed
Use expression bodies for concise, readable functions.
kotlin// Good: Expression body fun isAdult(age: Int): Boolean = age >= 18 fun formatFullName(first: String, last: String): String = "$first $last".trim() fun User.displayName(): String = name.ifBlank { email.substringBefore('@') } // Good: When as expression fun statusMessage(code: Int): String = when (code) { 200 -> "OK" 404 -> "Not Found" 500 -> "Internal Server Error" else -> "Unknown status: $code" } // Bad: Unnecessary block body fun isAdult(age: Int): Boolean { return age >= 18 }
Use data classes for types that primarily hold data.
kotlin// Good: Data class with copy, equals, hashCode, toString data class CreateUserRequest( val name: String, val email: String, val role: Role = Role.USER, ) // Good: Value class for type safety (zero overhead at runtime) @JvmInline value class UserId(val value: String) { init { require(value.isNotBlank()) { "UserId cannot be blank" } } } @JvmInline value class Email(val value: String) { init { require('@' in value) { "Invalid email: $value" } } } fun getUser(id: UserId): User = userRepository.findById(id)
kotlin// Good: Sealed class for exhaustive when sealed class Result<out T> { data class Success<T>(val data: T) : Result<T>() data class Failure(val error: AppError) : Result<Nothing>() data object Loading : Result<Nothing>() } fun <T> Result<T>.getOrNull(): T? = when (this) { is Result.Success -> data is Result.Failure -> null is Result.Loading -> null } fun <T> Result<T>.getOrThrow(): T = when (this) { is Result.Success -> data is Result.Failure -> throw error.toException() is Result.Loading -> throw IllegalStateException("Still loading") }
kotlinsealed interface ApiError { val message: String data class NotFound(override val message: String) : ApiError data class Unauthorized(override val message: String) : ApiError data class Validation( override val message: String, val field: String, ) : ApiError data class Internal( override val message: String, val cause: Throwable? = null, ) : ApiError } fun ApiError.toStatusCode(): Int = when (this) { is ApiError.NotFound -> 404 is ApiError.Unauthorized -> 401 is ApiError.Validation -> 422 is ApiError.Internal -> 500 }
kotlin// let: Transform nullable or scoped result val length: Int? = name?.let { it.trim().length } // apply: Configure an object (returns the object) val user = User().apply { name = "Alice" email = "alice@example.com" } // also: Side effects (returns the object) val user = createUser(request).also { logger.info("Created user: ${it.id}") } // run: Execute a block with receiver (returns result) val result = connection.run { prepareStatement(sql) executeQuery() } // with: Non-extension form of run val csv = with(StringBuilder()) { appendLine("name,email") users.forEach { appendLine("${it.name},${it.email}") } toString() }
kotlin// Bad: Nesting scope functions user?.let { u -> u.address?.let { addr -> addr.city?.let { city -> println(city) // Hard to read } } } // Good: Chain safe calls instead val city = user?.address?.city city?.let { println(it) }
kotlin// Good: Domain-specific extensions fun String.toSlug(): String = lowercase() .replace(Regex("[^a-z0-9\\s-]"), "") .replace(Regex("\\s+"), "-") .trim('-') fun Instant.toLocalDate(zone: ZoneId = ZoneId.systemDefault()): LocalDate = atZone(zone).toLocalDate() // Good: Collection extensions fun <T> List<T>.second(): T = this[1] fun <T> List<T>.secondOrNull(): T? = getOrNull(1) // Good: Scoped extensions (not polluting global namespace) class UserService { private fun User.isActive(): Boolean = status == Status.ACTIVE && lastLogin.isAfter(Instant.now().minus(30, ChronoUnit.DAYS)) fun getActiveUsers(): List<User> = userRepository.findAll().filter { it.isActive() } }
kotlin// Good: Structured concurrency with coroutineScope suspend fun fetchUserWithPosts(userId: String): UserProfile = coroutineScope { val userDeferred = async { userService.getUser(userId) } val postsDeferred = async { postService.getUserPosts(userId) } UserProfile( user = userDeferred.await(), posts = postsDeferred.await(), ) } // Good: supervisorScope when children can fail independently suspend fun fetchDashboard(userId: String): Dashboard = supervisorScope { val user = async { userService.getUser(userId) } val notifications = async { notificationService.getRecent(userId) } val recommendations = async { recommendationService.getFor(userId) } Dashboard( user = user.await(), notifications = try { notifications.await() } catch (e: CancellationException) { throw e } catch (e: Exception) { emptyList() }, recommendations = try { recommendations.await() } catch (e: CancellationException) { throw e } catch (e: Exception) { emptyList() }, ) }
kotlin// Good: Cold flow with proper error handling fun observeUsers(): Flow<List<User>> = flow { while (currentCoroutineContext().isActive) { val users = userRepository.findAll() emit(users) delay(5.seconds) } }.catch { e -> logger.error("Error observing users", e) emit(emptyList()) } // Good: Flow operators fun searchUsers(query: Flow<String>): Flow<List<User>> = query .debounce(300.milliseconds) .distinctUntilChanged() .filter { it.length >= 2 } .mapLatest { q -> userRepository.search(q) } .catch { emit(emptyList()) }
kotlin// Good: Respect cancellation suspend fun processItems(items: List<Item>) { items.forEach { item -> ensureActive() // Check cancellation before expensive work processItem(item) } } // Good: Cleanup with try/finally suspend fun acquireAndProcess() { val resource = acquireResource() try { resource.process() } finally { withContext(NonCancellable) { resource.release() // Always release, even on cancellation } } }
kotlin// Lazy initialization val expensiveData: List<User> by lazy { userRepository.findAll() } // Observable property var name: String by Delegates.observable("initial") { _, old, new -> logger.info("Name changed from '$old' to '$new'") } // Map-backed properties class Config(private val map: Map<String, Any?>) { val host: String by map val port: Int by map val debug: Boolean by map } val config = Config(mapOf("host" to "localhost", "port" to 8080, "debug" to true))
kotlin// Good: Delegate interface implementation class LoggingUserRepository( private val delegate: UserRepository, private val logger: Logger, ) : UserRepository by delegate { // Only override what you need to add logging to override suspend fun findById(id: String): User? { logger.info("Finding user by id: $id") return delegate.findById(id).also { logger.info("Found user: ${it?.name ?: "null"}") } } }
kotlin// Good: DSL with @DslMarker @DslMarker annotation class HtmlDsl @HtmlDsl class HTML { private val children = mutableListOf<Element>() fun head(init: Head.() -> Unit) { children += Head().apply(init) } fun body(init: Body.() -> Unit) { children += Body().apply(init) } override fun toString(): String = children.joinToString("\n") } fun html(init: HTML.() -> Unit): HTML = HTML().apply(init) // Usage val page = html { head { title("My Page") } body { h1("Welcome") p("Hello, World!") } }
kotlindata class ServerConfig( val host: String = "0.0.0.0", val port: Int = 8080, val ssl: SslConfig? = null, val database: DatabaseConfig? = null, ) data class SslConfig(val certPath: String, val keyPath: String) data class DatabaseConfig(val url: String, val maxPoolSize: Int = 10) class ServerConfigBuilder { var host: String = "0.0.0.0" var port: Int = 8080 private var ssl: SslConfig? = null private var database: DatabaseConfig? = null fun ssl(certPath: String, keyPath: String) { ssl = SslConfig(certPath, keyPath) } fun database(url: String, maxPoolSize: Int = 10) { database = DatabaseConfig(url, maxPoolSize) } fun build(): ServerConfig = ServerConfig(host, port, ssl, database) } fun serverConfig(init: ServerConfigBuilder.() -> Unit): ServerConfig = ServerConfigBuilder().apply(init).build() // Usage val config = serverConfig { host = "0.0.0.0" port = 443 ssl("/certs/cert.pem", "/certs/key.pem") database("jdbc:postgresql://localhost:5432/mydb", maxPoolSize = 20) }
kotlin// Good: Use sequences for large collections with multiple operations val result = users.asSequence() .filter { it.isActive } .map { it.email } .filter { it.endsWith("@company.com") } .take(10) .toList() // Good: Generate infinite sequences val fibonacci: Sequence<Long> = sequence { var a = 0L var b = 1L while (true) { yield(a) val next = a + b a = b b = next } } val first20 = fibonacci.take(20).toList()
kotlin// Check for latest versions: https://kotlinlang.org/docs/releases.html plugins { kotlin("jvm") version "2.3.10" kotlin("plugin.serialization") version "2.3.10" id("io.ktor.plugin") version "3.4.0" id("org.jetbrains.kotlinx.kover") version "0.9.7" id("io.gitlab.arturbosch.detekt") version "1.23.8" } group = "com.example" version = "1.0.0" kotlin { jvmToolchain(21) } dependencies { // Ktor implementation("io.ktor:ktor-server-core:3.4.0") implementation("io.ktor:ktor-server-netty:3.4.0") implementation("io.ktor:ktor-server-content-negotiation:3.4.0") implementation("io.ktor:ktor-serialization-kotlinx-json:3.4.0") // Exposed implementation("org.jetbrains.exposed:exposed-core:1.0.0") implementation("org.jetbrains.exposed:exposed-dao:1.0.0") implementation("org.jetbrains.exposed:exposed-jdbc:1.0.0") implementation("org.jetbrains.exposed:exposed-kotlin-datetime:1.0.0") // Koin implementation("io.insert-koin:koin-ktor:4.2.0") // Coroutines implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2") // Testing testImplementation("io.kotest:kotest-runner-junit5:6.1.4") testImplementation("io.kotest:kotest-assertions-core:6.1.4") testImplementation("io.kotest:kotest-property:6.1.4") testImplementation("io.mockk:mockk:1.14.9") testImplementation("io.ktor:ktor-server-test-host:3.4.0") testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.10.2") } tasks.withType<Test> { useJUnitPlatform() } detekt { config.setFrom(files("config/detekt/detekt.yml")) buildUponDefaultConfig = true }
kotlin// Good: Use Kotlin's Result or a custom sealed class suspend fun createUser(request: CreateUserRequest): Result<User> = runCatching { require(request.name.isNotBlank()) { "Name cannot be blank" } require('@' in request.email) { "Invalid email format" } val user = User( id = UserId(UUID.randomUUID().toString()), name = request.name, email = Email(request.email), ) userRepository.save(user) user } // Good: Chain results val displayName = createUser(request) .map { it.name } .getOrElse { "Unknown" }
kotlin// Good: Preconditions with clear messages fun withdraw(account: Account, amount: Money): Account { require(amount.value > 0) { "Amount must be positive: $amount" } check(account.balance >= amount) { "Insufficient balance: ${account.balance} < $amount" } return account.copy(balance = account.balance - amount) }
kotlin// Good: Chained operations val activeAdminEmails: List<String> = users .filter { it.role == Role.ADMIN && it.isActive } .sortedBy { it.name } .map { it.email } // Good: Grouping and aggregation val usersByRole: Map<Role, List<User>> = users.groupBy { it.role } val oldestByRole: Map<Role, User?> = users.groupBy { it.role } .mapValues { (_, users) -> users.minByOrNull { it.createdAt } } // Good: Associate for map creation val usersById: Map<UserId, User> = users.associateBy { it.id } // Good: Partition for splitting val (active, inactive) = users.partition { it.isActive }
| Idiom | Description | |-------|-------------| | val over var | Prefer immutable variables | | data class | For value objects with equals/hashCode/copy | | sealed class/interface | For restricted type hierarchies | | value class | For type-safe wrappers with zero overhead | | Expression when | Exhaustive pattern matching | | Safe call ?. | Null-safe member access | | Elvis ?: | Default value for nullables | | let/apply/also/run/with | Scope functions for clean code | | Extension functions | Add behavior without inheritance | | copy() | Immutable updates on data classes | | require/check | Precondition assertions | | Coroutine async/await | Structured concurrent execution | | Flow | Cold reactive streams | | sequence | Lazy evaluation | | Delegation by | Reuse implementation without inheritance |
kotlin// Bad: Force-unwrapping nullable types val name = user!!.name // Bad: Platform type leakage from Java fun getLength(s: String) = s.length // Safe fun getLength(s: String?) = s?.length ?: 0 // Handle nulls from Java // Bad: Mutable data classes data class MutableUser(var name: String, var email: String) // Bad: Using exceptions for control flow try { val user = findUser(id) } catch (e: NotFoundException) { // Don't use exceptions for expected cases } // Good: Use nullable return or Result val user: User? = findUserOrNull(id) // Bad: Ignoring coroutine scope GlobalScope.launch { /* Avoid GlobalScope */ } // Good: Use structured concurrency coroutineScope { launch { /* Properly scoped */ } } // Bad: Deeply nested scope functions user?.let { u -> u.address?.let { a -> a.city?.let { c -> process(c) } } } // Good: Direct null-safe chain user?.address?.city?.let { process(it) }
Remember: Kotlin code should be concise but readable. Leverage the type system for safety, prefer immutability, and use coroutines for concurrency. When in doubt, let the compiler help you.
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-01 | pass→pass | 3,959 | 3,814 | -4% | 1 | 1 | 0% | 729 | 5,973 | +719% | 0 | 0 | — |
case-02 | pass→pass | 5,350 | 4,944 | -8% | 1 | 1 | 0% | 938 | 6,068 | +547% | 0 | 0 | — |
case-03 | pass→pass | 2,470 | 3,620 | +47% | 1 | 1 | 0% | 386 | 5,825 | +1409% | 0 | 0 | — |
case-04 | pass→pass | 12,166 | 9,484 | -22% | 1 | 1 | 0% | 2,123 | 7,002 | +230% | 0 | 0 | — |
case-05 | pass→pass | 13,422 | 11,279 | -16% | 1 | 1 | 0% | 2,400 | 7,284 | +204% | 0 | 0 | — |
case-06 | pass→pass | 9,999 | 5,623 | -44% | 1 | 1 | 0% | 1,916 | 6,381 | +233% | 0 | 0 | — |
case-07 | pass→pass | 5,711 | 5,935 | +4% | 1 | 1 | 0% | 978 | 6,224 | +536% | 0 | 0 | — |
case-08 | pass→pass | 8,938 | 5,906 | -34% | 1 | 1 | 0% | 1,694 | 6,328 | +274% | 0 | 0 | — |
case-09 | pass→pass | 6,013 | 4,908 | -18% | 1 | 1 | 0% | 1,048 | 6,131 | +485% | 0 | 0 | — |
case-10 | fail→pass | 13,247 | 6,952 | -48% | 1 | 1 | 0% | 2,459 | 6,506 | +165% | 0 | 0 | — |
case-11 | fail→pass | 10,520 | 5,682 | -46% | 1 | 1 | 0% | 1,987 | 6,300 | +217% | 0 | 0 | — |
case-12 | pass→pass | 11,223 | 9,438 | -16% | 1 | 1 | 0% | 2,055 | 6,984 | +240% | 0 | 0 | — |
case-21 | pass→pass | 16,130 | 14,141 | -12% | 1 | 1 | 0% | 2,735 | 7,720 | +182% | 0 | 0 | — |
case-13 | pass→pass | 5,900 | 6,033 | +2% | 1 | 1 | 0% | 1,004 | 6,275 | +525% | 0 | 0 | — |
case-14 | pass→pass | 4,641 | 3,786 | -18% | 1 | 1 | 0% | 775 | 5,816 | +650% | 0 | 0 | — |
case-15 | pass→pass | 6,135 | 4,110 | -33% | 1 | 1 | 0% | 1,074 | 6,037 | +462% | 0 | 0 | — |
case-16 | pass→pass | 9,092 | 8,165 | -10% | 1 | 1 | 0% | 1,615 | 6,756 | +318% | 0 | 0 | — |
case-17 | pass→pass | 7,183 | 6,579 | -8% | 1 | 1 | 0% | 1,258 | 6,376 | +407% | 0 | 0 | — |
case-18 | pass→pass | 8,747 | 4,631 | -47% | 1 | 1 | 0% | 1,628 | 6,130 | +277% | 0 | 0 | — |
case-19 | pass→pass | 8,910 | 6,193 | -30% | 1 | 1 | 0% | 1,785 | 6,347 | +256% | 0 | 0 | — |
case-20 | pass→pass | 17,071 | 15,000 | -12% | 1 | 1 | 0% | 2,934 | 7,937 | +171% | 0 | 0 | — |
case-22 | pass→pass | 14,768 | 13,035 | -12% | 1 | 1 | 0% | 2,693 | 7,612 | +183% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 22 cases were attempted. The headline lift of +9 percentage points is the difference between those two pass rates over the 22 comparable cases.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
Other measured skills in the registry, with their headline benchmark lift.