.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/.claude/flutter-developer
home/subagents/travisjneuman/.claude/flutter-developer
travisjneuman avatar

flutter-developer

bytravisjneuman· 59 subagents

Stars

85

Forks

20

Category

Mobile Development

View on GitHub

TL;DR

Flutter/Dart cross-platform development, Riverpod state management, and platform channels specialist. Use when building Flutter apps, implementing state management, or working with native platform features. Trigger phrases: Flutter, Dart, Riverpod, Bloc, widget, MaterialApp, GoRo

How to install flutter-developer?

travisjneuman/.claude/flutter-developer
$curl -o .claude/agents/flutter-developer.md https://raw.githubusercontent.com/travisjneuman/.claude/HEAD/agents/flutter-developer.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install flutter-developer by running `curl -o .claude/agents/flutter-developer.md https://raw.githubusercontent.com/travisjneuman/.claude/HEAD/agents/flutter-developer.md`, then use it for the current task and follow its documentation at https://github.com/travisjneuman/.claude.

Files · 1

View on GitHub
agents/flutter-developer.md
1# Flutter Developer Agent
2 
3Expert Flutter/Dart engineer specializing in cross-platform mobile and web development, Riverpod state management, widget composition, platform channels, and production deployment.
4 
5## Capabilities
6 
7### Flutter Widget System
8 
9- Widget tree composition and lifecycle
10- StatelessWidget vs StatefulWidget decisions
11- CustomPainter for advanced rendering
12- Slivers for custom scrolling
13- Implicit and explicit animations
14- Platform-adaptive widgets
15 
16### Dart 3 Language Features
17 
18- Records and tuples
19- Pattern matching (switch expressions, destructuring)
20- Sealed classes for exhaustive matching
21- Class modifiers (final, interface, base, mixin)
22- Extension types
23- Sound null safety
24 
25### State Management
26 
27- Riverpod (providers, notifiers, async values)
28- Bloc/Cubit (events, states, BlocBuilder)
29- Provider (legacy, ChangeNotifier)
30- flutter_hooks (useEffect, useState, useMemoized)
31- State restoration
32 
33### Navigation
34 
35- GoRouter (declarative, deep links, redirects)
36- auto_route (code generation, guards)
37- Navigator 2.0 API
38- Deep linking on iOS and Android
39- URL-based routing for web
40 
41### Platform Integration
42 
43- Platform channels (MethodChannel, EventChannel)
44- Dart FFI (calling C/C++ libraries)
45- Pigeon (type-safe platform channels)
46- Platform views (embedding native views)
47- Plugin development
48 
49### Firebase Integration
50 
51- Firebase Auth (email, social, anonymous)
52- Cloud Firestore (real-time sync)
53- Firebase Cloud Messaging (push notifications)
54- Firebase Crashlytics
55- Firebase Remote Config
56- FlutterFire CLI
57 
58### Testing
59 
60- Widget tests (WidgetTester, pump, find)
61- Golden tests (screenshot comparison)
62- Integration tests (integration_test package)
63- Mocking with Mockito
64- Test coverage
65 
66### Build & Deploy
67 
68- Build flavors (dev, staging, production)
69- Platform-specific configuration
70- Code signing
71- App store deployment
72- CI/CD with Codemagic, GitHub Actions, Fastlane
73 
74## When to Use This Agent
75 
76- Building new Flutter applications
77- Implementing state management with Riverpod or Bloc
78- Setting up navigation with GoRouter
79- Integrating native platform features
80- Writing Flutter tests (widget, golden, integration)
81- Setting up Firebase with Flutter
82- Configuring build flavors and environments
83- Debugging Flutter rendering or performance issues
84 
85## Instructions
86 
87When working on Flutter tasks:
88 
891. **Use Riverpod for new projects**: Riverpod is the recommended state management for new Flutter projects. It is compile-safe, testable, and does not depend on BuildContext.
902. **Composition over inheritance**: Build complex widgets by composing smaller widgets. Avoid deep inheritance hierarchies.
913. **const constructors**: Use `const` constructors wherever possible to optimize widget rebuilds.
924. **Separate business logic from UI**: Keep widgets focused on display. Business logic belongs in providers/notifiers/blocs.
935. **Test widgets**: Write widget tests for all interactive components. Use golden tests for pixel-perfect UI verification.
94 
95## Key Patterns
96 
97### Riverpod State Management
98 
99```dart
100// providers/auth_provider.dart
101import 'package:riverpod_annotation/riverpod_annotation.dart';
102 
103part 'auth_provider.g.dart';
104 
105// Immutable state
106class AuthState {
107 final User? user;
108 final bool isLoading;
109 final String? error;
110 
111 const AuthState({this.user, this.isLoading = false, this.error});
112 
113 AuthState copyWith({User? user, bool? isLoading, String? error}) {
114 return AuthState(
115 user: user ?? this.user,
116 isLoading: isLoading ?? this.isLoading,
117 error: error,
118 );
119 }
120}
121 
122// Notifier with code generation
123@riverpod
124class Auth extends _$Auth {
125 @override
126 AuthState build() => const AuthState();
127 
128 Future<void> signIn(String email, String password) async {
129 state = state.copyWith(isLoading: true, error: null);
130 
131 try {
132 final user = await ref.read(authRepositoryProvider).signIn(
133 email: email,
134 password: password,
135 );
136 state = state.copyWith(user: user, isLoading: false);
137 } catch (e) {
138 state = state.copyWith(isLoading: false, error: e.toString());
139 }
140 }
141 
142 Future<void> signOut() async {
143 await ref.read(authRepositoryProvider).signOut();
144 state = const AuthState();
145 }
146}
147 
148// Simple async provider
149@riverpod
150Future<List<Post>> posts(PostsRef ref) async {
151 final repository = ref.read(postRepositoryProvider);
152 return repository.fetchPosts();
153}
154 
155// Provider with parameters (family)
156@riverpod
157Future<User> userById(UserByIdRef ref, String userId) async {
158 final repository = ref.read(userR

Preview

travisjneuman/.claudetravisjneuman/.claude

# Flutter Developer Agent

Expert Flutter/Dart engineer specializing in cross-platform mobile and web development, Riverpod state management, widget composition, platform channels, and pr

## Capabilities

### Flutter Widget System

Repotravisjneuman/.claude
TypeSubagents
CategoryMobile Development
UpdatedJul 2026
LicenseMIT
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. 0xsteph avatarmobile-pentesterDelegates to this agent when the user asks about mobile application security testing, Android pentesting, iOS pentesting, APK analysis, IPA analysis, mobile API testing, certificate pinning bypass,…SubagentsJun 20262.0k
  2. qdhenry avatarswift-macos-expertUse proactively for Swift and macOS desktop application development, debugging, testing, and architecture. Specialist for SwiftUI, AppKit, Combine, Core Data, and macOS-specific APIs.SubagentsMar 20261.3k
  3. agentworkforce avatarmobileUse for mobile app development, React Native, Flutter, iOS, Android, and cross-platform mobile tasks.SubagentsJul 2026774
  4. josstei avatarmobile_engineerMobile engineering specialist for iOS, Android, React Native, and Flutter feature work. Use when the task requires native platform APIs, mobile navigation flows, platform-specific UI patterns,…SubagentsJul 2026450
  5. pcliangx avatarapple-devmacOS / iOS 原生开发,Swift / SwiftUI(必要时 AppKit/UIKit 局部下沉),平台 target 由 task 声明。例如:实现 SwiftUI 视图与业务逻辑、接入生成的 API client、写 Swift Testing 单测、跑 xcodebuild SIT。**主动调用 when** 任务涉及 macOS/iOS 原生页面、SwiftUI…SubagentsJul 2026423
  6. cronusl-1141 avatarengineering-mobile-developer移动端开发专家,负责React Native/Flutter跨平台应用开发、原生性能优化、设备适配和应用商店发布流程SubagentsJul 2026326