flutter-production

flutter-production is a skill for Claude Code, Codex from thomascasali/claude-kb-workflow. It costs 94 tokens per session (4,853 once invoked), scanned A, original, MIT.

A guide for building production-ready Flutter mobile apps with Firebase or custom backends. Flutter is a framework for making mobile apps; Firebase provides services such as login, databases, and notifications.

In plain words
What is it for?
Use it when building Flutter apps with Google Sign-In, Firestore, push notifications, RTMP video streaming, Pusher or WebSocket updates, JWT login, or Play Store and TestFlight deployment.
Why use it?
It provides patterns for handling authentication, real-time data, streaming, background work, and app-store releases in one project.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it when building Flutter apps with Google Sign-In, Firestore, push notifications, RTMP video streaming, Pusher or WebSocket updates, JWT login, or Play Store and TestFlight deployment.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/thomascasali/claude-kb-workflow/flutter-production-skill
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 thomascasali/claude-kb-workflow --skill flutter-production-skill
Clone the repo
git clone --depth 1 https://github.com/thomascasali/claude-kb-workflow

Made for: Claude Code, Codex.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/thomascasali/claude-kb-workflow/flutter-production-skill/github.svg)](https://agentmods.dev/skills/thomascasali/claude-kb-workflow/flutter-production-skill)
Your own site
<a href="https://agentmods.dev/skills/thomascasali/claude-kb-workflow/flutter-production-skill"><img src="https://agentmods.dev/badge/skills/thomascasali/claude-kb-workflow/flutter-production-skill/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-production

Your own site · 80×15
<a href="https://agentmods.dev/skills/thomascasali/claude-kb-workflow/flutter-production-skill"><img src="https://agentmods.dev/badge/skills/thomascasali/claude-kb-workflow/flutter-production-skill.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 94 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,853 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.00094 $0.04853
Opus 5 $0.00047 $0.02426
Sonnet 5 $0.00019 $0.00971
Haiku 4.5 $0.00009 $0.00485

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

Security

Grade A, and why

flutter-production 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 9d 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-production-skill/SKILL.md · 723 lines

How it starts

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

Flutter Production Development

Production-grade Flutter architecture for mobile apps with real-time features, authentication, and cloud backends.

When to Use This Skill

This skill covers two main app profiles:

Profile Use Case Key Technologies
Firebase Apps Collaborative apps, social features, real-time sync Firebase Auth, Firestore, FCM, Riverpod
Streaming Apps Live video, custom backends, media RTMP, Pusher, JWT/Laravel, Provider

Trigger keywords: Firebase, Firestore, Riverpod, Google Sign-In, FCM, push notifications, RTMP streaming, Pusher, WebSocket, JWT, release build, Play Store, TestFlight

Project Structure

Firebase Apps (Riverpod + Feature-based)

lib/
├── main.dart
├── app.dart
├── core/
│   ├── config/
│   │   └── firebase_options.dart
│   ├── constants/
│   │   ├── app_colors.dart
│   │   └── app_strings.dart
│   ├── router/
│   │   └── app_router.dart       # GoRouter
│   └── utils/
│       ├── extensions.dart
│       └── validators.dart
├── features/
│   ├── auth/
│   │   ├── data/
│   │   │   ├── models/
│   │   │   │   └── user_model.dart
│   │   │   └── repositories/
│   │   │       └── auth_repository.dart
│   │   └── presentation/
│   │       ├── providers/
│   │       │   └── auth_provider.dart
│   │       ├── screens/
│   │       │   ├── login_screen.dart
│   │       │   └── splash_screen.dart
│   │       └── widgets/
│   │           └── google_sign_in_button.dart
│   ├── lists/
│   │   ├── data/
│   │   └── presentation/
│   └── tasks/
│       ├── data/
│       └── presentation/
├── shared/
│   ├── widgets/
│   │   ├── loading_indicator.dart
│   │   └── error_widget.dart
│   └── providers/
│       └── firebase_providers.dart
└── firebase_options.dart

Streaming/API Apps (Provider + Service-based)

lib/
├── config/
│   ├── api_config.dart           # Base URLs, endpoints
│   └── app_config.dart           # Constants, feature flags
├── models/
│   └── user.dart                 # Data classes with fromJson
├── services/
│   ├── auth_service.dart         # JWT auth, token refresh
│   ├── api_service.dart          # Dio with interceptors
│   ├── streaming_service.dart    # RTMP controller
│   └── realtime_service.dart     # Pusher/WebSocket
├── providers/
│   └── auth_provider.dart        # ChangeNotifier state
├── screens/
│   ├── auth/
│   ├── home/
│   └── streaming/
├── widgets/
└── utils/

Read the full file on GitHub · 723 lines

Files

What ships with it

4 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. 9d ago First seen · 723 lines · 94 tokens per session scan A 8b394b14c784

Subscribe to this mod's changes

flutter-production is a skill published in the GitHub repository thomascasali/claude-kb-workflow (2 stars, last pushed 14d ago), licensed MIT. It adds 94 tokens to every session and 4,853 once invoked, about $0.0005 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

social-login

An implementation guide for letting users sign in with accounts from Google, Apple, Kakao, or Naver. It explains the frontend and backend steps, including checking the sign-in token before creating a session for your app.

Dannykkh/skill-olympus · 80 tokens

fec-pwa-implementation

A guide for adding Progressive Web App features to a website. A Progressive Web App, or PWA, is a website that can be installed like an app and can offer limited offline use through a web app manifest and a service worker.

bovinphang/frontend-craft · 87 tokens

factory-api

API conventions for both server actions and tRPC builds. Covers the decision between them, per-mutation Zod input schemas, central router composition, pagination shape, multi-field search via Drizzle ilike + or(), mutation lifecycle hooks, conditional query enabling, stale-time defaults, error response shape and…

nonlinear-xyz/factory-kit · 95 tokens

factory-auth

Auth and authorization conventions distilled across builds with three different auth stacks (Better Auth + orgs, Supabase Auth + RLS, Clerk). Covers the provider decision matrix, the unified wrapper interface (requireAuth / requireRole / withOrgContext), procedure tier stacking, session handling, OAuth callback…

nonlinear-xyz/factory-kit · 97 tokens

factory-llm-workflows

LLM workflow conventions distilled from production agent/RAG work. Covers LangGraph TypedDict state schemas, node factory closures, conditional edge routing, structured output via JSON schema, prompt fallback patterns with optional PromptHub override, hybrid search with confidence gating + fallback supplement, SSE…

nonlinear-xyz/factory-kit · 93 tokens

factory-api-route-engineer

Use when designing or implementing API endpoints — server actions, tRPC procedures, REST routes for external consumers. Carries the factory's API conventions — the server actions vs tRPC decision, procedure tier stacking, per-mutation Zod schemas, central router composition with manual registration, pagination…

nonlinear-xyz/factory-kit · 130 tokens