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 instructions/nicolinx/flutter_enterprise_starter_kit/claude-mdgit clone --depth 1 https://github.com/nicolinx/flutter_enterprise_starter_kitWrote 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/instructions/nicolinx/flutter_enterprise_starter_kit/claude-md)<a href="https://agentmods.dev/instructions/nicolinx/flutter_enterprise_starter_kit/claude-md"><img src="https://agentmods.dev/badge/instructions/nicolinx/flutter_enterprise_starter_kit/claude-md.svg" alt="Measured on agentmods" 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 | $0.00568 | $0.00568 |
| Opus 5 | $0.00284 | $0.00284 |
| Sonnet 5 | $0.00114 | $0.00114 |
| Haiku 4.5 | $0.00057 | $0.00057 |
Grade A, and why
flutter_enterprise_starter_kit CLAUDE.md 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 4d 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 — 46 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md
Guidance for Claude Code when working in this repository.
Start here
Before writing or modifying any Dart code, read:
- docs/RULES.md — strict coding standards (null safety,
const, naming, widget extraction, package usage). Treat these as binding, not stylistic suggestions. - docs/ARCHITECTURE.md — the single architecture reference: feature-first Clean Architecture, layer boundaries, state management, routing, DI, error handling, and why each decision was made, plus platform-specific gotchas (Firebase duplicate-app conflict, macOS entitlements) and CI/CD reasoning. Read this to know both where new code belongs and why the codebase is shaped this way before writing anything.
auth and features/posts are the canonical, fully-built features — mirror their shape for
anything new. home is intentionally a minimal placeholder.
Commands
flutter pub get
dart run build_runner build --delete-conflicting-outputs # regenerate *.freezed.dart / *.g.dart after editing any @freezed/@JsonSerializable class
flutter run -t lib/main_development.dart # or lib/main_production.dart
flutter test # full suite
flutter test test/path/to/some_test.dart # single file
flutter analyze # lint (very_good_analysis, see analysis_options.yaml)
dart format . # format
Run build_runner after touching any file with @freezed, @JsonSerializable, or their
part directives — generated *.freezed.dart/*.g.dart files are checked in and must stay in
sync; never hand-edit them.
Non-negotiables
- Follow
docs/RULES.mdexactly: novar/dynamic,final-first,consteverywhere possible, no!bang operator, no baretry/catchin cubits or use cases (only repositories catch exceptions and convert toEither<Failure, T>). - Respect the dependency direction:
presentation->domain<-data.domainnever imports Flutter/Firebase/Dio. A cubit depends on use cases only, never on a repository or data source. - Don't add a
stagingflavor, switch offEither/fpdart, introduceBlocevents, or swap ininjectable-style DI codegen — these were deliberately rejected; seedocs/ARCHITECTURE.mdbefore reopening any of them.
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.
- 4d ago First seen · 46 lines · 568 tokens per session scan A 3b5874b524a6
flutter_enterprise_starter_kit CLAUDE.md is an instructions file published in the GitHub repository nicolinx/flutter_enterprise_starter_kit (53 stars, last pushed 12d ago), licensed MIT. It adds 568 tokens to every session, about $0.0028 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.
Other instructions, from other repositories
flutter-template CLAUDE.md
Instructions for launch52-ai/flutter-template, covering flutter template - claude instructions, creating a new app, available skills, workflow and new app creation.
arc-skill AGENTS.md
AGENTS.md instructions for art9mid/arc-skill, covering react native arc — agent instructions, agent commands, architecture reference, mobile design system and code templates.
arc-skill CLAUDE.md
Claude Code instructions for art9mid/arc-skill, covering react native arc and commands.
ant-design-pro CLAUDE.md
Claude Code instructions for ant-design/ant-design-pro, covering claude.md, project, commands, critical rules and architecture essentials.
react-starter-kit AGENTS.md
AGENTS.md instructions for kriasoft/react-starter-kit, covering monorepo structure, tech stack, commands, database: bun db:{push,generate,migrate,studio,seed,export} and verification.
react-starter-kit CLAUDE.md
Claude Code instructions for kriasoft/react-starter-kit, a project described as: Modern React starter kit with Bun, TypeScript, Tailwind CSS, tRPC, Stripe, and Cloudflare Workers. Production-ready monorepo for building fast web apps.