Poorgramer-Zack

78 mods across 3 repositories, 17 stars between them.

Poorgramer-Zack/dart-expert-skills

Skill Claude CodeCodex

Declarative animation patterns using flutteranimate v4.5.x with composable effects (fade, scale, slide, shimmer, shake, blur), GLSL fragment shaders, and scroll-synchronized animations. Use this skill for adding UI animations and transitions, building staggered or sequenced effects, creating custom animation effects…

7 21d ago A 106 tokens original MIT

Poorgramer-Zack/dart-expert-skills

Skill Claude CodeCodex

Implements type-safe Flutter routing using AutoRoute v11 with code generation and @RoutePage annotations. Activates when setting up AutoRoute navigation, configuring AutoRouterConfig or RootStackRouter, generating route files with buildrunner, using @RoutePage, @PathParam, or @QueryParam annotations, implementing…

7 21d ago A 125 tokens original MIT

Poorgramer-Zack/dart-expert-skills

Skill Claude CodeCodex

Implements BLoC (v9.x) event-driven state management for Flutter with unidirectional data flow using the flutterbloc package. Use when implementing Bloc/Cubit classes, mapping Events to States, consuming state with BlocBuilder/BlocListener/BlocConsumer, applying event transformers (restartable/droppable/sequential)…

7 21d ago A 131 tokens original MIT

Poorgramer-Zack/dart-expert-skills

Skill Claude CodeCodex

