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/yendangn/flutter-app-builder/flutter-migrationnpx skills add yendangn/flutter-app-builder --skill flutter-migrationgit clone --depth 1 https://github.com/yendangn/flutter-app-builderWrote 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.
[](https://agentmods.dev/skills/yendangn/flutter-app-builder/flutter-migration)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.00061 | $0.01528 |
| Opus 5 | $0.00030 | $0.00764 |
| Sonnet 5 | $0.00012 | $0.00306 |
| Haiku 4.5 | $0.00006 | $0.00153 |
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.
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.dartwrapper. All app code imports the interface, not the package. - Phase 1 — DI centralization: introduce
service_locator.dartand 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 outsidecore/di/orfeatures/*/di/, (3) nogetIt<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
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.
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.
- 3d ago First seen · 159 lines · 61 tokens per session scan A 82c6f07b1e6c
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.
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.
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.
android-pentest
安卓应用渗透测试 — APK分析、Hook、自动化测试、运行态驱动、签名恢复、抓包分析.
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".…
firebase-remote-config
Use when implementing feature flags, running A/B tests, setting parameter defaults, fetching/activating config, or enabling real-time config updates.
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…