flutter-skill

A testing and debugging tool for Flutter apps, which are applications built with Google's Flutter framework. It can inspect the app's interface and interact with it while it runs.

In plain words
What is it for?
It is for launching or connecting to Flutter apps, finding widgets, tapping, typing, scrolling, swiping, checking values, taking screenshots, and reading logs.
Why use it?
It lets an agent check what users see and do, verify resulting state, capture screenshots, and investigate problems through the Dart debugging connection.

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/ai-dashboad/flutter-skill/flutter-skill
Any agent
npx skills add ai-dashboad/flutter-skill --skill flutter-skill
Clone the repo
git clone --depth 1 https://github.com/ai-dashboad/flutter-skill

Made for: Claude Code, Codex.

Per session 73 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 971 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.00073 $0.00971
Opus 5 $0.00036 $0.00485
Sonnet 5 $0.00015 $0.00194
Haiku 4.5 $0.00007 $0.00097

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

Security

Grade A, and why

flutter-skill 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 2d 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-submission/flutter-skill/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.

Flutter Skill

Control running Flutter applications for testing, debugging, and automation. Connects AI agents to Flutter apps via the Dart VM Service Protocol, exposing tools for UI inspection, gestures, state validation, screenshots, and log access.

Installation

Option 1: npx (Recommended)

{
  "mcpServers": {
    "flutter-skill": {
      "command": "npx",
      "args": ["flutter-skill"]
    }
  }
}

Option 2: Global Install

dart pub global activate flutter_skill
{
  "mcpServers": {
    "flutter-skill": {
      "command": "flutter_skill",
      "args": ["server"]
    }
  }
}

Key Tools

Category Tools Purpose
Connection launch_app, connect_app Start or attach to a Flutter app
Inspection inspect, get_widget_tree, find_by_type Discover UI elements and widget structure
Interaction tap, enter_text, swipe, scroll_to, long_press, drag Perform gestures and input
Validation wait_for_element, wait_for_gone, get_text_value, get_checkbox_state Assert UI state
Screenshots screenshot, screenshot_element Capture visual state
Navigation go_back, get_current_route, get_navigation_stack Control and inspect navigation
Debug get_logs, get_errors, hot_reload, get_performance Diagnose issues

Workflow

Core Testing Loop

launch_app(project_path: "/path/to/app")
  → screenshot()
  → inspect()
  → tap(key: "element_key") / enter_text(key: "field_key", text: "value")
  → screenshot()
  → verify with wait_for_element / get_text_value

Example: Login Flow

launch_app(project_path: "/path/to/app")
screenshot()
inspect()
enter_text(key: "email_field", text: "[email protected]")
enter_text(key: "password_field", text: "password123")
tap(key: "login_button")
wait_for_element(key: "home_screen", timeout: 5000)
screenshot()

If wait_for_element times out: Call screenshot() to see the current state, then get_errors() to check for crashes or failed network requests.

Read the full file on GitHub · 117 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. 2d ago First seen · 117 lines · 73 tokens per session scan A 06c22a08e242

Subscribe to this mod's changes

flutter-skill is a skill published in the GitHub repository ai-dashboad/flutter-skill (362 stars, last pushed 11d ago), licensed MIT. It adds 73 tokens to every session and 971 once invoked, about $0.0004 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

Appium Mobile Testing

Mobile application testing skill using Appium for iOS and Android, covering device capabilities, selectors, gestures, and cross-platform testing strategies.

PramodDutta/qaskills · 32 tokens

simview

Open, control, annotate, and send visual feedback from a local iOS Simulator or Android ADB device through SimView, or implement a saved SimView annotation handoff in the current project.

ToolingTools/SimView · 42 tokens

lumo

Mobile UI/UX design intelligence grounded in cognitive science (Fitts, Hick, Gestalt, Nielsen) and platform guidelines (Apple HIG, Material Design). Specialised for Jetpack Compose, Android XML, SwiftUI, and UIKit. Use when: "WCAG", "contrast", "accessibility", "colour pair", "design audit", "mobile UI review"…

OneXeor-Dev/lumo · 104 tokens

compose-modernize-build

Modernize an Android project's Gradle build: bump to Kotlin 2.x with kotlin-compose plugin (replace kotlinCompilerExtensionVersion), migrate kapt to KSP, introduce Version Catalogs (libs.versions.toml), use the Compose BOM, switch to Material 3.

RoninForge/roninforge-kotlin-compose · 59 tokens

compose-migrate-views-to-compose

Migrate a screen from the View system (XML layouts + Activity / Fragment + findViewById) to Compose: setContent, ViewModel + StateFlow, hilt, type-safe nav, Material 3.

RoninForge/roninforge-kotlin-compose · 52 tokens

driftx

Visual comparison, accessibility audit, layout regression, and device interaction for mobile apps (Android, iOS, React Native). Use when the user asks to compare their app against a design, check accessibility, detect visual regressions, inspect the component tree, capture screenshots, or interact with a…

nomanr/driftx · 73 tokens