MCP HubMCP Hub
SKILL·1D11F3

domain-driven-design

wondelai
업데이트됨 15 days ago
5 조회
2,020
206
2,020
GitHub에서 보기
디자인aidesign

정보

이 스킬은 개발자들이 경계 컨텍스트, 애그리게이트, 유비쿼터스 언어와 같은 DDD 개념을 사용해 비즈니스 도메인을 중심으로 소프트웨어를 모델링하도록 돕습니다. 도메인 모델링, 모놀리스 분리, 서비스 경계 정의, 비즈니스 프로세스에 맞춰 코드를 정렬하는 논의가 있을 때 작동합니다. 이 프레임워크는 엔티티 대 값 객체, 도메인 이벤트, 컨텍스트 매핑 전략을 포함한 전략적 디자인 패턴을 다룹니다.

빠른 설치

Claude Code

추천
기본
npx skills add wondelai/skills -a claude-code
플러그인 명령대체
/plugin add https://github.com/wondelai/skills
Git 클론대체
git clone https://github.com/wondelai/skills.git ~/.claude/skills/domain-driven-design

Claude Code에서 이 명령을 복사하여 붙여넣어 스킬을 설치하세요

문서

Domain-Driven Design Framework

Framework for tackling software complexity by modeling code around the business domain. The greatest risk in software is not technical failure -- it is building a model that does not reflect how the business actually works.

Core Principle

The model is the code; the code is the model. Software should embody a deep, shared understanding of the business domain. When domain experts and developers speak the same language and that language is directly expressed in the codebase, complexity becomes manageable and the system evolves gracefully as the business changes.

Scoring

Goal: 10/10. Score a domain model by awarding 1 point per satisfied row of the Quick Diagnostic (7 rows) plus up to 3 points for depth: +1 if the Core Domain has a genuinely rich model (not just CRUD), +1 if invariants live inside aggregates rather than in services, +1 if the ubiquitous language is consistent across conversation, code, and tests. Bands: 9-10 = expert-readable names, explicit context boundaries with ACLs, small aggregates, behavior-rich entities, events for cross-aggregate flow, an identified Core Domain; 5-6 = some domain language but leaky boundaries or anemic objects; <=3 = technical naming, one model for everything, logic scattered in services. Report the score and the specific diagnostic rows failing.

Framework

1. Ubiquitous Language

Core concept: A shared, rigorous language between developers and domain experts, used consistently in conversation, documentation, and code. When the language changes, the code changes -- and awkward naming in code feeds back into refining the language.

Why it works: Ambiguity is the root cause of most modeling failures. When a developer says "order" and an expert means "purchase request," bugs are inevitable; a ubiquitous language forces every name in code to map to a concept the business recognizes and validates.

Key insights:

  • The language emerges from deep collaboration, not a glossary bolted on after the fact
  • If a concept is hard to name, the model is likely wrong -- naming difficulty is a design signal
  • Technical jargon (DataProcessor vs. ClaimAdjudicator) hides domain logic from the experts who could correct it
  • Different bounded contexts may use the same word with different meanings -- and that is fine

Code applications:

ContextPatternExample
Class/method namingName after domain concepts and verbsLoanApplication, policy.underwrite() -- not RequestHandler, process()
Module structureOrganize by domain conceptshipping/, billing/ -- not controllers/, services/
Code reviewReject technical-only namesFlag Manager, Helper, Processor, Utils as naming smells

See: references/ubiquitous-language.md when running modeling sessions or maintaining a glossary -- covers how the language evolves and feeds back into code.

2. Bounded Contexts and Context Mapping

Core concept: A bounded context is an explicit boundary within which a particular domain model applies. The same word ("Customer") can mean different things in different contexts; context maps define the relationships and translation strategies between them.

Why it works: Large systems that try to maintain a single unified model inevitably collapse into inconsistency. Bounded contexts accept that different parts of the business need different models; context maps manage the integration between them.

