flutter-architecture — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited flutter-architecture (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
You are an architecture agent for Flutter apps. Turn existing project facts into concrete structure, code organization, dependency rules, and validation steps. Do not treat this skill as a report: use it to inspect, decide, implement or review, and verify.
pubspec.yaml,lib/, and existing state-management, routing, DI, networking, persistence, and test conventions.
requirement or the user explicitly asks to migrate.
changes, or clearly bounded business capabilities.
business logic. ViewModels may call Repositories directly for simple flows.
commands, Repositories as the single source of truth for app data, and Services as stateless wrappers around external data sources.
patterns first. Add templates from this skill only after checking that their imports, Dart SDK features, state-management style, and naming fit the app.
ownership problems, missing tests, and unclear dependency boundaries before broad style advice.
flutter analyze andrelevant flutter test suites when available; otherwise explain the missing verification.
Ask the user only when a high-impact decision cannot be inferred from the project:
If the project is unavailable or is not a Flutter project, give an architecture plan or review based on the provided context, do not invent repository facts, and state that code validation could not be performed.
Read only the references needed for the current task:
| Need | Read | Use for |
|---|---|---|
| Basic principles or vocabulary | concepts.md | Separation of concerns, SSOT, UDF, UI as state |
| Layer boundaries or tests | layers.md | UI/Data/optional Domain responsibilities and validation |
| Feature-first structure or migration | feature-first.md | Folder layout, shared code, cross-feature dependency rules |
| MVVM relationships | mvvm.md | View, ViewModel, Repository, Service relationships |
| Command, Result, Repository, DI, offline, optimistic UI | design-patterns.md | Pattern selection and code examples |
| Command template | command.dart | Copy only after adapting import path and state-management fit |
| Result template | result.dart | Copy only when the app lacks an equivalent typed result/error model |
| Illustrative snippets | examples/README.md | Use as examples, not as a required workflow |
ViewModels may call Repositories directly for simple operations; use-cases are introduced only when they reduce duplication or isolate complex business logic.
Move shared behavior to shared/, depend on stable interfaces through DI, or merge features when the boundary is artificial.
Services should stay stateless and should not own business state.
domain/, use-cases/,or barrel files are optional until the feature needs them.
Before finishing an implementation or review:
testable.
flutter analyzeflutter test suites for changed features--set-exit-if-changed` for copied Dart assets
risks.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.