ddd-knowledge

DDD architecture knowledge base. Provides patterns, antipatterns, and PHP-specific guidelines for Domain-Driven Design audits.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "ddd-knowledge" with this command: npx skills add dykyi-roman/awesome-claude-code/dykyi-roman-awesome-claude-code-ddd-knowledge

DDD Knowledge Base

Quick reference for DDD architecture patterns and PHP implementation guidelines.

Core Principles

Layer Dependencies (Clean Architecture)

Presentation → Application → Domain ← Infrastructure
                    ↓
              Domain (center)

Rule: Dependencies point INWARD. Domain has ZERO external dependencies.

Layer Responsibilities

LayerContainsDepends On
DomainEntities, Value Objects, Aggregates, Domain Services, Repository Interfaces, Domain EventsNothing
ApplicationUse Cases, DTOs, Application ServicesDomain
InfrastructureRepository Implementations, External APIs, DB, Cache, QueueDomain, Application
PresentationControllers, Actions, Request/Response, CLIApplication

Quick Checklists

Domain Layer Checklist

  • No framework imports (Doctrine, Eloquent, Symfony)
  • Entities have behavior, not just data
  • Value Objects for domain concepts (Email, Money, Id)
  • Repository INTERFACES defined here
  • Enums for fixed value sets
  • Domain Events for side effects
  • No public function set*() methods

Application Layer Checklist

  • UseCases orchestrate, don't decide
  • DTOs for input/output
  • No business logic (if/switch on domain state)
  • Transaction boundaries here
  • No HTTP/CLI concerns

Infrastructure Layer Checklist

  • Implements Domain interfaces
  • No business logic in repositories
  • External service adapters
  • Caching, queuing implementations

Presentation Layer Checklist

  • Validates input
  • Maps to DTOs
  • Calls UseCase
  • Formats response
  • No business logic

Common Violations Quick Reference

ViolationWhere to LookSeverity
use Doctrine\\ in DomainDomain/*.phpCritical
use Illuminate\\ in DomainDomain/*.phpCritical
use Infrastructure\\ in DomainDomain/*.phpCritical
Only getters/setters in EntityDomain/Entity/*.phpWarning
=== 'pending' magic stringsAny PHP fileWarning
public function set*()Domain/Entity/*.phpWarning
Business logic in ControllerPresentation/*.phpWarning
Business logic in RepositoryInfrastructure/*.phpWarning

PHP 8.4 DDD Patterns

Value Object

final readonly class Email
{
    public function __construct(
        public string $value
    ) {
        if (!filter_var($value, FILTER_VALIDATE_EMAIL)) {
            throw new InvalidArgumentException('Invalid email');
        }
    }

    public function equals(self $other): bool
    {
        return $this->value === $other->value;
    }
}

Entity with Behavior

final class Order
{
    private OrderStatus $status;

    public function __construct(
        private readonly OrderId $id,
        private readonly CustomerId $customerId
    ) {
        $this->status = OrderStatus::Pending;
    }

    public function confirm(): void
    {
        if (!$this->status->canTransitionTo(OrderStatus::Confirmed)) {
            throw new DomainException('Cannot confirm order');
        }
        $this->status = OrderStatus::Confirmed;
    }
}

Repository Interface

// Domain/Repository/OrderRepositoryInterface.php
interface OrderRepositoryInterface
{
    public function findById(OrderId $id): ?Order;
    public function save(Order $order): void;
}

References

For detailed information, load these reference files:

  • references/layer-architecture.md — Detailed layer rules and boundaries
  • references/domain-patterns.md — Entity, VO, Aggregate, Repository patterns
  • references/application-patterns.md — UseCase, DTO, Command/Query patterns
  • references/antipatterns.md — Common violations with detection patterns
  • references/php-specific.md — PHP 8.4 specific implementations

Assets

  • assets/report-template.md — Structured audit report template

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

detect-code-smells

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

clean-arch-knowledge

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

testing-knowledge

No summary provided by upstream source.

Repository SourceNeeds Review