원클릭으로
android-coil-compose
Use Coil in Jetpack Compose with AsyncImage, painter variants, sizing, and accessible image loading patterns.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use Coil in Jetpack Compose with AsyncImage, painter variants, sizing, and accessible image loading patterns.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Automate Android CI, versioning, signing boundaries, release channels, and Play-ready delivery workflows.
Make Compose interfaces accessible with semantics, announcements, contrast, focus order, and adaptive touch targets.
Profile and improve Compose recomposition, layout, scrolling, startup, and rendering performance in Android apps.
Manage Compose state, remember APIs, side effects, snapshots, and lifecycle-aware collection without leaks or loops.
Bridge Compose and the View system safely during incremental migrations, interoperability screens, and shared theming.
Use semantic ADB and UIAutomator workflows to inspect, launch, and interact with Android apps from agents.
| name | android-coil-compose |
| description | Use Coil in Jetpack Compose with AsyncImage, painter variants, sizing, and accessible image loading patterns. |
| metadata | {"version":"0.1.0","category":"ui","tags":["android","compose","coil","images","accessibility"],"triggers":{"include":["coil compose image loading","asyncimage android compose","rememberasyncimagepainter android","compose image placeholder error android","coil lazycolumn performance android"],"exclude":["retrofit only","ui automator only","room migration only"]},"owners":["@android-agent-skills/maintainers"],"test_targets":["examples/orbittasks-compose","benchmarks/triggers.jsonl"]} |
AsyncImage, painter variants, sizing, and accessible image loading patterns.references/patterns.md for the AsyncImage vs painter vs subcomposition decision guide.references/scenarios.md for list-performance and screenshot-stable validation paths.android-compose-foundationsandroid-compose-performanceAsyncImage first, then drop down to painter APIs only when the component truly needs them.AsyncImage for most Compose surfaces.contentDescription for informative images, null for decorative ones.rememberAsyncImagePainter does not infer on-screen size by itself.SubcomposeAsyncImage everywhere when a simple placeholder is enough.AsyncImage, rememberAsyncImagePainter, or SubcomposeAsyncImage.AsyncImage surface renders in the task board.bash skills/android-coil-compose/scripts/run_examples.shcd examples/orbittasks-compose && ./gradlew :app:testDebugUnitTestcd examples/orbittasks-compose && ./gradlew verifyRoborazziDebugAsyncImage is the default unless a lower-level painter API is justified.