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 skills add zakariaf/Flutter-Skills --skill naming-conventionsgit clone --depth 1 https://github.com/zakariaf/Flutter-SkillsWrote 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.
[](https://agentmods.dev/skills/zakariaf/flutter-skills/naming-conventions)<a href="https://agentmods.dev/skills/zakariaf/flutter-skills/naming-conventions"><img src="https://agentmods.dev/badge/skills/zakariaf/flutter-skills/naming-conventions/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.
<a href="https://agentmods.dev/skills/zakariaf/flutter-skills/naming-conventions"><img src="https://agentmods.dev/badge/skills/zakariaf/flutter-skills/naming-conventions.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.1 | $0.00150 | $0.03385 |
| Opus 5 | $0.00075 | $0.01692 |
| Sonnet 5 | $0.00030 | $0.00677 |
| Haiku 4.5 | $0.00015 | $0.00338 |
Grade A, and why
naming-conventions 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 10d 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 — 135 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Naming Conventions
Consistent, role-carrying names make code searchable and self-explaining, and the suffix on a type declares which layer it lives in — so a reviewer, a grep, and a banned-import gate can all read the layer off the name alone. This skill is the how; the normative what is Effective Dart. Never invent a house style that contradicts the language's own.
Non-negotiable rules
- Types are
UpperCamelCase. Classes, enums, mixins, extensions, typedefs, type parameters:TaskScreen,OrderStatus,Predicate<T>. Consistent shape makes types visually distinct from values. - Members, variables, functions, and parameters are
lowerCamelCase.dueDate,loadTasks(),itemCount. It is the language default; deviating costs readers a double-take. - Constants are
lowerCamelCase, neverSCREAMING_CAPS.const maxItemsPerPage = 50;— notconst MAX_ITEMS = 50. Dart dropped the C convention; the analyzer expectsconstant_identifier_names. - Files, folders, libraries, and import prefixes are
lowercase_with_underscores.task_detail_screen.dart,features/task_detail/,import 'package:app_core/app_core.dart';. Cross-platform filesystems and pub demand it. - File name = its primary declaration, snake_cased, one primary public type per file.
TaskNotifierlives intask_notifier.dart. Noutils.dart/helpers.dart/models.dartgrab-bags and noutils//common//helpers//misc/junk-drawer folders — a reader who greps a symbol must land in the file that owns it.core/is the sanctioned pure-foundation layer (value objects,Result/Failure, theClockseam, pure calculators), not a junk-drawer — seeproject-structure-and-packages, which owns the layout. - Acronyms longer than two letters are cased like a word.
Json,Http,Url,Api→JsonOrder,HttpClient,fromJson,imageUrl— notJSONOrder,HTTPClient. Two-letter caps-in-English acronyms may stay caps as types (ID,UI). Mixed-case acronyms are unsearchable and inconsistent. - A leading underscore means library-private — use it only when you mean private. Never prefix a public symbol with
_to "namespace" it; that makes it unusable from another file. Public (no_) is a documented contract — seedartdoc-conventions. - No Hungarian / type-encoding in names. Not
strName,iCount,lstItems,userMap,nameString,itemsList. The type system already knows the type; writename,usersById,items. - Full dictionary words; units and semantics live in the name.
maxItemsPerPage,retryDelaySeconds,orderTotalMinorUnits— never baremax,delay,total. Abbreviations (opt,qty,amt) are confined to the inside of one short pure function with a comment mapping them. A name that omits its unit invites a unit bug. - Booleans read as assertions.
isLoading,hasError,canSubmit,shouldRetry— notloading,error,retry. Boolean getters and methods startis/has/can/shouldso a condition reads like prose. - No
get-prefixed accessors. ExposedueTasks, notgetDueTasks(). Dart has real getters. Functions are verb phrases (loadTasks(),scheduleReminder()); non-boolean getters are noun phrases (itemCount,nextDueDate). - Imports grouped and sorted:
dart:first, thenpackage:, then relative — each group alphabetized,exports in their own section after imports. Letdart formatplus thedirectives_orderinglint enforce it; never hand-fight the formatter.
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.
- 10d ago First seen · 135 lines · 150 tokens per session scan A f765192251c8
naming-conventions is a skill published in the GitHub repository zakariaf/Flutter-Skills (2 stars, last pushed 12d ago), licensed MIT. It adds 150 tokens to every session and 3,385 once invoked, about $0.0007 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
rust-check
Run cargo check on the current Rust project to find compile errors.
google-agents-cli-adk-code
This skill should be used when the user wants to "write agent code", "build an agent with ADK", "add a tool", "create a callback", "define an agent", "use state management", or needs ADK (Agent Development Kit) Python API patterns and code examples. Part of the Google ADK skills suite. It provides a quick reference…
use-modern-go
Use the Modern Go Guidelines CLI whenever writing, modifying, fixing, or refactoring Go code. Apply its version-specific guidance to generated changes.
coding
A coding guide for writing and running Python programs in a sandbox. It requires scripts to be small and reproducible, with their actual output or errors reported.
typescript-language
Apply modern TypeScript standards for type safety and maintainability. Use when working with types, interfaces, generics, enums, unions, or tsconfig settings.
dart-language
Dart 3.x language feature standards: null safety, records, sealed classes, switch pattern matching, extensions, and async/await. Use when using !, ?., ??, late, sealed classes, record types, switch expressions, or async patterns — and before introducing any new Dart 3.x construct to confirm the modern idiomatic…