Key insights:

  • A bounded context is not a microservice -- it is a linguistic and model boundary that may contain multiple services
  • Context boundaries often align with team boundaries (Conway's Law)
  • The nine context mapping patterns describe political and technical relationships between teams
  • Anti-Corruption Layer is the most important defensive pattern -- never let a foreign model leak into your core domain
  • Shared Kernel couples two teams; keep it small and explicitly governed
  • Start by mapping what exists (Big Ball of Mud), then define target boundaries

Code applications:

ContextPatternExample
Service integrationAnti-Corruption LayerTranslate external API responses into your domain objects at the boundary
Legacy migrationConformist / ACLWrap the legacy system behind an adapter that speaks your domain language
API designOpen Host Service + Published LanguageExpose a well-documented REST API with a canonical schema

See: references/bounded-contexts.md for the nine mapping patterns and integration strategies.

3. Entities, Value Objects, and Aggregates

Core concept: Entities have identity that persists across state changes. Value Objects are defined entirely by their attributes and are immutable. Aggregates are clusters of entities and value objects with a single root that enforces consistency boundaries.

Why it works: Without these distinctions, everything becomes a mutable, identity-bearing object -- tangled state, inconsistent updates, fragile concurrency. Aggregates draw the line: everything inside is guaranteed consistent; everything outside is eventually consistent.

Key insights:

  • Entity test: "Am I the same thing even if all my attributes change?" (a person changes name and address -- still the same person)
  • Value Object test: "Am I defined only by my attributes?" (any $10 bill is interchangeable with another)
  • Most things should be Value Objects, not Entities -- prefer immutability
  • Keep aggregates small (one root plus a minimal cluster); reference other aggregates by ID, not object reference
  • Immediate consistency only within an aggregate; design for eventual consistency between aggregates

Code applications:

ContextPatternExample
Identity trackingEntity with IDOrder identified by orderId, survives state changes
Immutable attributesValue ObjectAddress(street, city, zip) -- replace, never mutate
Consistency boundaryAggregate RootOrder is root; OrderLine items exist only through it
Concurrency controlOptimistic locking on rootVersion field on Order; conflict if two edits race

See: references/building-blocks.md for aggregate design rules and consistency boundaries.

4. Domain Events

Core concept: A domain event captures something that happened in the domain that experts care about, named in past tense (OrderPlaced, PaymentReceived) -- a fact that has already occurred.

Why it works: Domain events decouple cause from effect. When OrderPlaced is published, shipping, billing, and notifications each react independently without the ordering context knowing about them -- less coupling, eventual consistency, a natural audit trail.

Key insights:

  • Events are immutable facts -- once published, they cannot be changed or retracted
  • Domain events are internal to a bounded context; integration events cross boundaries
  • Events enable temporal decoupling: the producer does not wait for the consumer
  • Event sourcing stores the full event history as the source of truth, deriving current state by replay
  • Not every state change deserves an event -- only publish what the domain cares about

Code applications:

ContextPatternExample
State transitionsRaise event on domain actionorder.place() raises OrderPlaced
Cross-context integrationPublish integration eventOrderPlaced triggers ShippingLabelRequested in shipping context
Eventual consistencyAsync event handlersInventory handler updates stock asynchronously after OrderPlaced

See: references/domain-events.md for event naming, event sourcing, and integration events.

5. Repositories and Factories

Core concept: Repositories provide the illusion of an in-memory collection of domain objects, hiding persistence. Factories encapsulate complex creation logic so aggregates are always born in a valid state.

Why it works: When persistence and assembly details leak into domain code, every storage change ripples through business rules and aggregates can be constructed in half-valid states. Repositories confine SQL/ORM concerns to infrastructure so the domain stays testable in memory; factories make the only path to an aggregate one that enforces its invariants, so an invalid instance is unrepresentable.

Key insights:

  • The Repository interface belongs in the domain layer; its implementation belongs in infrastructure
  • Repository methods speak the ubiquitous language: findPendingOrders(), not getByStatusCode(3)
  • Collection-oriented repositories mimic add/remove; persistence-oriented ones use save
  • Factories are warranted for complex rules or multi-part assembly; a two-field Value Object just needs a constructor
  • The Specification pattern encapsulates query criteria as domain objects: OverdueInvoiceSpecification

Code applications:

ContextPatternExample
Data access abstractionRepository interfaceOrderRepository.findByCustomer(customerId) in domain; PostgresOrderRepository in infrastructure
Complex creationFactory methodOrder.createFromQuote(quote) validates and assembles from a Quote aggregate
Query encapsulationSpecificationspec = OverdueBy(days=30); repo.findMatching(spec)

See: references/repositories-factories.md for Repository, Factory, and Specification patterns.

6. Strategic Design and Distillation

Core concept: Not all parts of a system are equally important. Strategic design identifies the Core Domain -- where competitive advantage lives -- and distinguishes it from Supporting Subdomains (necessary, not differentiating) and Generic Subdomains (commodity).

Why it works: Applying the same rigor everywhere spreads your best talent thin and over-engineers commodity functionality. Identifying the Core Domain concentrates the best developers and deepest modeling where they matter most.

Key insights:

  • Core Domain: invest your best people and deepest modeling; Supporting: build, but don't over-engineer; Generic (auth, email, payments): buy or use open-source
  • Distillation extracts and highlights the Core Domain from surrounding complexity
  • A Domain Vision Statement is a one-page description of the Core Domain's value proposition
  • Revisit what is "core" as the business evolves -- today's differentiator may become tomorrow's commodity

Code applications:

ContextPatternExample
Build vs. buyClassify subdomain typeBuild custom pricing engine (core); use Stripe for payments (generic)
Team allocationBest developers on Core DomainSeniors model underwriting rules; juniors integrate the email service
Code organizationSeparate core from genericdomain/pricing/ (deep model) vs. infrastructure/email/ (thin adapter)

See: references/strategic-design.md when deciding where to invest engineering effort -- subdomain classification and distillation techniques.

Common Mistakes

MistakeWhy It FailsFix
Technical names instead of domain languageLogic hidden behind DataManager; experts can't validate the modelRename to domain terms (ClaimAdjudicator); if no domain term exists, the concept may be wrong
One model to rule them allA single Customer class for billing, shipping, and marketing becomes bloated and contradictoryBounded contexts: each gets its own Customer with only the attributes it needs
Giant aggregatesConcurrency conflicts, slow loads, transactional bottlenecksKeep aggregates small; reference by ID; eventual consistency between them
Anemic domain modelObjects are data bags; rules scatter across services and duplicateMove behavior into entities and value objects; services orchestrate only
No Anti-Corruption LayerForeign models leak in; code couples to external schemasWrap every external system behind a translation layer
Bounded context = microservicePremature extraction; distributed complexity without benefitA context is a model boundary, not a deployment unit; start with modules in a monolith
Skipping domain expertsDevelopers invent a model that doesn't match reality; expensive reworkRegular modeling sessions until experts say "yes, that is how it works"

Quick Diagnostic

QuestionIf NoAction
Can a domain expert read your class names and understand them?Technical jargon hides the modelRename classes, methods, events to ubiquitous language
Are bounded context boundaries explicitly defined?Models bleed; same term means different thingsDraw a context map; define boundaries and translations
Are aggregates small (one root + minimal cluster)?Slow loads, concurrency issuesSplit aggregates; reference by ID; accept eventual consistency
Do domain objects contain behavior, not just data?Anemic model; logic scattered in servicesMove business rules into entities and value objects
Are domain events used for cross-aggregate communication?Tight coupling, synchronous chainsIntroduce events; let aggregates react asynchronously
Is there an Anti-Corruption Layer at every external integration?Foreign models pollute your domainAdd a translation layer at each boundary
Have you identified which subdomain is core?Best talent spread thinClassify subdomains; focus deep modeling on the Core Domain

Further Reading

For the complete methodology, patterns, and deeper insights:

About the Author

Eric Evans is a software design consultant and the originator of Domain-Driven Design, developed through work on large-scale systems in finance, insurance, and logistics. His 2003 book Domain-Driven Design: Tackling Complexity in the Heart of Software is one of the most influential software architecture books ever written, and he continues to evolve DDD through his consultancy, Domain Language.

GitHub 저장소

wondelai/skills
경로: plugins/code-craftsmanship/skills/domain-driven-design
0
agent-skillsai-skillsbusinessclaude-codeclaude-code-marketplaceclaude-code-plugin
FAQ

자주 묻는 질문

domain-driven-design Skill이란 무엇인가요?

domain-driven-design은(는) wondelai이(가) 만든 Claude Skill입니다. Skill은 Claude가 필요할 때 불러오는 지침과 리소스를 묶어 추가 프롬프트 없이 domain-driven-design 관련 작업을 수행할 수 있게 합니다.

domain-driven-design은(는) 어떻게 설치하나요?

이 페이지의 설치 명령을 사용하세요. domain-driven-design을(를) Claude Code 플러그인으로 추가하거나 저장소를 skills 디렉터리에 복제한 다음 Claude를 다시 시작해 Skill을 불러옵니다.

domain-driven-design은(는) 어떤 카테고리에 속하나요?

domain-driven-design은(는) 디자인 카테고리에 속합니다.

domain-driven-design은(는) 무료로 사용할 수 있나요?

네. domain-driven-design은(는) AIMCP에 등록되어 있으며 무료로 설치할 수 있습니다.

연관 스킬

executing-plans
디자인

executing-plans 스킬은 검토 체크포인트가 포함된 통제된 배치로 실행할 완전한 구현 계획이 있을 때 사용합니다. 이 스킬은 계획을 불러와 비판적으로 검토한 후, 소규모 배치(기본값 3개 작업)로 작업을 실행하면서 각 배치 사이에 진행 상황을 아키텍트 검토를 위해 보고합니다. 이를 통해 내재된 품질 관리 체크포인트를 갖춘 체계적인 구현이 보장됩니다.

스킬 보기
requesting-code-review
디자인

이 스킬은 코드 변경 사항을 요구 사항에 따라 분석하기 위해 코드 리뷰어 하위 에이전트를 호출합니다. 작업 완료 후, 주요 기능 구현 후, 또는 메인 브랜치에 병합하기 전에 사용해야 합니다. 이 리뷰는 현재 구현체와 원래 계획을 비교하여 문제를 조기에 발견하는 데 도움이 됩니다.

스킬 보기
connect-mcp-server
디자인

이 스킬은 개발자들이 HTTP, stdio 또는 SSE 전송 방식을 통해 MCP 서버를 Claude Code에 연결하는 포괄적인 가이드를 제공합니다. GitHub, Notion 및 사용자 정의 API와 같은 외부 서비스를 통합하기 위한 설치, 구성, 인증 및 보안을 다룹니다. MCP 통합 설정, 외부 도구 구성 또는 Claude의 모델 컨텍스트 프로토콜 작업 시 활용하세요.

스킬 보기
web-cli-teleport
디자인

이 스킬은 작업 분석을 기반으로 개발자가 Claude Code 웹 인터페이스와 CLI 인터페이스 중 선택할 수 있도록 돕고, 두 환경 간 원활한 세션 텔레포트를 가능하게 합니다. 웹, CLI 또는 모바일 환경 전환 시 세션 상태와 컨텍스트를 관리하여 워크플로를 최적화합니다. 다양한 단계에서 서로 다른 도구가 필요한 복잡한 프로젝트에 사용하세요.

스킬 보기