Standards for organizing code by feature at the root level to improve scalability and maintainability.
Scanned 9/8/2026
Install to Claude Code
npx -y skills add ngxtm/devkit --skill feature-based-clean-architecture --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Feature Based Clean Architecture?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/ngxtm-feature-based-clean-architecture-devkit)More formats (shields.io, HTML) on the badges page.
---
name: Flutter Feature-Based Clean Architecture
description: Standards for organizing code by feature at the root level to improve scalability and maintainability.
metadata:
labels: [architecture, clean-architecture, feature-driven, ddd, modularity]
triggers:
files: ['lib/features/**']
keywords: [feature, domain, infrastructure, application, presentation, modular]
---
# Feature-Based Clean Architecture
## **Priority: P0 (CRITICAL)**
Standard for modular Clean Architecture organized by business features in `lib/features/`.
## Structure
```text
lib/
├── features/ <feature_name>/
│ ├── domain/ # Business Logic (Pure Dart): entities, interfaces, use_cases
│ ├── data/ # Implementation: data_sources, dtos, repositories
│ └── presentation/ # UI & State: blocs, pages, widgets
├── core/ # Shared infrastructure & utilities
└── shared/ # Common UI components & shared entities
```
## Implementation Guidelines
- **Feature Encapsulation**: Keep logic, models, and UI internal to the feature directory.
- **Strict Layering**: Maintain 3-layer separation (Domain/Data/Presentation) within each feature.
- **Dependency Rule**: `Presentation -> Domain <- Data`. Domain must have zero external dependencies.
- **Cross-Feature Communication**: Features only depend on the **Domain** layer of other features.
- **Flat features**: Keep `lib/features/` flat; avoid nested features.
- **No DTO Leakage**: Never expose DTOs or Data Sources to UI or other features; return Domain Entities.
- **Shared logic**: Move cross-cutting concerns to `lib/shared/` or `lib/core/`.
## Reference & Examples
For feature folder blueprints and cross-layer dependency templates:
See [references/REFERENCE.md](references/REFERENCE.md).
## Related Topics
layer-based-clean-architecture | retrofit-networking | go-router-navigation | bloc-state-management | dependency-injection
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!