flutter-migration

flutter-migration is a skill for Claude Code, Codex from yendangn/flutter-app-builder. It costs 61 tokens per session (1,528 once invoked), scanned A, original, MIT.

A migration guide for moving an existing Flutter app to a layered architecture, where dependencies are hidden behind app-owned interfaces and features are moved gradually.

In plain words
What is it for?
Use it to audit direct package imports, centralize dependency setup, wrap logging, networking, storage and analytics, and migrate features one at a time with checks after each phase.
Why use it?
It reduces the risk of a large rewrite by keeping old and new code working during the transition. It also makes dependencies easier to replace and test.

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

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge for your README with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them.

agentmods badge for flutter-migration

README.md
[![agentmods](https://agentmods.dev/badge/skills/yendangn/flutter-app-builder/flutter-migration.svg)](https://agentmods.dev/skills/yendangn/flutter-app-builder/flutter-migration)
Per session 61 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,528 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.00061 $0.01528
Opus 5 $0.00030 $0.00764
Sonnet 5 $0.00012 $0.00306
Haiku 4.5 $0.00006 $0.00153

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

Security

Grade A, and why

flutter-migration 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.

skills/flutter-migration/SKILL.md · 159 lines

How it starts

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

Flutter Migration

Full reference: template.md

Key rules

  • Audit first: run grep -r "import 'package:" lib/ — every direct third-party import outside a wrapper is a violation to fix.
  • Wrapper rule: each third-party package gets one *_impl.dart wrapper. All app code imports the interface, not the package.
  • Phase 1 — DI centralization: introduce service_locator.dart and register existing singletons there. Don't change behavior yet.
  • Phase 2 — Wrap dependencies: wrap logging, networking, storage, analytics one-by-one. Each wrapper is independently testable.
  • Phase 3 — Feature migration: migrate one feature at a time to clean architecture (entity → use case → cubit → page). Don't big-bang rewrite.
  • Verification script: scripts/check_wrapper_rule.sh — run after each phase. Checks: (1) no direct third-party imports outside *_impl.dart, (2) no DI registrations outside core/di/ or features/*/di/, (3) no getIt<T>() calls outside composition boundaries. Target ≥ 85% before next phase.
  • Keep old code paths alive during transition — use feature flags to switch between old and new implementations.
  • Never break tests during migration — existing tests are a safety net, not a migration blocker.
  • State management agnostic: wrapper rule works with BLoC, Riverpod, or Provider. Don't switch state management during migration — wrap dependencies first, change state management later (if ever).

Quick-start checklist

- [ ] Phase 0: Run audit (`grep -r "import 'package:" lib/`) — document all violations
- [ ] Phase 1 PR1: Create `service_locator.dart` — move all scattered registrations
- [ ] Phase 1 PR2: Wrap logger — `AppLogger` interface + `LoggerImpl`
- [ ] Phase 1 PR3: Wrap HTTP — `DioClient` + `ApiClient` interface
- [ ] Phase 1 PR4: Wrap storage — `KeyValueStore` + `SecureStorage` interfaces
- [ ] Phase 1: Run `check_wrapper_rule.sh` — verify ≥ 85% compliance
- [ ] Phase 2: Migrate features one-by-one (simplest first, auth last)
- [ ] Phase 3: Add `ErrorHandler` + zone guard + test fakes + coverage baseline
- [ ] Add `check_wrapper_rule.sh` to CI — prevent regression

Read the full file on GitHub · 159 lines

Files

What ships with it

8 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. 3d ago First seen · 159 lines · 61 tokens per session scan A 82c6f07b1e6c

Subscribe to this mod's changes

flutter-migration is a skill published in the GitHub repository yendangn/flutter-app-builder (5 stars, last pushed 2mo ago), licensed MIT. It adds 61 tokens to every session and 1,528 once invoked, about $0.0003 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

dogfood

Systematically explore and test a mobile app on iOS/Android with agent-device to find bugs, UX issues, and other problems. Use when asked to dogfood, QA, exploratory test, find issues, bug hunt, or test this app on mobile.

callstack/agent-device · 55 tokens

flutter-fix-layout-issues

Fixes Flutter layout errors (overflows, unbounded constraints) using Dart and Flutter MCP tools. Use when addressing "RenderFlex overflowed", "Vertical viewport was given unbounded height", or similar layout issues.

flutter/agent-plugins · 50 tokens

android-pentest

安卓应用渗透测试 — APK分析、Hook、自动化测试、运行态驱动、签名恢复、抓包分析.

Netw0rkNoob/VulnClaw · 32 tokens

ios-hig-design

Design native iOS interfaces following Apple Human Interface Guidelines. Use when the user mentions "iPhone app", "iPad layout", "SwiftUI", "UIKit", "Dynamic Island", "safe areas", "HIG compliance", "SF Symbols", "haptic feedback", "iOS accessibility", "make my app feel native", or "follow Apple design guidelines".…

wondelai/skills · 145 tokens

firebase-remote-config

Use when implementing feature flags, running A/B tests, setting parameter defaults, fetching/activating config, or enabling real-time config updates.

evanca/flutter-ai-rules · 33 tokens

odevio

Take a Flutter project to an iPhone or the App Store with Odevio - build, sign and publish iOS apps from Windows, Linux or macOS with no Mac and no Xcode. Handles Apple setup, certificates, provisioning profiles, code signing, the .ipa, TestFlight and App Store submission, and fixes build failures automatically. Use…

Odevio/Odevio-CLI · 110 tokens