flutter-bug-investigation
Installation
SKILL.md
Bug Solving Skill (Flutter)
Foundation: Extends shared-bug-investigation with Flutter patterns.
Flutter Context
flutter --version && grep "sdk:" pubspec.yaml
grep -r "BlocProvider\|ChangeNotifier\|GetX" lib/ # State management
RCA: Check All Layers (data/domain/view)
# View Layer: Bloc/Cubit, widgets, state
find lib/feature/<feature>/view -name "*.dart"
# Domain Layer: Models, repository interfaces, business logic
find lib/feature/<feature>/domain -name "*.dart"