Agent skill

clean-architecture

Provides implementation patterns for Clean Architecture, Domain-Driven Design (DDD), and Hexagonal Architecture (Ports & Adapters) in NestJS/TypeScript applications. Use when structuring complex backend systems, designing domain layers with entities/value objects/aggregates, implementing ports and adapters, creating use cases, or refactoring from anemic models to rich domain models with dependency inversion.

Stars 192
Forks 20

Install this agent skill to your Project

npx add-skill https://github.com/giuseppe-trisciuoglio/developer-kit/tree/main/plugins/developer-kit-typescript/skills/clean-architecture

SKILL.md

Clean Architecture, DDD & Hexagonal Architecture for NestJS

Overview

This skill provides comprehensive guidance for implementing Clean Architecture, Domain-Driven Design (DDD), and Hexagonal Architecture patterns in NestJS/TypeScript applications. It covers the architectural layers, tactical patterns, and practical implementation examples for building maintainable, testable, and loosely-coupled backend systems.

When to Use

  • Architecting complex NestJS applications with long-term maintainability
  • Refactoring from tightly-coupled MVC to layered architecture
  • Implementing rich domain models with business logic encapsulation
  • Designing testable systems with swappable infrastructure
  • Creating microservices with clear bounded contexts
  • Separating business rules from framework code
  • Implementing event-driven architectures with domain events

Instructions

1. Understand the Architectural Layers

Clean Architecture organizes code into concentric layers where dependencies flow inward. Inner layers have no knowledge of outer layers:

+-------------------------------------+
|  Infrastructure (Frameworks, DB)    |  Outer layer - volatile
+-------------------------------------+
|  Adapters (Controllers, Repositories)|  Interface adapters
+-------------------------------------+
|  Application (Use Cases)            |  Business rules
+-------------------------------------+
|  Domain (Entities, Value Objects)   |  Core - most stable
+-------------------------------------+

The Hexagonal Architecture (Ports & Adapters) pattern complements this:

  • Ports: Interfaces defining what the application needs
  • Adapters: Concrete implementations of ports
  • Domain Core: Pure business logic with zero dependencies

2. Learn DDD Tactical Patterns

Apply these patterns in your domain layer:

  • Entities: Objects with identity and lifecycle
  • Value Objects: Immutable, defined by attributes
  • Aggregates: Consistency boundaries with aggregate roots
  • Domain Events: Capture state changes
  • Repositories: Abstract data access for aggregates

3. Organize Your Project Structure

Structure your NestJS project following Clean Architecture principles:

src/
+-- domain/                    # Inner layer - no external deps
|   +-- entities/              # Domain entities
|   +-- value-objects/         # Immutable value objects
|   +-- aggregates/            # Aggregate roots
|   +-- events/                # Domain events
|   +-- repositories/          # Repository interfaces (ports)
|   +-- services/              # Domain services
+-- application/               # Use cases - orchestration
|   +-- use-cases/             # Individual use cases
|   +-- ports/                 # Input/output ports
|   +-- dto/                   # Application DTOs
|   +-- services/              # Application services
+-- infrastructure/            # External concerns
|   +-- database/              # ORM config, migrations
|   +-- http/                  # HTTP clients
|   +-- messaging/             # Message queues
+-- adapters/                  # Interface adapters
    +-- http/                  # Controllers, presenters
    +-- persistence/           # Repository implementations
    +-- external/              # External service adapters

4. Implement the Domain Layer

Create pure domain objects with no external dependencies:

  1. Value Objects: Immutable objects validated at construction
  2. Entities: Objects with identity containing business logic
  3. Aggregates: Consistency boundaries protecting invariants
  4. Repository Ports: Interfaces defining data access contracts

5. Implement the Application Layer

Create use cases that orchestrate business logic:

  1. Define input/output DTOs for each use case
  2. Inject repository ports via constructor
  3. Implement business workflows in the execute method
  4. Keep use cases focused on a single responsibility

6. Implement Adapters

Create concrete implementations of ports:

  1. Persistence Adapters: Map domain objects to/from ORM entities
  2. HTTP Adapters: Controllers that transform requests to use case inputs
  3. External Service Adapters: Integrate with third-party services

7. Configure Dependency Injection

Wire everything together in NestJS modules:

  1. Register use cases as providers
  2. Provide repository implementations using interface tokens
  3. Import required infrastructure modules (TypeORM, etc.)

8. Apply Best Practices

Follow these principles throughout implementation:

  1. Dependency Rule: Dependencies only point inward. Domain knows nothing about NestJS, TypeORM, or HTTP.
  2. Rich Domain Models: Put business logic in entities, not services. Avoid anemic domain models.
  3. Immutability: Value objects must be immutable. Create new instances instead of modifying.
  4. Interface Segregation: Keep repository interfaces small and focused.
  5. Constructor Injection: Use NestJS DI in outer layers only. Domain entities use plain constructors.
  6. Validation: Validate at boundaries (DTOs) and enforce invariants in domain.
  7. Testing: Domain layer tests require no NestJS testing module - pure unit tests.
  8. Transactions: Keep transactions in the application layer, not domain.

