gocodeable/codeable-flutter-cli-claude-plugin
Command
Create an onboarding/walkthrough flow — PageView with dot indicators, skip/next buttons, and completion persistence so it only shows once.
gocodeable/codeable-flutter-cli-claude-plugin
Command
Create an onboarding/walkthrough flow — PageView with dot indicators, skip/next buttons, and completion persistence so it only shows once.
gocodeable/codeable-flutter-cli-claude-plugin
Command
Add a new screen to an existing feature — creates the view file, wires the route, and adds navigation. No new cubit — uses the feature's existing cubit.
gocodeable/codeable-flutter-cli-claude-plugin
Command
Add search/filter functionality to an existing list — wires up search field, debounced query, filtered results in state, and API or local filtering.
gocodeable/codeable-flutter-cli-claude-plugin
Command
Add shimmer loading placeholders to a screen — creates skeleton versions of the screen's content that display while data loads, replacing plain loading spinners.
gocodeable/codeable-flutter-cli-claude-plugin
Command
Add WebSocket/real-time connection to a feature — creates socket service, wires to cubit for live data updates, handles reconnection and disposal.
gocodeable/codeable-flutter-cli-claude-plugin
Command
Add a tabbed view to a screen using TabBar + TabBarView or the project's SlidingTab widget — creates tab content widgets and wires state for active tab tracking.
gocodeable/codeable-flutter-cli-claude-plugin
Command
Audit the project structure against codeablecli conventions — checks for missing layers, naming violations, cubit/state file counts, import patterns, and architectural drift.
gocodeable/codeable-flutter-cli-claude-plugin
Command
Convert a screen from Column/ListView to CustomScrollView with Slivers — enables collapsing app bars, sticky headers, mixed scroll content, and better scroll performance.
gocodeable/codeable-flutter-cli-claude-plugin
Command
Generate an Android release keystore (.jks) and key.properties file for a Flutter project — detects project name, checks for existing keystores, configures build.gradle signing, and ensures .gitignore entries.
gocodeable/codeable-flutter-cli-claude-plugin
Command
Add dark mode/theme switching support — creates theme data, dark color palette, theme cubit, and wires ThemeMode into MaterialApp with persistence.
gocodeable/codeable-flutter-cli-claude-plugin
Command
Check for outdated, vulnerable, or unnecessary dependencies — runs flutter pub outdated, checks for known vulnerabilities, and suggests lighter alternatives.
gocodeable/codeable-flutter-cli-claude-plugin
Command
Extract a section of a screen's build method into a separate widget file in the feature's widgets/ folder. Maintains proper imports and passes required data via constructor.
gocodeable/codeable-flutter-cli-claude-plugin
Command
Scaffold a new feature with full Clean Architecture layers — data/domain/presentation, cubit, state, repository, route, and DI wiring. Like codeablecli feature but AI-powered with smarter defaults.
gocodeable/codeable-flutter-cli-claude-plugin
Command
Migrate a feature or the entire project to support RTL (Right-to-Left) layouts — replaces directional padding/margin/alignment with Directional variants.
gocodeable/codeable-flutter-cli-claude-plugin
Command
Generate unit tests for a feature — cubit tests with bloctest, repository mock tests with mocktail, model serialization tests, and widget tests.
gocodeable/codeable-flutter-cli-claude-plugin
Command
Build a complete screen from a description or Figma reference — uses existing core widgets, AppColors, text styles, and handles loading/error/empty states.
gocodeable/codeable-flutter-cli-claude-plugin
Command
Localize all hardcoded UI strings in a Flutter feature directory using context.l10n pattern. Recursively scans, adds ARB keys, updates the localization service, replaces strings in code, and verifies.
gocodeable/codeable-flutter-cli-claude-plugin
Command
Refactor a large feature — split into sub-features, extract shared widgets, move models to core, clean up state fields, and reorganize files while maintaining all existing functionality.
gocodeable/codeable-flutter-cli-claude-plugin
Command
Clean all dead code, optimize APK size, and produce an optimized release APK/AAB — removes unused imports, dependencies, colors, assets, widgets, models, endpoints, and localization keys, then builds with all optimization flags.
gocodeable/codeable-flutter-cli-claude-plugin
Command
Review recently changed code for reuse opportunities, code quality issues, and efficiency — then fix any issues found. Checks for duplicate logic, missing const, over-engineering, and convention violations.
gocodeable/codeable-flutter-cli-claude-plugin
Command
Wire a new or existing repository, service, or cubit into the dependency injection and MultiBlocProvider setup.
gocodeable/codeable-flutter-cli-claude-plugin
Command
Wire a new route for an existing screen — adds route path constant, route name, GoRoute entry, and screen export.
gocodeable/codeable-flutter-cli-claude-plugin
Hook
Runs after a tool call finishes for Write and Edit tool calls, running an inline shell check. From gocodeable/codeable-flutter-cli-claude-plugin.
gocodeable/codeable-flutter-cli-claude-plugin
Hook
Runs when the agent finishes a response, running an inline shell check. From gocodeable/codeable-flutter-cli-claude-plugin.