kotlin-coroutines-structured-concurrency

kotlin-coroutines-structured-concurrency is a skill for Claude Code, Codex from ashtanko/kotlin-app-template. It costs 42 tokens per session (4,460 once invoked), scanned A, original, Apache-2.0.

Kotlin guidance for structured concurrency, a way to keep asynchronous work tied to the lifecycle that started it. It focuses on coroutine scopes, cancellation, suspension, and exception handling.

In plain words
What is it for?
Writing or reviewing Kotlin code that stores coroutine scopes, starts work during initialization, uses `runBlocking`, or catches broad errors around suspendable operations.
Why use it?
It helps prevent background tasks that outlive their owner, cannot be cancelled correctly, or hide failures.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

Good fit Writing or reviewing Kotlin code that stores coroutine scopes, starts work during initialization, uses runBlocking, or catches broad errors around suspendable operations.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ashtanko/kotlin-app-template/kotlin-coroutines-structured-concurrency
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add ashtanko/kotlin-app-template --skill kotlin-coroutines-structured-concurrency
Clone the repo
git clone --depth 1 https://github.com/ashtanko/kotlin-app-template

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for kotlin-coroutines-structured-concurrency

README.md
[![agentmods](https://agentmods.dev/badge/skills/ashtanko/kotlin-app-template/kotlin-coroutines-structured-concurrency/github.svg)](https://agentmods.dev/skills/ashtanko/kotlin-app-template/kotlin-coroutines-structured-concurrency)
Your own site
<a href="https://agentmods.dev/skills/ashtanko/kotlin-app-template/kotlin-coroutines-structured-concurrency"><img src="https://agentmods.dev/badge/skills/ashtanko/kotlin-app-template/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.

agentmods 80×15 button for kotlin-coroutines-structured-concurrency

Your own site · 80×15
<a href="https://agentmods.dev/skills/ashtanko/kotlin-app-template/kotlin-coroutines-structured-concurrency"><img src="https://agentmods.dev/badge/skills/ashtanko/kotlin-app-template/kotlin-coroutines-structured-concurrency.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 42 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,460 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00042 $0.04460
Opus 5 $0.00021 $0.02230
Sonnet 5 $0.00008 $0.00892
Haiku 4.5 $0.00004 $0.00446

Measured 12d ago against content hash f52e31f362a7, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

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 12d 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.

.agents/skills/kotlin-coroutines-structured-concurrency/SKILL.md · 375 lines

How it starts

The opening of the file, as written. The whole thing — 375 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, processors, and data sources cannot prove that, so they should expose suspend APIs instead. This project's canonical example is DataProcessor.kt, which injects a CoroutineDispatcher and exposes suspend/Flow APIs rather than owning a scope.

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 where runTest should apply
  • runCatching { suspendCall() } or a catch on Exception / Throwable around a suspend call without rethrowing CancellationException
  • 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).

Read the full file on GitHub · 375 lines

Changes

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.

  1. 12d ago First seen · 375 lines · 42 tokens per session scan A f52e31f362a7

Subscribe to this mod's changes

kotlin-coroutines-structured-concurrency is a skill published in the GitHub repository ashtanko/kotlin-app-template (41 stars, last pushed 4d ago), licensed Apache-2.0. It adds 42 tokens to every session and 4,460 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

kotlin-coroutines-skill

Load, when a developer writes, reviews, or debugs Kotlin coroutine code and needs help spotting concurrency bugs — GlobalScope leaks, runBlocking in suspend, missing Flow catch, hardcoded or wrong dispatchers, unhandled timeouts, cancellation and structured-concurrency mistakes — or asks how to make async Kotlin…

santimattius/structured-coroutines · 71 tokens

compose-side-effects

Use when writing or reviewing Jetpack Compose code with LaunchedEffect, DisposableEffect, SideEffect, rememberCoroutineScope, rememberUpdatedState, snapshotFlow, snackbar, navigation, focus requests, analytics, or event Flow collection.

ashtanko/compose-android-template · 49 tokens

kotlin-control-flow

Use when writing or reviewing Kotlin branching and control flow: when expressions, guard conditions, sealed type exhaustiveness, smart casts, nullable branching, early returns, or replacing complex if/else chains.

ashtanko/compose-android-template · 44 tokens

deliver-android-feature

Implement an Android feature from a specification or acceptance criteria through architecture, production code, formatting, unit tests, JVM integration tests, local Compose behavior tests, screenshot matrices, managed-device integration tests, end-to-end coverage, and final verification. Use when adding or…

ashtanko/compose-android-template · 82 tokens

kotlin-multiplatform-expect-actual

Use when designing Kotlin Multiplatform expect/actual or interface boundaries for platform services, native SDKs, source sets, Compose Multiplatform UI, permissions, files, settings, sensors, or platform interop.

ashtanko/compose-android-template · 54 tokens

kotlin-types-value-class

Use when writing or reviewing Kotlin type declarations to choose @JvmInline value class over data class where appropriate, including Compose stability implications.

ashtanko/compose-android-template · 32 tokens