kotlin-patterns
Installation
SKILL.md
Kotlin Patterns
Modern Kotlin patterns for Android, server-side, and multiplatform development.
Coroutine Patterns
import kotlinx.coroutines.*
// Structured concurrency: child failures cancel siblings
suspend fun loadDashboard(): Dashboard = coroutineScope {
val profile = async { api.fetchProfile() }
val orders = async { api.fetchRecentOrders() }
val stats = async { api.fetchStats() }