maestro-flutter

maestro-flutter is a skill for Claude Code from aleksandr-chaika/flutter-clean-arch-skills. It costs 41 tokens per session (818 once invoked), scanned A, original, MIT.

A guide for testing Flutter apps from the outside, using Maestro: a tool that describes user actions in readable YAML files and runs them on mobile devices.

In plain words
What is it for?
Use it to create login and other app flows, add labels that tests can find, run checks on emulators and real devices, and perform screenshot-based visual comparisons.
Why use it?
It provides a way to check complete user journeys and compare screenshots, helping reveal interface and device-specific problems that smaller code tests may miss.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter.

Good fit Use it to create login and other app flows, add labels that tests can find, run checks on emulators and real devices, and perform screenshot-based visual comparisons.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/aleksandr-chaika/flutter-clean-arch-skills/maestro-flutter
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.

Any agent
npx skills add aleksandr-chaika/flutter-clean-arch-skills --skill maestro-flutter
Clone the repo
git clone --depth 1 https://github.com/aleksandr-chaika/flutter-clean-arch-skills

Made for: Claude Code.

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 maestro-flutter

README.md
[![agentmods](https://agentmods.dev/badge/skills/aleksandr-chaika/flutter-clean-arch-skills/maestro-flutter/github.svg)](https://agentmods.dev/skills/aleksandr-chaika/flutter-clean-arch-skills/maestro-flutter)
Your own site
<a href="https://agentmods.dev/skills/aleksandr-chaika/flutter-clean-arch-skills/maestro-flutter"><img src="https://agentmods.dev/badge/skills/aleksandr-chaika/flutter-clean-arch-skills/maestro-flutter/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for maestro-flutter

Your own site · 80×15
<a href="https://agentmods.dev/skills/aleksandr-chaika/flutter-clean-arch-skills/maestro-flutter"><img src="https://agentmods.dev/badge/skills/aleksandr-chaika/flutter-clean-arch-skills/maestro-flutter.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 41 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 818 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.00041 $0.00818
Opus 5 $0.00020 $0.00409
Sonnet 5 $0.00008 $0.00164
Haiku 4.5 $0.00004 $0.00082

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

Security

Grade A, and why

maestro-flutter 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 12d 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.

skills/maestro-flutter/SKILL.md · 117 lines

How it starts

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

Maestro Flutter E2E Testing Guide

Reference Guide

Topic Reference Use When
Flow Patterns references/flow-patterns.md Writing YAML flows, Flutter-specific tips
CI & Visual Regression references/ci-visual-regression.md CI/CD setup, visual comparison, troubleshooting

Core Principles

  1. ADD semantic labelsKey() / Semantics on all interactive widgets
  2. WRITE flows in YAML — simple, readable, no code
  3. RUN on emulator first, then real devices
  4. CAPTURE screenshots at key assertion points
  5. USE visual regression for Pixel Perfect validation

TestKeys Pattern (MANDATORY)

// lib/core/constants/test_keys.dart
abstract class TestKeys {
  static const emailField = Key('email_field');
  static const passwordField = Key('password_field');
  static const loginButton = Key('login_button');
  static const registerButton = Key('register_button');
  static const homeTab = Key('home_tab');
  static const profileTab = Key('profile_tab');
  static const loadingIndicator = Key('loading_indicator');
  static const errorMessage = Key('error_message');
}

Project Structure

.maestro/
├── config.yaml
└── flows/
    ├── auth/
    │   ├── login.yaml
    │   └── register.yaml
    ├── {feature}/
    │   └── {action}.yaml
    └── smoke_test.yaml

Flow YAML Syntax

appId: com.example.myapp
name: User Login
---
- launchApp:
    clearState: true
- extendedWaitUntil:
    visible: "Welcome"
    timeout: 10000
- tapOn:
    id: "email_field"
- inputText: ${TEST_EMAIL}
- tapOn:
    id: "password_field"
- inputText: ${TEST_PASSWORD}
- tapOn:
    id: "login_button"
- waitForAnimationToEnd
- assertVisible:
    id: "home_tab"
- takeScreenshot: "login_success"

Key Commands

Command Description
tapOn: { id: "key" } Tap by widget Key
inputText: "value" Type text
assertVisible: "text" Assert visible
assertNotVisible: "text" Assert gone
extendedWaitUntil Wait for element
waitForAnimationToEnd Wait animations
takeScreenshot: "name" Screenshot
runFlow: path.yaml Reuse flow
launchApp: { clearState: true } Fresh start

Read the full file on GitHub · 117 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 12d ago First seen · 117 lines · 41 tokens per session scan A e9561e9441a1

Subscribe to this mod's changes

maestro-flutter is a skill published in the GitHub repository aleksandr-chaika/flutter-clean-arch-skills (5 stars, last pushed 6mo ago), licensed MIT. It adds 41 tokens to every session and 818 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-31.

Related

Other skills, from other repositories

android-kotlin-compose

Android development with Kotlin and Jetpack Compose. Use when user mentions "Compose", "Jetpack Compose", "Material3", "Hilt", "Room", "ViewModel", or needs to build Android UI, implement MVVM architecture, manage Compose state, or integrate Jetpack libraries (Navigation, Room, Hilt, ViewModel). Triggers on…

and3r817/dot-claude-plugins · 84 tokens

android-kotlin-coroutines

Android development with Kotlin Coroutines and Flow. Use when user mentions "coroutines", "suspend", "Flow", "StateFlow", "SharedFlow", "viewModelScope", "lifecycleScope", or needs to implement async programming, handle structured concurrency, integrate coroutines with Retrofit/Room/WorkManager, or write coroutine…

and3r817/dot-claude-plugins · 87 tokens

test-native-extension

Validate a third-party control repo across four automated layers plus one printed manual recipe. Layer 1 asserts native-source structure (Android getName() and iOS +moduleName to manifest nativeModule; @ReactMethod / RCTEXPORTMETHOD to methods; no @ReactModule) plus load/init readiness (ReactPackage public no-arg…

microsoft/power-platform-skills · 211 tokens

ios-device-qa

Use when the user runs /ios-device-qa to drive a real iPhone over USB through a debug-bridge daemon and return a device QA report with verified interactions. Do not use for remote, credential, publish, deploy, or irreversible changes.

OutlineDriven/odin-claude-plugin · 55 tokens

xcode-simulator-testing

Use when asked to run /xcode-simulator-testing with a scheme name or current to build and launch an iOS app in a simulator. Not for project regeneration: use ios-build-fix.

OutlineDriven/odin-claude-plugin · 46 tokens

release

Release preparation workflow - security audit → E2E tests → review → changelog → docs.

parcadei/Continuous-Claude-v3 · 20 tokens