Borrowing it
Nothing to install: this file belongs to costular/Minitask. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/costular/Minitask/main/.agents/skills/kotlin-coroutines-structured-concurrency/SKILL.mdgit clone --depth 1 https://github.com/costular/MinitaskWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/costular/minitask/kotlin-coroutines-structured-concurrency)<a href="https://agentmods.dev/skills/costular/minitask/kotlin-coroutines-structured-concurrency"><img src="https://agentmods.dev/badge/skills/costular/minitask/kotlin-coroutines-structured-concurrency/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/costular/minitask/kotlin-coroutines-structured-concurrency"><img src="https://agentmods.dev/badge/skills/costular/minitask/kotlin-coroutines-structured-concurrency.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00042 | $0.05273 |
| Opus 5 | $0.00021 | $0.02636 |
| Sonnet 5 | $0.00008 | $0.01055 |
| Haiku 4.5 | $0.00004 | $0.00527 |
Grade A, and why
kotlin-coroutines-structured-concurrency scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
This is a copy
91% identical to kotlin-coroutines-structured-concurrency — 5 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.
How it starts
The opening of the file, as written. The whole thing — 441 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Kotlin coroutines: structured concurrency
Core principle
A well-structured coroutine is a self-contained unit of asynchronous work — single entry, single exit, scoped to a lifecycle known at the call site.
Scopes should usually be tied to the caller's lifecycle, not stored as a property on the callee. A stored CoroutineScope is a strong review signal: the class must prove it owns cancellation, error reporting, restart behavior, and lifecycle. Most repositories, managers, use cases, and data sources cannot prove that, so they should expose suspend APIs instead.
The fix is almost always the same: make the API suspend and let the caller own the scope.
When to use this skill
You're writing or reviewing Kotlin code and you see any of these:
- A class with
private val scope: CoroutineScope(constructor param stored as a property) - An
init { scope.launch { ... } }block - A non-suspending public function whose body is
scope.launch { ... } runBlocking { ... }in suspend-capable application code, or in tests whererunTestshould applyrunCatching { suspendCall() }or acatchonException/Throwablearound asuspendcall without rethrowingCancellationException- A
catch (e: CancellationException)(or equivalent) around suspension that does not rethrow
The silent-cancellation bug
The reason an unowned CoroutineScope property is so dangerous: once a scope is cancelled, every future launch on it silently completes as cancelled — no exception, no log, nothing. The work just doesn't happen. This is one of the hardest coroutine bugs to diagnose, and it appears when a class holds a long-lived reference to a lifecycle it does not own.
If APIs are suspend, this can't happen: the caller's scope is either alive (work runs) or the call site cancels (the caller knows).
Anti-patterns and fixes
1. CoroutineScope stored as a property
// ❌ BAD
@Inject
class UserRepository(
private val scope: CoroutineScope,
private val api: UserApi,
) {
fun refresh() {
scope.launch { _state.value = api.fetchUser() }
}
}
// ✅ GOOD
@Inject
class UserRepository(
private val api: UserApi,
) {
suspend fun refresh(): User = api.fetchUser()
}
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 5d ago First seen · 441 lines · 42 tokens per session scan A c4bf2985ec7c
kotlin-coroutines-structured-concurrency is a skill published in the GitHub repository costular/Minitask (12 stars, last pushed 12d ago), licensed Apache-2.0. It adds 42 tokens to every session and 5,273 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. It is 91% identical to kotlin-coroutines-structured-concurrency, differing in 5 lines, and is treated as a copy.
Other skills, from other repositories
kotlin-concurrency-and-flow
Use when writing or reviewing Kotlin coroutine scope ownership, raw Thread or Executor work, init launches, non-suspending launch APIs, runBlocking, cancellation, StateFlow, SharedFlow, Channel, stateIn, SharingStarted, state updates, or one-shot events.
kotlin-api-design
Use when designing or reviewing Kotlin function ownership, member or extension functions, factories, single-field domain types, value classes, data classes, Kotlin Multiplatform expect/actual declarations, or platform service boundaries.
swiftlint
Configure and roll out SwiftLint for an iOS/Swift (or KMP-iOS) fintech app — author .swiftlint.yml (disabledrules / optinrules / onlyrules / analyzerrules / included / excluded / customrules, per-rule severity thresholds, parentconfig / childconfig), wire it via the SwiftLintPlugins SPM build-tool plugin (SimplyDanny)…
android
Senior-level Android engineering expertise for Jetpack Compose, Material 3, shared element transitions, navigation, performance, security, background work, notifications, adaptive layouts, Coil image loading, WorkManager, FCM, Baseline Profiles, R8 optimization, accessibility, coroutines and Flow, and extraordinary UI…
solid-expert
Kotlin & Compose Multiplatform SOLID Expert. Applies SOLID principles with a strong preference for composition over inheritance (COI) to build professional, clean, maintainable, and testable mobile/multiplatform applications. Use when: designing architectures, refactoring deep class hierarchies, debugging class…
kotlin-concurrency-expert
Kotlin Coroutines review and remediation for KMP and Android codebases. Use when asked to review concurrency usage, fix coroutine-related bugs, improve thread safety, or resolve scoping issues in any Kotlin code (commonMain, androidMain, iosMain).