skills/smithery.ai/kotlin-coroutines

kotlin-coroutines

SKILL.md

Kotlin Coroutines Skill

Master asynchronous programming with structured concurrency.

Topics Covered

Structured Concurrency

// ✅ Structured - cancellation propagates
class Repository(private val scope: CoroutineScope) {
    suspend fun load() = withContext(Dispatchers.IO) { fetch() }
}

// ❌ Avoid GlobalScope
GlobalScope.launch { /* leaks */ }
Installs
2
First Seen
Mar 22, 2026
kotlin-coroutines from smithery.ai