flutter-feature-implementation
Installation
SKILL.md
Feature Implementation Skill
Checklist
Code Structure
- Files in data/domain/view (DTOs → data, Models → domain)
- @JsonSerializable on DTOs, Equatable on Models
- Repository interface in domain, implementation in data
- Bloc (complex) or Cubit (simple) in view
Design System
- ColorPalette (no hardcoded colors)
- Spacing (no magic numbers)
- Project's Design System Text Widgets (typography)
- Project's Design System Assets (images/icons)
- Core widgets (
lib/core/widgets/)