← All plugins
kotlin-coroutines-skill
v1.1.0Expert guidance for Kotlin Coroutines: structured concurrency, safe scopes, Dispatchers, cancellation, exception handling, and testing. Use when reviewing or writing Kotlin/Android async code. Includes a playbook and per-practice reference files.
Claude Code
by Santiago MattiaudaMIT134updated 1 week ago
Source
git clone https://github.com/santimattius/structured-coroutinesClone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.
Layout
kotlin-coroutines-skill/
└── .claude-plugin/plugin.json
Manifests1
.claude-plugin/plugin.json
{
"name": "kotlin-coroutines-skill",
"version": "1.1.0",
"description": "Expert guidance for Kotlin Coroutines: structured concurrency, safe scopes, Dispatchers, cancellation, exception handling, and testing. Use when reviewing or writing Kotlin/Android async code. Includes a playbook and per-practice reference files.",
"author": {
"name": "Santiago Mattiauda"
},
"license": "MIT",
"repository": "https://github.com/santimattius/structured-coroutines",
"keywords": [
"kotlin",
"coroutines",
"structured-concurrency",
"async-await",
"suspend",
"dispatchers",
"cancellation",
"flow",
"channels",
"viewModelScope",
"lifecycleScope",
"coroutineScope",
"supervisorScope",
"GlobalScope",
"CancellationException",
"SupervisorJob",
"launch",
"withContext",
"runBlocking",
"runTest",
"TestDispatcher",
"kotlinx-coroutines",
"kotlinx-coroutines-test",
"android",
"kotlin-multiplatform",
"concurrency",
"exception-handling"
],
"skills": [
"./kotlin-coroutines-skill"
]
}