kotlin-coroutines
Installation
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 */ }
Exception Handling
Related skills
More from pluginagentmarketplace/custom-plugin-kotlin
kotlin-compose
Jetpack Compose - composables, state, effects, theming
57kotlin-android
Modern Android development - Jetpack, Compose, Architecture Components
55kotlin-testing
Kotlin testing - JUnit 5, MockK, Kotest, coroutine testing
33kotlin-ktor
Ktor framework - routing, authentication, WebSockets
28kotlin-di
Dependency Injection - Hilt, Koin, scopes, testing
23kotlin-fundamentals
Kotlin language fundamentals - syntax, null safety, data classes, extensions
22