Skip to main content
Back to the directory
affaan-m/everything-claude-codeSoftware EngineeringFrontend and Design

kotlin-coroutines-flows

Patterns for structured concurrency, Flow-based reactive streams, and coroutine testing in Android and Kotlin Multiplatform projects.

SkillJury keeps community verdicts, source metadata, and external repository signals in separate lanes so ranking data never pretends to be a review.

SkillJury verdict
Pending

No approved reviews yet

Would recommend
Pending

Waiting on enough review volume

Install signal
2

Weekly or total install activity from catalog data

Sign in to review
0 review requests
Install command
npx skills add https://github.com/affaan-m/everything-claude-code --skill kotlin-coroutines-flows
SkillJury does not have enough approved reviews to publish a community verdict yet. Source metadata and repository proof are still available above.
SkillJury Signal Summary

As of Apr 30, 2026, kotlin-coroutines-flows has 2 weekly installs, 0 community reviews on SkillJury. Community votes currently stand at 0 upvotes and 0 downvotes. Source: affaan-m/everything-claude-code. Canonical URL: https://skills.sh/affaan-m/everything-claude-code/kotlin-coroutines-flows.

Security audits
Gen Agent Trust HubPASS
SocketPASS
SnykPASS
About this skill
Patterns for structured concurrency, Flow-based reactive streams, and coroutine testing in Android and Kotlin Multiplatform projects. Always use structured concurrency — never GlobalScope : Use coroutineScope + async for parallel work: Use supervisorScope when child failures should not cancel siblings: WhileSubscribed(5_000) keeps the upstream active for 5 seconds after the last subscriber leaves — survives configuration changes without restarting. In KMP, use Dispatchers.Default and Dispatchers.Main (available on all platforms). Dispatchers.IO is JVM/Android only — use Dispatchers.Default on other platforms or provide via DI. Long-running loops must check for cancellation: See skill: compose-multiplatform-patterns for UI consumption of Flows. See skill: android-clean-architecture for where coroutines fit in layers. - Writing async code with Kotlin coroutines - Using Flow, StateFlow, or SharedFlow for reactive data - Handling concurrent operations (parallel loading, debounce, retry) - Testing coroutines and Flows - Managing coroutine scopes and cancellation - Using GlobalScope — leaks coroutines, no structured cancellation - Collecting Flows in init {} without a scope — use viewModelScope.launch - Using MutableStateFlow with mutable collections — always use immutable copies: _state.update { it.copy(list = it.list + newItem) } - Catching CancellationException — let it propagate...

Source description provided by the upstream listing. Community review signal and install context stay separate from this narrative layer.

Community reviews

Latest reviews

No community reviews yet. Be the first to review.

Browse this skill in context
FAQ
What does kotlin-coroutines-flows do?

Patterns for structured concurrency, Flow-based reactive streams, and coroutine testing in Android and Kotlin Multiplatform projects.

Is kotlin-coroutines-flows good?

kotlin-coroutines-flows does not have approved reviews yet, so SkillJury cannot publish a community verdict.

Which AI agents support kotlin-coroutines-flows?

kotlin-coroutines-flows currently lists compatibility with Claude Code, Skills CLI.

Is kotlin-coroutines-flows safe to install?

kotlin-coroutines-flows has been scanned by security audit providers tracked on SkillJury. Check the security audits section on this page for detailed results from Socket.dev and Snyk.

What are alternatives to kotlin-coroutines-flows?

Skills in the same category include grimoire-morpho-blue, conversation-memory, second-brain-ingest, zai-tts.

How do I install kotlin-coroutines-flows?

Run the following command to install kotlin-coroutines-flows: npx skills add https://github.com/affaan-m/everything-claude-code --skill kotlin-coroutines-flows

Related skills

More from affaan-m/everything-claude-code

Related skills

Alternatives in Software Engineering