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() }
Installs
10
GitHub Stars
507
First Seen
Mar 23, 2026
kotlin-patterns — vibeeval/vibecosystem