| name | verify-flutter |
| description | Flutter verification checklist — Riverpod, Freezed, Dio, pagination, contract alignment. |
| disable-model-invocation | true |
Skill: Verify Flutter
Purpose
Systematic verification checklist for Flutter/Dart code following the conventions in flutter-patterns.md. Used by the reviewer agent after code execution.
Verification Process
Run through each section. Flag issues as PASS, WARN, or FAIL.
1. Project Structure
2. Models
3. Services
4. Providers
5. Screens
6. Widgets
7. API Client
8. Auth
9. Error Handling
10. Forms
11. Lists
12. Testing
13. Code Quality
Output
Produce a verification-report.md:
# Verification Report: [Feature/Phase]
Date: [date]
Reviewer: Claude (automated)
## Summary: [PASS/WARN/FAIL]
## Details
### Project Structure: [PASS/WARN/FAIL]
- [notes]
### Models: [PASS/WARN/FAIL]
- [notes]
### Services: [PASS/WARN/FAIL]
- [notes]
...
## Issues Found
1. [FAIL] Description + suggested fix
2. [WARN] Description + recommendation
## Recommended Actions
- [ ] Fix: ...
- [ ] Consider: ...