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.
npx agentmods add skills/ihatesea69/kiro-kit/mobile-testingnpx skills add ihatesea69/kiro-kit --skill mobile-testinggit clone --depth 1 https://github.com/ihatesea69/kiro-kitWrote 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.
[](https://agentmods.dev/skills/ihatesea69/kiro-kit/mobile-testing)<a href="https://agentmods.dev/skills/ihatesea69/kiro-kit/mobile-testing"><img src="https://agentmods.dev/badge/skills/ihatesea69/kiro-kit/mobile-testing.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00031 | $0.00294 |
| Opus 5 | $0.00015 | $0.00147 |
| Sonnet 5 | $0.00006 | $0.00059 |
| Haiku 4.5 | $0.00003 | $0.00029 |
Grade A, and why
mobile-testing 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 yesterday.
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.
What it actually says
Mobile Testing
Activate this skill when writing or running tests for mobile applications.
When to Use
- Writing widget/component tests
- Implementing integration tests
- Setting up golden (snapshot) tests
- Testing navigation flows
- Mocking platform channels or native modules
- Testing offline behavior
Flutter Testing
- Widget tests:
flutter testwith WidgetTester - Integration tests:
flutter test integration_test/ - Golden tests:
matchesGoldenFilefor visual regression - Use
mockitoormocktailfor dependency mocking - Use
bloc_testfor BLoC testing - Test with different screen sizes using
binding.window
React Native Testing
- Unit tests: Jest with
@testing-library/react-native - Component tests: render and query by accessibility labels
- Integration tests: Detox for E2E
- Mock native modules in
jest.setup.js - Snapshot tests for visual regression
Rules
- Test behavior, not implementation details
- Mock platform dependencies, not business logic
- Golden tests need baseline images committed to repo
- Integration tests should run on CI with emulators
- Cover critical user flows with integration tests
- Keep unit tests fast (under 1 second each)
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.
- yesterday First seen · 44 lines · 31 tokens per session scan A cec8a03da17e
mobile-testing is a skill published in the GitHub repository ihatesea69/kiro-kit (18 stars, last pushed 16d ago), licensed MIT. It adds 31 tokens to every session and 294 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-09-03.
Other skills, from other repositories
test-flutter
Flutter App のテスト実行・静的解析・フォーマット・テスト記述ガイド.
mobiai-android-testing
Use when writing or running tests in an Android project — unit tests, UI tests, choosing the right framework and patterns.
flutter-testing-skill
Generates Flutter widget tests, integration tests, and golden tests in Dart. Supports local execution and TestMu AI cloud for real device testing. Use when user mentions "Flutter", "widget test", "WidgetTester", "testWidgets", "fluttertest", "integrationtest". Triggers on: "Flutter", "widget test", "Dart test"…
Sanad Client Tester
Comprehensive testing and interactive verification protocol for the Sanad Flutter client including unit, widget, E2E, and agent-driven UI testing through the Dart VM Service.
testing-reactnative
Testing React Native 0.85+. Use when writing tests, reviewing test coverage, or setting up testing.
setting-up-host-vs-device-tests
Use this skill to choose between host (Robolectric/JVM) and device (instrumentation) tests for Jetpack Compose, and to configure each correctly. Covers the androidHostTest (a.k.a. src/test/) vs androidDeviceTest (a.k.a. src/androidTest/) source set split, what each flavor can and cannot drive (RenderThread…