agentsclimarketplace

Android testing ui

Skill krutikJain/android-agent-skills/skills/android-testing-ui

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-testing-ui

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

Validate Android UI behavior with Compose UI tests, Espresso-style checks, screenshot assertions, and accessibility verification.

SKILL.md

5.0 KB, 838 tokens by cl100k_base, as published. Nobody here has run it

Android Testing UI

When To Use

  • Use this skill when the request is about: android ui test, compose ui test screen, espresso validation android.
  • Primary outcome: Validate Android UI behavior with Compose UI tests, Espresso-style checks, screenshot assertions, and accessibility verification.
  • Reach for this skill when the missing work is assertions, instrumentation, screenshot capture, or accessibility verification, not product-state design.
  • Handoff skills when the scope expands:
  • android-compose-accessibility
  • android-ui-states-validation

Workflow

  1. Scope the risk surface: behavior, visual regressions, accessibility semantics, or cross-device interaction.
  2. Pick the narrowest verification strategy that still catches the likely regressions: instrumentation for behavior, Roborazzi for visuals, or both for high-risk flows.
  3. Instrument the workflow so failures are actionable rather than just red.
  4. Run the relevant checks on the showcase apps and packaging outputs.
  5. Capture any residual risk with explicit follow-up work and owner skills, including handing off to android-ui-states-validation when the state matrix itself is incomplete.

Guardrails

  • Prefer reproducible checks in CI over one-off local heroics.
  • Keep screenshot tests stable by using deterministic content, fixed themes, and minimal time-based UI churn.
  • Fail with a precise remediation path instead of a vague quality gate.
  • Keep secrets, signing material, and production credentials out of examples and fixtures.
  • Treat performance and security work as engineering tasks with evidence, not folklore.

Anti-Patterns

  • Adding more tests without increasing signal.
  • Turning screenshot tests into pixel-noise snapshots of unstable surfaces.
  • Shipping benchmarks or security scans that no one can reproduce.
  • Hard-coding release credentials into build logic.
  • Using synthetic metrics with no user-impact interpretation.

Remediation Examples

Choose behavior vs screenshot coverage

composeTestRule.onNodeWithText("Review blocked state").performClick()
composeTestRule.onNodeWithText("Reminder readiness").assertIsDisplayed()
@Test
fun orbitTasksBoard_matchesGolden() {
    composeTestRule.setContent { OrbitTasksApp() }
    composeTestRule.onRoot().captureRoboImage()
}

Accessibility assertion alongside UI behavior

composeTestRule
    .onNodeWithContentDescription("Team avatar for release readiness")
    .assertIsDisplayed()

Examples

Happy path

  • Scenario: Run Compose UI assertions for the task board and action flows, then verify the same stable surface with Roborazzi.
  • Command: cd examples/orbittasks-compose && ./gradlew :app:connectedDebugAndroidTest verifyRoborazziDebug

Edge case

  • Scenario: Record or refresh screenshot baselines when a stable Compose surface changes intentionally.
  • Command: cd examples/orbittasks-compose && ./gradlew recordRoborazziDebug

Failure recovery

  • Scenario: Separate UI-testing requests from UI-state reviews or accessibility-only prompts.
  • Command: python3 scripts/eval_triggers.py --skill android-testing-ui

Done Checklist

  • The implementation path is explicit, minimal, and tied to the right Android surface.
  • Relevant example commands and benchmark prompts have been exercised or updated.
  • Handoffs to adjacent skills are documented when the request crosses boundaries.
  • Official references cover the chosen pattern and the main migration or troubleshooting path.

Official References

What ships with it: 5 files

3.1 KB alongside SKILL.md, 1 of them executable

agents/

references/

scripts/

Keep looking

Skills are one crate of 326,984. 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.