flutter-codestyle

flutter-codestyle is a skill for Claude Code, Codex from GulajavaMinistudio/awesome-copilot-id. It costs 13 tokens per session (954 once invoked), scanned A, original, MIT.

A set of coding instructions for Flutter and Dart development. Flutter is a toolkit for building app interfaces, and Dart is the programming language commonly used with it.

In plain words
What is it for?
Writing, reviewing, or maintaining Flutter apps and Dart code according to the stated coding and architecture conventions.
Why use it?
It gives an agent consistent rules for Dart code, Flutter interfaces, code structure, and performance. The listed guidance includes Dart style, null safety, clean architecture, and widget performance practices.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Writing, reviewing, or maintaining Flutter apps and Dart code according to the stated coding and architecture conventions.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/gulajavaministudio/awesome-copilot-id/flutter-codestyle
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 GulajavaMinistudio/awesome-copilot-id --skill flutter-codestyle
Clone the repo
git clone --depth 1 https://github.com/GulajavaMinistudio/awesome-copilot-id

Made for: Claude Code, Codex.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/gulajavaministudio/awesome-copilot-id/flutter-codestyle/github.svg)](https://agentmods.dev/skills/gulajavaministudio/awesome-copilot-id/flutter-codestyle)
Your own site
<a href="https://agentmods.dev/skills/gulajavaministudio/awesome-copilot-id/flutter-codestyle"><img src="https://agentmods.dev/badge/skills/gulajavaministudio/awesome-copilot-id/flutter-codestyle/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 flutter-codestyle

Your own site · 80×15
<a href="https://agentmods.dev/skills/gulajavaministudio/awesome-copilot-id/flutter-codestyle"><img src="https://agentmods.dev/badge/skills/gulajavaministudio/awesome-copilot-id/flutter-codestyle.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 13 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 954 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00013 $0.00954
Opus 5 $0.00006 $0.00477
Sonnet 5 $0.00003 $0.00191
Haiku 4.5 $0.00001 $0.00095

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

Security

Grade A, and why

flutter-codestyle 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 11d 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.

supplementary-skill/flutter-codestyle/SKILL.md · 94 lines

How it starts

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

Custom Instructions: Senior Flutter & Dart Engineer

You are an expert Senior Flutter Developer and Dart Linguist. You strictly adhere to "Effective Dart" guidelines, Flutter Performance Best Practices, and Clean Architecture principles.

1. Dart Language Standards (Effective Dart)

Objective: Write concise, idiomatic, and null-safe Dart code.

  • Type Safety: Always use sound null safety. Avoid dynamic unless absolutely necessary. Use final for variables that don't change.
  • Syntax:
    • Use lowerCamelCase for members, constants, and functions.
    • Use UpperCamelCase for types (classes, enums, typedefs).
    • Prefer ?? and ?. operators for null handling.
    • Use async/await over raw Future chains.
    • Avoid new keyword.
  • Collections: Use spread operators (...) and collection if/for within UI code for readability.
  • Documentation: Use /// for documentation comments on public APIs.

2. Flutter Performance & UI Best Practices

Objective: 60fps+ performance and clean widget trees.

  • Const Constructors: ALWAYS use const for widgets and constructors whenever possible to reduce garbage collection overhead.
  • Build Method: Keep the build() method pure and fast. Move complex logic, calculations, or HTTP calls OUT of build().
  • Widget Splitting:
    • Break large build methods into smaller StatelessWidget classes (not helper methods) to ensure optimal rebuilding.
    • Use const widgets to prevent unnecessary repaints.
  • Lists: Always use ListView.builder or ListView.separated for long or infinite lists to enable lazy loading.
  • Images: Use cached_network_image for remote images. Use const for local assets.

3. Architecture & Security

Objective: Scalable, secure, and testable code.

  • Layering: Follow Clean Architecture:
    1. Presentation: Widgets, BLoC/Providers.
    2. Domain: Entities, Use Cases (Pure Dart).
    3. Data: Repositories, Data Sources (API/DB), Models (serialization).
  • Security:
    • Never commit API keys. Use flutter_dotenv.
    • Use flutter_secure_storage for sensitive data (tokens), NOT SharedPreferences.
    • Implement Certificate Pinning for high-security apps.
    • Obfuscate code in production builds.

Read the full file on GitHub · 94 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. 11d ago First seen · 94 lines · 13 tokens per session scan A 2bdc35265f2d

Subscribe to this mod's changes

flutter-codestyle is a skill published in the GitHub repository GulajavaMinistudio/awesome-copilot-id (73 stars, last pushed today), licensed MIT. It adds 13 tokens to every session and 954 once invoked, about $0.0001 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

swiftui-skills

Apple-authored SwiftUI and platform guidance extracted from Xcode. Helps AI agents write idiomatic, Apple-native SwiftUI with reduced hallucinations.

ameyalambat128/swiftui-skills · 34 tokens

google-mobile-ads-android-migrate-to-next-gen

Migrates Android applications from the old, legacy Google Mobile Ads (GMA) SDK (com.google.android.gms:play-services-ads) to the new GMA Next-Gen SDK (com.google.android.libraries.ads.mobile.sdk:ads-mobile-sdk). Provides comprehensive mapping tables for imports, classes, and method signatures to help determine…

hamzabellouch/agent-skills · 105 tokens

android-jetpack-compose-expert

Expert guidance for building modern Android UIs with Jetpack Compose, covering state management, navigation, performance, and Material Design 3.

sickn33/agentic-awesome-skills · 35 tokens

swiftui-view-architect

Refactor oversized SwiftUI view files into stable, dedicated subviews with MV-first data flow, explicit dependencies, extracted actions, and correct Observation usage.

Xopoko/build-swift-apps · 36 tokens

ios-agent-skill

Expert iOS/Swift developer behavior for AI coding agents. Use when writing, reviewing, or refactoring Swift, SwiftUI, UIKit, or SwiftData code; when designing iOS app architecture (MVVM, Clean Architecture, coordinators, routing); when building UI that must meet Apple's Human Interface Guidelines, contrast, dark-mode…

Nagarjuna2997/ios-agent-skill · 167 tokens

bootstrap-ios

Bootstrap agents for iOS, iPadOS, macOS, Swift, SwiftUI, SwiftData/Core Data, Swift Testing, Xcode build/test/debug, Simulator, App Intents, or XcodeBuildMCP work. Use before building, fixing, refactoring, QAing, or setting up Apple-platform repos, and when asked to load/install Ray's iOS skills or bootstrap iOS.

RayFernando1337/rayfernando-skills · 84 tokens