anoopsg
- 14 skills
- 0 followers
- 9 hours ago last updated
- ▌ Create Test · anoopsgProcess for creating unit and widget tests in the test/ directory mirroring the lib/src/ directory structure. Covers using Mockito.
- ▌ Extend Theme · anoopsgUse when adding or changing a design-system color token or typography style in packages/app_ui — covers AppColors/AppTextTheme ThemeExtensions and all four theme variants (light, dark, high-contrast light/dark).
- ▌ Create Client · anoopsgCreates low-level wrappers around third-party plugins or system APIs in the infrastructure/_clients/ directory. Use when the user asks to create or modify an infrastructure client, implement a plugin wrapper, or add a service to the client barrel file.
- ▌ Manage Routes · anoopsgUse when asked to add, update, or group routes using GoRouter, or manage redirection guards.
- ▌ Create Feature · anoopsgUse when asked to create a new feature or sub-feature following the DDD-lite architecture, or set up state, view, and page layers for a domain.
- ▌ Create Package · anoopsgUse when adding a new local package to the Dart pub workspace (alongside app_ui and framework), e.g. to isolate a new library, plugin wrapper set, or shared domain logic. Covers pubspec setup, workspace registration, and melos wiring.
- ▌ Design To Code · anoopsgOutlines the process for converting Figma designs into a structured, platform-aware Flutter implementation.
- ▌ Add Translations · anoopsgUse when adding or modifying translation keys, localized strings, i18n keys, or errors. Handles en.i18n.json, ar.i18n.json, and melos run translate.
- ▌ Create UI Widget · anoopsgProcess for building, exporting, and registering reusable UI components in the packages/app_ui package. References design-to-code.md for design tokens (typography, colors, spacing).
- ▌
- ▌ Manage Permissions · anoopsgUse when asked to add a new permission, gate a route or widget by role/capability, or otherwise touch the RBAC model (UserRole, Permission, kRolePermissions).
- ▌ Remove Web Platform · anoopsgUse when completely removing the web platform from the project. Details how to delete directories/configurations, clean up app_ui web components, remove web-specific feature views (*_view_web.dart), prune conditional imports/logic, and run validation.
- ▌ Create Infrastructure · anoopsgCreates new domains in the infrastructure layer using dart_mappable for models, Chopper for networking, and Riverpod for repositories. Use when the user asks to create a repository, API service, data model, or set up new infrastructure components.
- ▌ Flutter Golden Testing · anoopsgStep-by-step workflow for creating, configuring, and updating Flutter golden tests using the Alchemist package.