kotlin-flow

Installation
SKILL.md

Kotlin Flow Skill

Reactive programming with Kotlin Flow.

Topics Covered

Cold vs Hot Flows

// Cold Flow - starts fresh for each collector
fun loadData(): Flow<Data> = flow {
    emit(fetchData())
}

// Hot Flow - shared state
private val _state = MutableStateFlow(State())
val state: StateFlow<State> = _state.asStateFlow()
Installs
17
GitHub Stars
7
First Seen
Jan 25, 2026
kotlin-flow — pluginagentmarketplace/custom-plugin-kotlin