flutter-guide

flutter-guide is a skill for Claude Code from aleksandr-chaika/flutter-clean-arch-skills. It costs 39 tokens per session (1,574 once invoked), scanned A, original, MIT.

A reference guide for building Flutter apps with Clean Architecture, BLoC state management, and automated tests.

In plain words
What is it for?
Use it for Flutter code reviews, architecture decisions, BLoC events and states, UI guidelines, mocking, and use-case, widget, and BLoC tests.
Why use it?
It provides project structure and review patterns for keeping app code separated, typed, and testable.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter.

Good fit Use it for Flutter code reviews, architecture decisions, BLoC events and states, UI guidelines, mocking, and use-case, widget, and BLoC tests.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/aleksandr-chaika/flutter-clean-arch-skills/flutter-guide
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 aleksandr-chaika/flutter-clean-arch-skills --skill flutter-guide
Clone the repo
git clone --depth 1 https://github.com/aleksandr-chaika/flutter-clean-arch-skills

Made for: Claude Code.

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-guide

README.md
[![agentmods](https://agentmods.dev/badge/skills/aleksandr-chaika/flutter-clean-arch-skills/flutter-guide/github.svg)](https://agentmods.dev/skills/aleksandr-chaika/flutter-clean-arch-skills/flutter-guide)
Your own site
<a href="https://agentmods.dev/skills/aleksandr-chaika/flutter-clean-arch-skills/flutter-guide"><img src="https://agentmods.dev/badge/skills/aleksandr-chaika/flutter-clean-arch-skills/flutter-guide/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-guide

Your own site · 80×15
<a href="https://agentmods.dev/skills/aleksandr-chaika/flutter-clean-arch-skills/flutter-guide"><img src="https://agentmods.dev/badge/skills/aleksandr-chaika/flutter-clean-arch-skills/flutter-guide.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 39 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,574 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.
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.00039 $0.01574
Opus 5 $0.00019 $0.00787
Sonnet 5 $0.00008 $0.00315
Haiku 4.5 $0.00004 $0.00157

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

Security

Grade A, and why

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

skills/flutter-guide/SKILL.md · 211 lines

How it starts

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

Flutter Guide — Clean Architecture + BLoC

Reference Guide

Topic Reference Use When
Clean Architecture references/clean-architecture.md Layer rules, dependency direction
BLoC Patterns references/bloc-patterns.md @freezed events/states, handlers, transformers
UI Guidelines references/ui-guidelines.md AppColors, AppTextStyles, SVGImage
Review Checklist references/review-checklist.md Code review, quality checks
Mocking Guide references/mocking-guide.md Mocktail, MockBloc, ProviderContainer
Test Patterns references/test-patterns.md UseCase tests, BLoC tests, widget tests

Project Structure

lib/
├── core/          # AppError, extensions, DI (GetIt)
├── data/
│   ├── mapper/    # Entity <-> Model mappers
│   ├── network/   # API client, models (@JsonSerializable), interceptors
│   ├── repository/ # Repository implementations
│   └── services/
├── domain/
│   ├── entity/    # Domain entities (@freezed)
│   ├── repository/ # Abstract interfaces
│   ├── services/
│   └── usecases/
├── presentation/
│   ├── {feature}/
│   │   ├── bloc.dart       # FeatureBloc
│   │   ├── events.dart     # @freezed events
│   │   ├── states.dart     # @freezed states
│   │   └── view/           # Pages + widgets
│   └── common/
└── resources/     # Colors, text styles, localization

Dependency Rule

Presentation -> Domain <- Data — Domain depends on NOTHING.

Critical Rules

1. MANDATORY: @freezed for Events and States

@freezed
class FeatureEvent with _$FeatureEvent {
  const factory FeatureEvent.started() = _Started;
  const factory FeatureEvent.loadData({required int id}) = _LoadData;
}

@freezed
class FeatureState with _$FeatureState {
  const factory FeatureState.initial() = _Initial;
  const factory FeatureState.loading() = _Loading;
  const factory FeatureState.loaded(Data data) = _Loaded;
  const factory FeatureState.error(AppError error) = _Error;
}

Read the full file on GitHub · 211 lines

Files

What ships with it

6 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. 10d ago First seen · 211 lines · 39 tokens per session scan A b0eb822596a5

Subscribe to this mod's changes

flutter-guide is a skill published in the GitHub repository aleksandr-chaika/flutter-clean-arch-skills (5 stars, last pushed 6mo ago), licensed MIT. It adds 39 tokens to every session and 1,574 once invoked, about $0.0002 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

android-kotlin-compose

Android development with Kotlin and Jetpack Compose. Use when user mentions "Compose", "Jetpack Compose", "Material3", "Hilt", "Room", "ViewModel", or needs to build Android UI, implement MVVM architecture, manage Compose state, or integrate Jetpack libraries (Navigation, Room, Hilt, ViewModel). Triggers on…

and3r817/dot-claude-plugins · 84 tokens

android-kotlin-coroutines

Android development with Kotlin Coroutines and Flow. Use when user mentions "coroutines", "suspend", "Flow", "StateFlow", "SharedFlow", "viewModelScope", "lifecycleScope", or needs to implement async programming, handle structured concurrency, integrate coroutines with Retrofit/Room/WorkManager, or write coroutine…

and3r817/dot-claude-plugins · 87 tokens

testing-go

Writes tests following TDD (using go test, testify, and rapid) best practices. Use when writing unit tests, integration tests, or table-driven tests in Go.

qte77/claude-code-plugins · 37 tokens

testing-python

Writes tests following TDD Red-Green-Refactor (pytest + Hypothesis). Tests behavior, not implementation. Use when writing unit tests, integration tests, or property tests.

qte77/claude-code-plugins · 39 tokens

testing-rust

Writes tests following TDD (using cargo test, proptest, and insta) best practices. Use when writing unit tests, integration tests, or property-based tests in Rust.

qte77/claude-code-plugins · 39 tokens

testing-tdd

Writes tests following TDD Red-Green-Refactor cycle. Language-agnostic methodology with Arrange-Act-Assert structure. Use when implementing features test-first.

qte77/claude-code-plugins · 37 tokens