agentsclimarketplace

Android coil compose

Skill krutikJain/android-agent-skills/skills/android-coil-compose

Android skills repository for Kotlin, Compose, XML, testing, CI, release work, and legacy upgrades

Install
npx -y skills add krutikJain/android-agent-skills --skill android-coil-compose

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 14 stars14 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Use Coil in Jetpack Compose with AsyncImage, painter variants, sizing, and accessible image loading patterns.

SKILL.md

4.6 KB, as published. Nobody here has run it

Android Coil Compose

When To Use

  • Use this skill when the request is about: coil compose image loading, asyncimage android compose, rememberasyncimagepainter android.
  • Primary outcome: Use Coil in Jetpack Compose with AsyncImage, painter variants, sizing, and accessible image loading patterns.
  • Reach for this skill when the work is specifically about image loading, placeholders, error states, sizing, or list performance in Compose.
  • Read references/patterns.md for the AsyncImage vs painter vs subcomposition decision guide.
  • Read references/scenarios.md for list-performance and screenshot-stable validation paths.
  • Handoff skills when the scope expands:
  • android-compose-foundations
  • android-compose-performance

Workflow

  1. Identify whether the UI needs a simple image surface, low-level painter access, or custom slot-based loading states.
  2. Prefer AsyncImage first, then drop down to painter APIs only when the component truly needs them.
  3. Constrain size, placeholders, and content description so the image behavior is both performant and accessible; for painter APIs, supply an explicit size resolver when needed.
  4. Check list rendering, state churn, and visual fallbacks before considering the implementation done, and confirm that remote data or decoder modules are actually present when the source type needs them.
  5. Hand off general Compose layout or broader performance issues to the neighboring skills after the image pipeline is stable.

Guardrails

  • Prefer AsyncImage for most Compose surfaces.
  • Keep image requests sized to the rendered UI surface when possible.
  • Provide meaningful accessibility behavior: descriptive contentDescription for informative images, null for decorative ones.
  • Avoid subcomposition-heavy image patterns in scroll-heavy lists unless the UX truly needs them.
  • If you need painter state directly, remember that rememberAsyncImagePainter does not infer on-screen size by itself.

Anti-Patterns

  • Loading full-size remote assets into tiny list items.
  • Using SubcomposeAsyncImage everywhere when a simple placeholder is enough.
  • Treating image loading failures as silent no-ops with no error fallback.
  • Forgetting accessibility semantics on actionable or informative images.

Review Focus

  • API choice: AsyncImage, rememberAsyncImagePainter, or SubcomposeAsyncImage.
  • Correct sizing and request construction for the rendered surface.
  • Remote-loading prerequisites such as the right Coil network modules.
  • Stable placeholders and error states for lists, tests, and screenshots.

Examples

Happy path

  • Scenario: Build the Compose fixture and verify a stable AsyncImage surface renders in the task board.
  • Command: bash skills/android-coil-compose/scripts/run_examples.sh

Edge case

  • Scenario: Review a list cell where placeholders, sizing, and lazy-list performance all matter.
  • Command: cd examples/orbittasks-compose && ./gradlew :app:testDebugUnitTest

Failure recovery

  • Scenario: Re-check the image surface after a placeholder or error-state change using screenshot-friendly validation.
  • Command: cd examples/orbittasks-compose && ./gradlew verifyRoborazziDebug

Done Checklist

  • AsyncImage is the default unless a lower-level painter API is justified.
  • Sizing, placeholders, and error states are explicit.
  • Accessibility behavior is intentional.
  • List and screenshot behavior has been validated on the Compose fixture.

Official References

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.