gocodeable/codeable-flutter-cli-claude-plugin
Plugin Claude Code
Plugin marketplace listing 1 plugin: codeable-flutter-cli.
gocodeable/codeable-flutter-cli-claude-plugin
Plugin Claude Code
Plugin marketplace listing 1 plugin: codeable-flutter-cli.
gocodeable/codeable-flutter-cli-claude-plugin
Agent
Audits Flutter screens for accessibility issues — missing Semantics, small touch targets, poor contrast, missing labels, and screen reader compatibility.
gocodeable/codeable-flutter-cli-claude-plugin
Agent
Updates models, repositories, and state when an API response structure changes — compares old vs new JSON, generates migration diff, updates all affected layers.
gocodeable/codeable-flutter-cli-claude-plugin
Agent
Flutter/Dart code reviewer specialized for codeablecli Clean Architecture projects. Reviews for convention compliance, state management correctness, and architectural integrity.
gocodeable/codeable-flutter-cli-claude-plugin
Agent
Finds unused code in codeablecli Flutter projects — unused imports, models, widgets, endpoints, colors, localization keys, repository methods, and cubit state fields.
gocodeable/codeable-flutter-cli-claude-plugin
Agent
Safely updates Flutter dependencies — checks for breaking changes, runs tests after updates, and provides rollback guidance. Handles major version bumps with migration notes.
gocodeable/codeable-flutter-cli-claude-plugin
Agent
Plans the implementation of a new feature in a codeablecli project — identifies required screens, state fields, API endpoints, models, and routes before any code is written.
gocodeable/codeable-flutter-cli-claude-plugin
Agent
Security review for codeablecli Flutter apps — checks for hardcoded secrets, insecure storage, injection vulnerabilities, insecure network config, and OWASP Mobile Top 10.
gocodeable/codeable-flutter-cli-claude-plugin
Agent
Generates comprehensive unit and widget tests for codeablecli features — cubit tests with bloctest, repository mocks with mocktail, model serialization tests, and widget interaction tests.
gocodeable/codeable-flutter-cli-claude-plugin
Command
Add a new API endpoint to an existing feature — creates response model, data model, wires up repository (abstract + impl), adds state field, cubit method, and endpoint constant. Provide endpoint path, request body, and response body.
gocodeable/codeable-flutter-cli-claude-plugin
Command
Generate a complete authentication flow — login, register, forgot password, OTP verification screens with cubit, state, repository, and route guards.
gocodeable/codeable-flutter-cli-claude-plugin
Command
Set up a bottom navigation bar with StatefulShellRoute for a role — creates the nav widget, shell route branches, and wires up the tab screens with tab persistence.
gocodeable/codeable-flutter-cli-claude-plugin
Command
Create and wire a bottom sheet for a feature — action sheets, confirmation sheets, form sheets, or custom content sheets using the project's CustomBottomSheet core widget.
gocodeable/codeable-flutter-cli-claude-plugin
Command
Add local caching layer to a feature using Hive — caches API responses locally for offline support and faster load times with cache-then-network strategy.
gocodeable/codeable-flutter-cli-claude-plugin
Command
Create a new reusable core widget in utils/widgets/corewidgets/ — follows the project's widget conventions, adds to barrel export, and includes all customization props.
gocodeable/codeable-flutter-cli-claude-plugin
Command
Add a new state field and cubit method to an existing feature's cubit — handles DataState typing, copyWith, props, and the async method pattern.
gocodeable/codeable-flutter-cli-claude-plugin
Command
Add deep link handling to the app — configures Android App Links and iOS Universal Links, adds GoRouter deep link routes, and handles notification-based navigation.
gocodeable/codeable-flutter-cli-claude-plugin
Command
Add filter/sort UI to an existing list — filter chips, sort dropdown, filter bottom sheet, and state management for active filters.
gocodeable/codeable-flutter-cli-claude-plugin
Command
Configure Firebase for all three flavors (development, staging, production) using flutterfire configure — asks for Firebase project ID, detects bundle IDs from existing config.
gocodeable/codeable-flutter-cli-claude-plugin
Command
Generate a form screen with validation, text controllers, form key, and submission wired to a cubit method. Supports text fields, dropdowns, date/time pickers, and image pickers.
gocodeable/codeable-flutter-cli-claude-plugin
Command
Generate a Hive TypeAdapter model for local persistence — scans for next available TypeId, creates model with @HiveType/@HiveField annotations, registers adapter in bootstrap.
gocodeable/codeable-flutter-cli-claude-plugin
Command
Add image upload with camera/gallery picker, cropping, compression, and multipart API submission — uses the project's ImagePickerContainer and ApiService.postMultipart.
gocodeable/codeable-flutter-cli-claude-plugin
Command
Add a custom Dio interceptor to the API service — create interceptor class, register in ApiService's interceptor chain, handle dependencies.
gocodeable/codeable-flutter-cli-claude-plugin
Command
Create a data model from a JSON example or field descriptions — generates Dart class with fromJson, toJson, copyWith, Equatable, nested model handling, and proper null-safe type casting.