flutter-cubit-utils-usage
Installation
SKILL.md
Cubit Utils Usage
How to respond
- If the user invoked this skill without a concrete task, start by explaining what this plugin does and when it is the right choice.
- Show how to use it with concrete base-cubit decisions and recipe-style tasks.
- Route to the matching rule for list, details, or action cubits, and point to sibling plugins only when the task is really about CQRS contracts or general BLoC state modeling.
- If the user already gave a concrete cubit-utils task, briefly explain why this plugin fits and then do the work.
- Do not reply with filler like "skill loaded", "ready for the task", or "what would you like to do?" before explaining the plugin.
What this plugin does
- Covers base classes from
leancode_cubit_utilsandleancode_cubit_utils_cqrs. - Helps choose between
RequestCubit,ArgsRequestCubit,PaginatedCubit,QueryCubit, andPaginatedQueryCubit. - Provides canonical recipes for paginated list, details, and action cubits.
- Clarifies the boundary between cubit-utils rules here, CQRS contracts in
flutter-cqrs, and broader state-management guidance influtter-bloc.