mobile-verifier

mobile-verifier is an agent for Claude Code, OpenCode from ahmed3elshaer/everything-claude-code-mobile. It costs 0 tokens per session (2,070 once invoked), scanned A, original, MIT.

An Android test reliability checker that runs test suites repeatedly and records which tests pass or fail. It can report pass@k, meaning how often a test passes across repeated runs, and identify flaky tests that pass only sometimes.

In plain words
What is it for?
Use it after feature work or refactoring, before commits and releases, during build-pipeline checks, or while investigating unreliable tests.
Why use it?
A single successful test run can hide intermittent failures that later break builds or reduce trust in the test suite.

Agent for Claude CodeOpenCode

Written for Claude Code and OpenCode: shipped in a Claude Code plugin, but also installed under .opencode/.

Part of the everything-claude-code-mobile plugin — 46 skills, 35 commands, 27 agents, 2 hooks, 3 MCP servers shipped together

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 agents/ahmed3elshaer/everything-claude-code-mobile/mobile-verifier
Clone the repo
git clone --depth 1 https://github.com/ahmed3elshaer/everything-claude-code-mobile

Made for: Claude Code, OpenCode.

Or install everything-claude-code-mobile, the plugin that ships this one along with the rest of its 46 skills, 35 commands, 27 agents, 2 hooks, 3 MCP servers.

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 mobile-verifier

README.md
[![agentmods](https://agentmods.dev/badge/agents/ahmed3elshaer/everything-claude-code-mobile/mobile-verifier.svg)](https://agentmods.dev/agents/ahmed3elshaer/everything-claude-code-mobile/mobile-verifier)
Your own site
<a href="https://agentmods.dev/agents/ahmed3elshaer/everything-claude-code-mobile/mobile-verifier"><img src="https://agentmods.dev/badge/agents/ahmed3elshaer/everything-claude-code-mobile/mobile-verifier.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,070 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.1 $0.00000 $0.02070
Opus 5 $0.00000 $0.01035
Sonnet 5 $0.00000 $0.00414
Haiku 4.5 $0.00000 $0.00207

Measured 6d ago against content hash 5470e7fa5273, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

mobile-verifier 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 6d 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.

.opencode/agents/mobile-verifier.md · 321 lines

How it starts

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

Mobile Verifier Agent

Executes automated verification loops with pass@k metrics for Android testing. Detects flaky tests and measures code reliability.

Purpose

This agent runs mobile test suites multiple times (k iterations) to:

  • Detect flaky tests that pass intermittently
  • Measure pass@k reliability metrics
  • Identify failure patterns and root causes
  • Provide actionable fix suggestions

When to Use

Invoke this agent when:

  • After implementing new features
  • Before committing/pushing code
  • During CI/CD pipeline validation
  • Investigating test failures
  • Establishing baseline reliability
  • After refactoring

Verification Process

Step 1: Test Discovery

Find all tests in the project:

# Unit tests
find . -name "*Test.kt" -path "*/test/*"

# Android tests
find . -name "*Test.kt" -path "*/androidTest/*"

# Compose tests
grep -r "@Composable test" src/androidTest/

Categories:

  • Unit: JUnit tests in src/test/
  • UI: Espresso tests in src/androidTest/
  • Compose: Compose Testing tests

Step 2: Loop Execution

Run tests k times:

For i = 1 to k:
    Run test suite
    Record pass/fail per test
    Save output/logs
    Clear app data between runs (UI tests)

k values:

  • k=2: Quick check (development)
  • k=3: Standard (pre-commit)
  • k=5: Thorough (pre-release)
  • k=10: Investigation (flaky detection)

Step 3: Pass@k Calculation

Pass@k(test) = count(passed_iterations) / k

testLogin:
  Iteration 1: ✓
  Iteration 2: ✓
  Iteration 3: ✓
  Pass@3 = 3/3 = 1.0 (100%)

testLogout:
  Iteration 1: ✓
  Iteration 2: ✗ (AssertionError: expected true, got false)
  Iteration 3: ✓
  Pass@3 = 2/3 = 0.67 (67%)

Step 4: Flaky Analysis

Identify flaky test patterns:

Pattern Interpretation
✓✓✓✓✗ Random failure (likely async timing)
✗✓✓✓✓ Cold start issue
✓✗✓✗✓ Systematic flakiness (50% failure rate)
✗✗✓✓✓ Warming up pattern

Step 5: Report Generation

Read the full file on GitHub · 321 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. 6d ago First seen · 321 lines · 0 tokens per session scan A 5470e7fa5273

Subscribe to this mod's changes

mobile-verifier is an agent published in the GitHub repository ahmed3elshaer/everything-claude-code-mobile (65 stars, last pushed 2mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 2,070 tokens. 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 agents, from other repositories

argent-environment-inspector

Inspects a mobile app project's environment and returns structured JSON covering project type, platform support, build and startup commands, bundler config, env resolution, key packages, QA/feedback-loop tooling, and Argent-specific workflow commands. Works on any project — determines whether it is React Native, Expo…

software-mansion/argent · 149 tokens

mobile-developer

Cross-platform mobile development specialist for React Native and Flutter. Use PROACTIVELY for mobile applications, native integrations, offline sync, push notifications, and cross-platform optimization.

maxrave-dev/SimpMusic · 38 tokens

tunnel-client

Android tunnel module — FCM wakeup, TLS client, relay connection, session lifecycle.

Monkopedia/rouse-context · 21 tokens

accessibility-reviewer

Reviews Android Compose / iOS SwiftUI changes for screen-reader and reduce-motion regressions. Use proactively after any UI change, before opening a PR that touches ui/ or iosApp/ Views, or when asked to check TalkBack/VoiceOver accessibility. A core user base is blind and visually impaired — accessibility is treated…

baijum/ukulele-companion · 74 tokens

Bug Fix — By Screen

Fixes bugs scoped to a single screen by analyzing ViewController/Screen + ViewModel + API + CustomViews together.

tqtuan1201/TTBaseUIKit · 29 tokens

Refactor UIKit Module

Refactors UIKit code for clean MVVM, extracts views, fixes constraint patterns, and enforces TTBaseUIKit compliance.

tqtuan1201/TTBaseUIKit · 28 tokens