bump-android-version

bump-android-version is a skill for Claude Code, Codex from mobile-dev-inc/Maestro. It costs 46 tokens per session (2,657 once invoked), scanned A, original, Apache-2.0.

A project workflow for raising Maestro’s Android compile and target API levels and checking that its on-device tests still pass.

In plain words
What is it for?
Use it to bump Android API levels, rebuild driver APKs, run the test-e2e GitHub Actions workflow, inspect test-android failures, and repair affected passing flows.
Why use it?
It reduces the risk that a newer Android system image breaks existing test flows by requiring separate changes, rebuilds, end-to-end runs, and fixes for regressions.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/mobile-dev-inc/maestro/bump-android-version
Any agent
npx skills add mobile-dev-inc/Maestro --skill bump-android-version
Clone the repo
git clone --depth 1 https://github.com/mobile-dev-inc/Maestro

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for bump-android-version

README.md
[![agentmods](https://agentmods.dev/badge/skills/mobile-dev-inc/maestro/bump-android-version.svg)](https://agentmods.dev/skills/mobile-dev-inc/maestro/bump-android-version)
Your own site
<a href="https://agentmods.dev/skills/mobile-dev-inc/maestro/bump-android-version"><img src="https://agentmods.dev/badge/skills/mobile-dev-inc/maestro/bump-android-version.svg" alt="Measured on agentmods" height="20"></a>
Per session 46 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,657 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00046 $0.02657
Opus 5 $0.00023 $0.01328
Sonnet 5 $0.00009 $0.00531
Haiku 4.5 $0.00005 $0.00266

Measured 3d ago against content hash 032ea248b004, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

bump-android-version scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/bump-android-version/SKILL.md · 152 lines

How it starts

The opening of the file, as written. The whole thing — 152 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Bump Android Version

Overview

Drive an Android-version bump in Maestro commit-by-commit on a single feature branch: edit gradle, rebuild the on-device driver APKs, push a draft PR, dispatch test-e2e.yaml against the new system image, watch the test-android job, and diagnose+fix any newly-failing passing/ flows. Loop until green.

When to Use

  • User asks to bump Maestro's Android compileSdk / targetSdk (e.g. "bump to API 36").
  • User wants to validate Maestro against a new Android system image.

One commit per logical step. Don't bundle the gradle bump and the APK rebuild — they need to be separately revertible. After a failing run, fixes are committed and the workflow re-dispatched. Loop until green; do not stop on the first re-dispatch.

The loop only acts on passing/ failures. tests/demo_app/passing/ is the regression-detection suite — its flows are expected to pass, so a failure there is a real signal. tests/demo_app/failing/ is the negative-path suite (its flows are expected to fail) and is ignored end-to-end. The diagnose agent rejects failing/ artifacts and rejects retry-recovered flows in passing/ (see .claude/agents/diagnose-maestro-failure.md). If the run is otherwise green except for failing/, that's a green run.

Pre-flight

  • Working tree clean (git status).
  • main up to date: git fetch origin && git checkout main && git pull --ff-only origin main.
  • The workflow's workflow_dispatch inputs android_version (and optional app / flow) must exist on the branch.
  • android_version is a choice input — its options live in .github/workflows/test-e2e.yaml. If <new> isn't already listed (e.g. bumping to API 37), add it to the options: list in a separate commit before dispatching, otherwise the workflow rejects the input.
  • The validate-inputs job rejects android_version <= android-29. Bumps below API 29 aren't supported.
  • Branch name: bump-android-api-<old>-<new> (e.g. bump-android-api-34-36).

Read the full file on GitHub · 152 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 152 lines · 46 tokens per session scan A 032ea248b004

Subscribe to this mod's changes

bump-android-version is a skill published in the GitHub repository mobile-dev-inc/Maestro (15,456 stars, last pushed 5d ago), licensed Apache-2.0. It adds 46 tokens to every session and 2,657 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

argent-test-ui-flow

Autonomously test an app UI (iOS or Android) by running interact-screenshot-verify loops using argent MCP tools. Use when testing UI flows, verifying login works, testing navigation, running end-to-end UI test scenarios, manual QA steps, visible UI changes, or visual behavior.

software-mansion/argent · 64 tokens

mobile-automation

Control Android and iOS devices, emulators and simulators — launch apps, tap, swipe, type, take screenshots, read the accessibility tree. Use when a task involves a mobile device or app, mobile UI testing, or reproducing a bug on a phone.

mobile-next/mobile-mcp · 58 tokens

mobile-automation

MCP (dart-mcp + Marionette) を使ったFlutterアプリのE2E自動化・UI検証ガイド。シミュレーターでのUI動作確認、モックプレビュー検証、Bridge経由のE2Eテスト、スクリーンショット撮影など、アプリの動作検証が必要なときに使う。「動作確認して」「UIを検証して」「E2Eテスト」「シミュレーターで確認」「モックで確認」と言われたときや、UI変更後の検証フェーズで使用すること。.

K9i-0/ccpocket · 138 tokens

argent-create-flow

Create, record, edit, replay, or repair reusable Argent flow YAML files. Use when the user asks to record or replay a repeatable device path, set up profiling or an A/B comparison, or invoke the authoring engine behind argent-qa-flows. Also use before repeating three or more interactions. For one-off UI checks…

software-mansion/argent · 100 tokens

test-flutter

Flutter App のテスト実行・静的解析・フォーマット・テスト記述ガイド.

K9i-0/ccpocket · 26 tokens

noqa-testing

Use this skill when the user wants to boot and interact with iOS or Android devices/simulators — inspect the screen, execute actions, generate or edit test cases, or run UI tests via the noqa platform.

noqa-ai/noqa · 47 tokens