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.
git clone --depth 1 https://github.com/kumaran-is/claude-code-onboardingWrote 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/commands/kumaran-is/claude-code-onboarding/scaffold-flutter-package)<a href="https://agentmods.dev/commands/kumaran-is/claude-code-onboarding/scaffold-flutter-package"><img src="https://agentmods.dev/badge/commands/kumaran-is/claude-code-onboarding/scaffold-flutter-package.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.1 | $0.00021 | $0.00701 |
| Opus 5 | $0.00010 | $0.00351 |
| Sonnet 5 | $0.00004 | $0.00140 |
| Haiku 4.5 | $0.00002 | $0.00070 |
Grade A, and why
scaffold-flutter-package 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 5d 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 — 95 lines — stays where its author put it; the contents beside it link to each section on GitHub.
/scaffold-flutter-package
Scaffold a new component or domain model into shared Flutter packages within a Melos monorepo.
Usage
/scaffold-flutter-package shared_ui <ComponentName>
/scaffold-flutter-package shared_core <ModelName>
shared_ui — New UI Component
Target: packages/shared_ui/lib/components/<component_name>/
Structure:
packages/shared_ui/lib/components/<component_name>/
<component_name>.dart # Main widget (StatelessWidget — no Riverpod imports)
index.dart # Barrel export
After creating, add to the package's main export file (e.g., packages/shared_ui/lib/shared_ui.dart):
export 'components/<component_name>/index.dart';
Rules for shared_ui components
- Components in shared_ui are dumb — they receive all data via constructor
input()or constructor args and emit events viaVoidCallback/Function(T). Zeroinject()orref.watch()calls. - Add
// Tier: Atom | Molecule | Organismas the first comment in the component file before all imports. - Never put app-specific logic or service calls inside a shared_ui component.
- Never duplicate a component that already exists in shared_ui in an individual app.
shared_core — New Domain Model
Target: packages/shared_core/lib/models/<model_name>/
Structure:
packages/shared_core/lib/models/<model_name>/
<model_name>.dart # Freezed model with json_serializable
<model_name>.freezed.dart # Generated — run melos run build_runner
<model_name>.g.dart # Generated JSON serialization
index.dart # Barrel export
Template for <model_name>.dart:
import 'package:freezed_annotation/freezed_annotation.dart';
part '<model_name>.freezed.dart';
part '<model_name>.g.dart';
@freezed
class <ModelName> with _$<ModelName> {
const factory <ModelName>({
required String id,
// add fields here
}) = _<ModelName>;
factory <ModelName>.fromJson(Map<String, dynamic> json) =>
_$<ModelName>FromJson(json);
}
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.
- 5d ago First seen · 95 lines · 21 tokens per session scan A 65ea5514fc26
scaffold-flutter-package is a command published in the GitHub repository kumaran-is/claude-code-onboarding (35 stars, last pushed 2mo ago), licensed MIT. It adds 21 tokens to every session and 701 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-09-03.
Other commands, from other repositories
app-store-audit
Run an enterprise pre submission compliance audit on an iOS or Android app against Apple App Store and Google Play rejection rules. Pass a project path or run from the project root.
initialize-ios
Manual override: initialize ast-index for iOS/Swift/ObjC project.
maestro-selectors-instructions
Guide to using Maestro selectors for targeting UI elements in tests.
mobile-performance-check
Analyze mobile app for performance issues using the mobile-best-practices database.
flutter-review
Review Flutter/Dart code for idiomatic patterns, widget best practices, state management, performance, accessibility, and security. Invokes the flutter-reviewer agent.
flutter-test
Run Flutter/Dart tests, report failures, and incrementally fix test issues. Covers unit, widget, golden, and integration tests.