ワンクリックで
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.