Orders should consume loyalty through loyalty’s domain layer only. - Define a domain entity such as `LoyaltyPoints` and a domain use case, e.g. `GetLoyaltyPoints`, in `lib/features/loyalty/domain/`. - Inject `GetLoyaltyPoints` into the orders use case/BLoC. - Configure the concrete loyalty data repository through dependency injection at the composition root. ```dart // loyalty/domain/entities/loyalty_points.dart class LoyaltyPoints { final int value; const LoyaltyPoints(this.value); } // loya...
Scanned 9/5/2026
Install to Claude Code
npx -y skills add HoangNguyen0403/agent-skills-standard --skill flutter-feature-based-clean-architecture --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Flutter Feature Based Clean Architecture?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/hoangnguyen0403-flutter-feature-based-clean-architecture-cbde4f21)More formats (shields.io, HTML) on the badges page.
Orders should consume loyalty through loyalty’s domain layer only.
- Define a domain entity such as `LoyaltyPoints` and a domain use case, e.g. `GetLoyaltyPoints`, in `lib/features/loyalty/domain/`.
- Inject `GetLoyaltyPoints` into the orders use case/BLoC.
- Configure the concrete loyalty data repository through dependency injection at the composition root.
```dart
// loyalty/domain/entities/loyalty_points.dart
class LoyaltyPoints {
final int value;
const LoyaltyPoints(this.value);
}
// loyalty/domain/usecases/get_loyalty_points.dart
abstract interface class GetLoyaltyPoints {
Future<LoyaltyPoints> call(String customerId);
}
// orders/domain/usecases/create_order.dart
class CreateOrder {
final GetLoyaltyPoints getLoyaltyPoints;
CreateOrder(this.getLoyaltyPoints);
Future<void> call(String customerId) async {
final points = await getLoyaltyPoints(customerId);
// Apply order-specific points logic.
}
}
```
Orders may import loyalty’s domain entities/use cases, but never import from loyalty’s `data/` or `presentation/` layers. Keep the dependency direction `Presentation -> Domain <- Data`; the UI must not call another feature’s repository directly.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!