Configures deep linking in Flutter using Android App Links (assetlinks.json) and iOS Universal Links (apple-app-site-association) integrated with GoRouter v17.x navigation. Use this skill when setting up HTTPS domain association, handling magic links or email verification links, routing marketing campaign URLs (Google…

7 21d ago A 150 tokens original MIT

Poorgramer-Zack/dart-expert-skills

Skill Claude CodeCodex

Implements type-safe reactive SQL persistence in Flutter using Drift v2.32 (formerly Moor) built on SQLite with automatic code generation. Activates when defining table schemas with Drift DSL, writing type-safe join or subquery operations, handling schema migrations with MigrationStrategy, using reactive watch()…

7 21d ago A 136 tokens original MIT

Poorgramer-Zack/dart-expert-skills

Skill Claude CodeCodex

Expert-level guidance for Flutter production applications: architecture decisions (Clean/Layered/Hexagonal/Feature-First), advanced state management (BLoC/Riverpod/GetX), performance optimization (eliminating jank, memory profiling, reducing rebuild overhead), code review with design pattern enforcement, scalability…

7 21d ago A 177 tokens original MIT

Poorgramer-Zack/dart-expert-skills

Skill Claude CodeCodex

Generative UI (GenUI) for Flutter using AI models like Google Gemini, Anthropic Claude, or OpenAI via the genui package. Use this skill when building dynamic AI-driven interfaces, conversational UI flows, server-rendered screen layouts, LLM-powered dashboards, chat-based UI generation, or implementing prompt-to-UI…

7 21d ago A 121 tokens original MIT

Poorgramer-Zack/dart-expert-skills

Skill Claude CodeCodex

Implements declarative Flutter routing using GoRouter v17 with URL-based navigation, deep linking, and authentication guards. Activates when configuring GoRoute path patterns, setting up StatefulShellRoute for persistent bottom navigation state, implementing ShellRoute for shared nested layouts, adding redirect guards…

7 21d ago A 154 tokens original MIT

Poorgramer-Zack/dart-expert-skills

Skill Claude CodeCodex

Hive CE (Community Edition v2.19.x) NoSQL object database for Flutter providing blazing-fast key-value and object storage with TypeAdapters. Use this skill when implementing offline-first architecture, high-performance local data caching, NoSQL document-style object stores, custom TypeAdapter serialization for complex…

7 21d ago A 146 tokens original MIT

using-flutter-hooks

34

Poorgramer-Zack/dart-expert-skills

Skill Claude CodeCodex

Manages local UI state and side effects in Flutter using the flutterhooks package (v0.21.x) with HookWidget, useState, useEffect, useMemoized, useAnimationController, and custom hooks. Use this skill when replacing StatefulWidget boilerplate with hooks, reusing stateful UI logic across widgets, managing controller…

7 21d ago A 140 tokens original MIT

Poorgramer-Zack/dart-expert-skills

Skill Claude CodeCodex

Background processing and heavy computations using Dart Isolates with Isolate.run(), compute() function, and platform channels. Use this skill when performing CPU-intensive operations without blocking UI (image processing, data parsing, encryption), implementing background tasks that prevent jank or frame drops…

7 21d ago A 164 tokens original MIT

Poorgramer-Zack/dart-expert-skills

Skill Claude CodeCodex

Provider (v6.x) state management for Flutter using ChangeNotifier and InheritedWidget with MVVM architecture pattern. Use this skill when implementing Provider-based state management, using Consumer/Consumer2 widgets for targeted rebuilds, accessing state with context.read/context.watch/context.select, setting up…

7 21d ago A 180 tokens original MIT

Poorgramer-Zack/dart-expert-skills

Skill Claude CodeCodex

Implements responsive and adaptive layouts in Flutter using flutterscreenutil v5.9.x (pixel-perfect scaling from Figma), sizer v3.1.x (percentage-based viewport), and responsiveframework v1.1.x (breakpoint-driven structure changes). Use this skill when building apps for multiple screen sizes (phones, tablets…

7 21d ago A 160 tokens original MIT

Poorgramer-Zack/dart-expert-skills

Skill Claude CodeCodex

Implements Riverpod (v3.3.x) compile-safe state management for Flutter apps. Use when implementing @riverpod code generation providers, handling AsyncValue loading/error/data states, using ref.watch/ref.read/ref.listen, setting up ProviderScope, writing Notifier/AsyncNotifier classes, using…

7 21d ago A 140 tokens original MIT

Poorgramer-Zack/dart-expert-skills

Skill Claude CodeCodex

FlutterSecureStorage (v10.x) for encrypted key-value storage of sensitive data using platform-native secure enclaves with biometric authentication support. Use this skill when storing OAuth tokens (access tokens, refresh tokens, ID tokens), API keys and secrets, user passwords or PINs, session tokens, encryption keys…

7 21d ago A 195 tokens original MIT

flutter-setup

40

Poorgramer-Zack/dart-expert-skills

Skill Claude CodeCodex

Complete Flutter SDK installation, IDE configuration, and troubleshooting guide for Linux, macOS, and Windows. Use for installing Flutter SDK from scratch, configuring PATH environment variables across platforms, setting up VS Code/Android Studio/IntelliJ IDEA with Flutter plugins, resolving 'flutter command not…

7 21d ago B 157 tokens original MIT

Poorgramer-Zack/dart-expert-skills

Skill Claude CodeCodex

SharedPreferences (v2.5.5) for Flutter providing simple persistent key-value storage for non-sensitive user settings and app preferences. Use this skill when storing user preferences (theme mode, language selection, font size), app settings and configuration, feature flags or A/B test assignments, simple cache data…

7 21d ago A 143 tokens original MIT

Poorgramer-Zack/dart-expert-skills

Skill Claude CodeCodex

Social authentication and OAuth/SSO for Flutter supporting Google Sign-In, Apple Sign-In, Facebook Login, and LINE Login. Use when implementing social login, OAuth flows, sign-in with Google/Apple/Facebook/LINE, SSO integration, third-party authentication, platform credential configuration (SHA-1 fingerprint for…

7 21d ago A 117 tokens original MIT

flutter-testing

43

Poorgramer-Zack/dart-expert-skills

Skill Claude CodeCodex

Covers Flutter testing across all three layers: unit tests (business logic, ViewModels, repositories), widget tests (UI rendering, interactions, golden regression), and integration/E2E tests (full app flows, native OS interactions). Use this skill when writing any Flutter test, setting up mocking with mocktail or…

7 21d ago A 137 tokens original MIT

using-fpdart

44

Poorgramer-Zack/dart-expert-skills

Skill Claude CodeCodex

Functional error handling in Dart using the fpdart package with Either, Option, TaskEither, and Do notation. Use when replacing try-catch with type-safe error handling or composing async operations functionally.

7 21d ago A 46 tokens original MIT

Poorgramer-Zack/dart-expert-skills

Skill Claude CodeCodex

Generates immutable Dart data classes, sealed union types, and deep copyWith using Freezed (v3.2.x) with optional jsonserializable integration. Use when creating DTOs, API response models, app state classes, or any model requiring immutability, pattern matching, or JSON serialization. Activates on: @freezed…

7 21d ago A 113 tokens original MIT

Poorgramer-Zack/dart-expert-skills

Skill Claude CodeCodex

Configures GitHub Actions CI/CD workflows for Flutter projects. Use when creating or editing .github/workflows/ YAML files for Flutter, integrating subosito/flutter-action, automating flutter test, flutter analyze, or dart format on push or pullrequest events, running buildrunner in CI, building Android AAB or iOS IPA…

7 21d ago A 107 tokens original MIT

Poorgramer-Zack/dart-expert-skills

Skill Claude CodeCodex

Builds SEO-friendly web applications with Dart using the Jaspr framework. Use when creating Dart-based websites, blogs, or landing pages requiring semantic HTML output; implementing server-side rendering (SSR) or static site generation (SSG); adding Tailwind CSS via jasprtailwind; routing with jasprrouter; testing…

7 21d ago A 93 tokens original MIT

Poorgramer-Zack/dart-expert-skills

Skill Claude CodeCodex

AI-driven Flutter E2E testing via VM Service CLI. Control running Flutter apps in debug mode for smoke tests, regression checks, exploratory testing, and UI automation. Trigger when user mentions E2E testing, UI automation, smoke tests, integration testing, test automation, controlling Flutter apps, VM Service…

7 21d ago A 158 tokens original MIT