kotlin-coroutines
스타0
포크0
업데이트2025년 11월 6일 08:26
Coroutine usage guardrails for Kotlin backend reviewers
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SKILL.md
readonly메뉴
Coroutine usage guardrails for Kotlin backend reviewers
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Kotlin backend layering and packaging guidelines
SQL data access best practices for AIRBot reviewers
Security review guardrails for AIRBot
Testing expectations for AIRBot reviewers
TypeScript style standards for AIRBot reviewers
| name | kotlin-coroutines |
| description | Coroutine usage guardrails for Kotlin backend reviewers |
| license | MIT |
runBlocking anywhere other than top-level entrypoints (resources, main) or when explicitly bridging to blocking code with the correct dispatcher.async { ... }.await() immediately, or using async just to change dispatchers.AsyncResponse (Dropwizard) to wrap blocking DAO calls instead of true suspend flows.suspend up through managers/resources or wrap legacy blocking code with withContext(Dispatchers.IO).getUserBlocking) rather than ad-hoc runBlocking.runBlocking matches the underlying workload (usually Dispatchers.IO).AsyncResponse is only applied to non-blocking suspend flows (Cosmos, service clients with await/executeAwait). Flag usages that simply wrap JDBI or other blocking calls.async/await pairs used sequentially with direct calls; use concurrent async only when awaiting later.withContext, not async, and that blocking calls inside suspend functions are guarded with the appropriate context.Grep for runBlocking, .await(), executeSync, or AsyncResponse to inspect how coroutines and blocking APIs mix.Read affected managers/resources to trace whether suspend functions bubble correctly.Glob modules like *Manager.kt, *Resource.kt, and *Dao.kt when you need broader context about call chains.