This is a solid reference for implementing Coil image loading in Jetpack Compose apps. It covers the three main APIs (AsyncImage, rememberAsyncImagePainter, and SubcomposeAsyncImage) with clear guidance on when to use each. The warnings are genuinely useful, especially the note that rememberAsyncImagePainter loads images at original dimensions by default, which can wreck performance if you're not careful. The skill steers you toward AsyncImage for most cases and explicitly warns against using SubcomposeAsyncImage in lazy lists. If you're loading images from URLs in Compose, this gives you the patterns you need without having to dig through documentation.
npx skills add https://github.com/new-silvermoon/awesome-android-agent-skills --skill coil-compose