Examples

For detailed code examples covering all aspects of Clean Architecture implementation, see:

  • references/examples.md - Complete examples including:
    • Value Objects (Email, Money)
    • Entities with Business Logic (OrderItem)
    • Aggregate Roots with Domain Events (Order)
    • Repository Ports (Interfaces)
    • Use Cases (Application Layer)
    • Repository Adapters (Infrastructure)
    • Controller Adapters (HTTP)
    • Module Configuration (DI setup)

Best Practices

For comprehensive guidance on Clean Architecture best practices, including:

  • Core Principles: Dependency Rule, Rich Domain Models, Immutability, Interface Segregation
  • Testing Strategies: Unit testing domain, integration testing application, E2E testing adapters
  • Performance Considerations: Aggregate design, caching strategy, lazy loading

See references/best-practices.md

Constraints and Warnings

Important constraints, common pitfalls, and implementation warnings:

  • Architecture Constraints: Dependency rule violations, domain purity requirements, interface location rules
  • Common Pitfalls: Leaky abstractions, anemic domain models, wrong layer dependencies, missing ports
  • Implementation Warnings: Mapping overhead, learning curve, boilerplate code, transaction boundaries
  • Performance Considerations: Aggregate size, database queries, caching strategies

See references/constraints.md

Quick Start

  1. Read the architectural layers overview above
  2. Review the examples.md for implementation patterns
  3. Study best-practices.md for core principles
  4. Check constraints.md to avoid common pitfalls
  5. Start implementing your domain layer with pure TypeScript classes
  6. Add application layer use cases to orchestrate business logic
  7. Implement adapters for infrastructure concerns
  8. Configure dependency injection in NestJS modules

References

  • references/examples.md - Complete code examples for all layers
  • references/best-practices.md - Comprehensive best practices and principles
  • references/constraints.md - Constraints, pitfalls, and warnings

Expand your agent's capabilities with these related and highly-rated skills.

giuseppe-trisciuoglio/developer-kit

aws-cli-beast

Provides advanced AWS CLI patterns for managing EC2, Lambda, S3, DynamoDB, RDS, VPC, IAM, and CloudWatch. Generates bulk operation scripts, automates cross-service workflows, validates security configurations, and executes JMESPath queries for complex filtering. Triggers on "aws cli help", "aws command line", "aws scripting", "aws automation", "aws batch operations", "aws bulk operations", "aws cli pagination", "aws multi-region", "aws profiles", "aws cli troubleshooting".

192 20
Explore
giuseppe-trisciuoglio/developer-kit

aws-cost-optimization

Provides structured AWS cost optimization guidance using five pillars (right-sizing, elasticity, pricing models, storage optimization, monitoring) and twelve actionable best practices with executable AWS CLI examples. Use when optimizing AWS costs, reviewing AWS spending, finding unused AWS resources, implementing FinOps practices, reducing EC2/EBS/S3 bills, configuring AWS Budgets, or performing AWS Well-Architected cost reviews.

192 20
Explore
giuseppe-trisciuoglio/developer-kit

aws-sam-bootstrap

Provides AWS SAM bootstrap patterns: generates `template.yaml` and `samconfig.toml` for new projects via `sam init`, creates SAM templates for existing Lambda/CloudFormation code migration, validates build/package/deploy workflows, and configures local testing with `sam local invoke`. Use when the user asks about SAM projects, `sam init`, `sam deploy`, serverless deployments, or needs to bootstrap/migrate Lambda functions with SAM templates.

192 20
Explore
giuseppe-trisciuoglio/developer-kit

aws-drawio-architecture-diagrams

Creates professional AWS architecture diagrams in draw.io XML format (.drawio files) using official AWS Architecture Icons (aws4 library). Use when the user asks for AWS diagrams, VPC layouts, multi-tier architectures, serverless designs, network topology, or draw.io exports involving Lambda, EC2, RDS, or other AWS services.

192 20
Explore
giuseppe-trisciuoglio/developer-kit

aws-cloudformation-bedrock

Provides AWS CloudFormation patterns for Amazon Bedrock resources including agents, knowledge bases, data sources, guardrails, prompts, flows, and inference profiles. Use when creating Bedrock agents with action groups, implementing RAG with knowledge bases, configuring vector stores, setting up content moderation guardrails, managing prompts, orchestrating workflows with flows, and configuring inference profiles for model optimization.

192 20
Explore
giuseppe-trisciuoglio/developer-kit

aws-cloudformation-s3

Provides AWS CloudFormation patterns for Amazon S3. Use when creating S3 buckets, policies, versioning, lifecycle rules, and implementing template structure with Parameters, Outputs, Mappings, Conditions, and cross-stack references.

192 20
Explore

Didn't find tool you were looking for?

Be as detailed as possible for better results