en un clic
android-concurrency
Standards for Coroutines, Flow, and Threading
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Menu
Standards for Coroutines, Flow, and Threading
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Basé sur la classification professionnelle SOC
Foundational "High-Density" standard for token-optimized agent instructions and CLI-based automated activation.
Universal principles for clean, maintainable, and robust code across all environments.
Standards for performing high-quality, readable code reviews.
Essential rules for code comments, READMEs, and technical documentation.
CRITICAL - Before ANY file write, audit loaded skills for violations. Auto-report via feedback command.
Universal standards for version control, branching, and team collaboration.
| name | Android Concurrency |
| description | Standards for Coroutines, Flow, and Threading |
| metadata | {"labels":["android","concurrency","coroutines","flow"],"triggers":{"files":["**/*.kt"],"keywords":["suspend","viewModelScope","lifecycleScope","Flow"]}} |
viewModelScope (VM) or lifecycleScope (Activity/Fragment).DispatcherProvider) for testability. Do not hardcode Dispatchers.IO.Flow for data streams.StateFlow (State) or SharedFlow (Events).collectAsStateWithLifecycle() (Compose) or repeatOnLifecycle (Views).**No GlobalScope**: Use structured scopes.**Avoid Async**: Prefer simple suspend functions unless parallel execution is needed.