dark-mode
25gocodeable/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.
AI-powered Claude Code plugin for codeable_cli — 13 skills, 34 commands, 9 agents for Flutter Clean Architecture projects
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.