kotlin-flow-state-event-modeling

kotlin-flow-state-event-modeling is a skill for Claude Code, Codex from ashtanko/kotlin-app-template. It costs 55 tokens per session (2,221 once invoked), scanned A, a copy of kotlin-flow-state-event-modeling, Apache-2.0.

Guidance for designing Kotlin Flow APIs that represent changing state and one-time events. It covers choosing between StateFlow, SharedFlow, Channel, and cold Flow based on how values are shared, replayed, and read.

In plain words
What is it for?
Use it when writing or reviewing Kotlin code for state updates, notifications, asynchronous data loading, sharing flows, or synchronous access through .value.
Why use it?
It helps prevent missed events, stale values, leaking background work, and fake placeholder values used before real data arrives.

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 Use it when writing or reviewing Kotlin code for state updates, notifications, asynchronous data loading, sharing flows, or synchronous access through .value.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ashtanko/kotlin-app-template/kotlin-flow-state-event-modeling
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-flow-state-event-modeling
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-flow-state-event-modeling

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/ashtanko/kotlin-app-template/kotlin-flow-state-event-modeling"><img src="https://agentmods.dev/badge/skills/ashtanko/kotlin-app-template/kotlin-flow-state-event-modeling.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 55 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,221 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.
Origin 88% copy Near-identical to another mod 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.00055 $0.02221
Opus 5 $0.00028 $0.01111
Sonnet 5 $0.00011 $0.00444
Haiku 4.5 $0.00006 $0.00222

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

Security

Grade A, and why

kotlin-flow-state-event-modeling 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.

Origin

This is a copy

88% identical to kotlin-flow-state-event-modeling — 40 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.

.agents/skills/kotlin-flow-state-event-modeling/SKILL.md · 184 lines

How it starts

The opening of the file, as written. The whole thing — 184 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Kotlin Flow: state and event modeling

Core principle

Pick the primitive that matches replay, fan-out, and synchronous-read requirements. StateFlow, SharedFlow, Channel-backed flows, and cold Flow differ in buffering, who sees each emission, and whether .value exists. Wrong choices drop events, leak sharing coroutines, or force fake domain sentinels into state. This project's DataProcessor.kt is the canonical example of a cold Flow produced from a suspend boundary with the catch operator for error handling.

When to use this skill

You're writing or reviewing Kotlin code involving:

  • MutableStateFlow<T>(SomeSentinel)NoUser, Empty, Loading, etc. — because the real value is async
  • .stateIn(...) called inside a function rather than assigned to a property
  • SharingStarted.WhileSubscribed(...) on a flow whose .value is read synchronously and must stay fresh
  • MutableSharedFlow for a one-shot notification where loss would be a bug
  • .map { } on a StateFlow when consumers still need synchronous .value
  • MutableStateFlow.value = _state.value.copy(...) or update code that builds expensive objects inside update { ... }

SharedFlow for single-consumer fire-once events

SharedFlow defaults have no replay buffer. If nothing is collecting at the exact instant of emission, the event is gone. For a single downstream consumer handling exactly-once events — a job-completion signal, a one-shot notification — a buffered Channel exposed as a Flow often matches the semantics better:

// ❌ BAD
private val _jobEvents = MutableSharedFlow<JobEvent>()
val jobEvents: SharedFlow<JobEvent> = _jobEvents.asSharedFlow()

// ✅ GOOD
private val _jobEvents = Channel<JobEvent>(Channel.BUFFERED)
val jobEvents: Flow<JobEvent> = _jobEvents.receiveAsFlow()

Channel.receiveAsFlow() is fan-out, not broadcast: with multiple collectors, each event is delivered to one collector. Channel.BUFFERED is bounded, so sends can suspend and trySend can fail. If multiple observers must all see the same event, use explicit state, durable persistence, or a deliberately configured SharedFlow instead.

Read the full file on GitHub · 184 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 · 184 lines · 55 tokens per session scan A b50d63a15062

Subscribe to this mod's changes

kotlin-flow-state-event-modeling is a skill published in the GitHub repository ashtanko/kotlin-app-template (41 stars, last pushed 4d ago), licensed Apache-2.0. It adds 55 tokens to every session and 2,221 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. It is 88% identical to kotlin-flow-state-event-modeling, differing in 40 lines, and is treated as a copy.

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