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/eaglesakura/agent-skills/flutter-coding-rulesnpx skills add eaglesakura/agent-skills --skill flutter-coding-rulesgit clone --depth 1 https://github.com/eaglesakura/agent-skillsWhat 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.00233 | $0.00953 |
| Opus 5 | $0.00117 | $0.00477 |
| Sonnet 5 | $0.00047 | $0.00191 |
| Haiku 4.5 | $0.00023 | $0.00095 |
Grade A, and why
flutter-coding-rules 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.
What it actually says
Flutter & Dart コーディング規約
*.dart を書く・直すときは、この SKILL の規約と、文脈に合う参照ドキュメントに従う。
レイヤー設計そのものは flutter-layered-architecture-* 側が主で、本 SKILL は言語・ファイル・コメント・定番パターンの土台である。
いつ使うか
- Dart の新規実装・修正・レビュー指摘の反映
- データオブジェクト / Delegate / enum / 例外の定義・catch / 可視性 / ファイルレイアウト / コメント
作業手順
- 変更対象の種類を特定する(DTO、Delegate、enum、コメントのみ、など)
- 下表から必要な
references/(と snippets)をロードする - 規約に沿って実装する
- Analyzer / Formatter で検証する
- 解析エラーの直し方に迷ったら fix-error を読む
文脈に応じたドキュメントのロード
| 参照 | 使うとき |
|---|---|
| クラス作成テンプレート | データオブジェクト等のひな形が欲しいとき |
| data_object | DTO / data class / 構造体的な型 |
| delegate-pattern | Delegate による責務分離 |
| code_comment | ドキュメントコメント・Example |
| code_internal | @internal / @visibleForTesting / @protected 等 |
| dart_file_layout | ファイル名・1クラス1ファイル・library・配置 |
| enum | enum・dot-shorthands・switch 網羅 |
| try-catch | 例外処理・Error/Exception の catch |
| exception-definition | 独自 Exception / Error の定義(message / cause / stackTrace / toString) |
| fix-error | Analyzer / よくある修正の手順 |
必要な参照だけ読む。全部を一度にロードしない。
他 SKILL との境界
- 画面の MVVM:
flutter-layered-architecture-screen-mvvm - Usecase / Repository 設計:
flutter-layered-architecture-design-patterns - アプリ起動・DTD デバッグ:
flutter-app-debug
ナレッジベース
DO: プロジェクト規定のコマンド prefix を付ける
mise/fvm等がある場合はそのルールに従う(例:flutter ...)
What ships with it
11 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.
- assets/architecture_data_object.code-snippets 4.5 KB
- evals/evals.json 2.2 KB
- references/code_comment.md 9.9 KB
- references/code_internal.md 4.6 KB
- references/dart_file_layout.md 7.3 KB
- references/data_object.md 14 KB
- references/delegate-pattern.md 16 KB
- references/enum.md 8.9 KB
- references/exception-definition.md 3.0 KB
- references/fix-error.md 2.5 KB
- references/try-catch.md 7.9 KB
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.
- 2d ago First seen · 61 lines · 233 tokens per session scan A 2f5ba0e158de
flutter-coding-rules is a skill published in the GitHub repository eaglesakura/agent-skills (2 stars, last pushed 7d ago), licensed MIT. It adds 233 tokens to every session and 953 once invoked, about $0.0012 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
orca-emulator-android
Control an Android emulator / device from inside Orca using the orca CLI. Use for listing/booting AVDs, taps, swipes, typing, hardware buttons (incl. Back and Recents), rotation, app install/launch, runtime permissions, the accessibility tree, and logcat — driving a real adb-connected device or emulator.…
git-safety
Git safety rules. INVOKE WHEN: git push, force push, git reset, git clean, destructive git, push force, reset hard. NEVER force push or do destructive git operations.
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.
release
Cut a sim-use release end-to-end. Use when the user runs /release or asks to "ship a release", "publish a version", "cut a release", or "release to homebrew". Drives scripts/local-release.sh; never reimplement its build/sign/tarball logic.
android-pentest
安卓应用渗透测试 — APK分析、Hook、自动化测试、运行态驱动、签名恢复、抓包分析.
react-native-ease-refactor
Scan for Animated/Reanimated code and migrate to EaseView.