Source profileQuality 91/100

modu-ai/moai-adk/.claude/skills/moai-workflow-ddd/SKILL.md

moai-workflow-ddd

Domain-Driven Development workflow specialist using ANALYZE-PRESERVE-IMPROVE cycle for behavior-preserving code transformation. Use when refactoring legacy code or reducing technical debt safely.

Source repository stars
1,191
Declared platforms
1
Static risk flags
0
Last source update
2026-08-28
Source checked
2026-08-28

Decision brief

What it does: where it fits

Domain-Driven Development workflow specialist using ANALYZE-PRESERVE-IMPROVE cycle for behavior-preserving code transformation.

Best for

  • Use when refactoring legacy code or reducing technical debt safely.

Not for

  • Common Issues
  • Recovery Procedures

Compatibility matrix

Platform support, with evidence labels

PlatformStatusEvidenceWhat to check
CodexNot declaredNo explicit evidencePortability before use
Claude CodeDeclaredSource recordInstall path and trigger
CursorNot declaredNo explicit evidencePortability before use
Gemini CLINot declaredNo explicit evidencePortability before use
Open the compatibility checker

Installation

Inspect first. Install second.

The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

Source-detected install commandSource
npx skills add https://github.com/modu-ai/moai-adk --skill ".claude/skills/moai-workflow-ddd"
Safe inspection promptEditorial

Inspect the Agent Skill "moai-workflow-ddd" from https://github.com/modu-ai/moai-adk/blob/48239c7dc7428c8751a04f6321887c2d36123884/.claude/skills/moai-workflow-ddd/SKILL.md at commit 48239c7dc7428c8751a04f6321887c2d36123884. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

Workflow

What the source asks the agent to do

  1. 01

    Implementation Guide

    The analyze phase focuses on understanding the current codebase structure and identifying refactoring opportunities.

    Module dependencies and import patternsData flow between componentsShared state and coupling points
  2. 02

    Phase 1: ANALYZE

    The analyze phase focuses on understanding the current codebase structure and identifying refactoring opportunities.

    Module dependencies and import patternsData flow between componentsShared state and coupling points
  3. 03

    Phase 2: PRESERVE

    The preserve phase establishes safety nets before making any changes.

    Step 1: Identify critical code paths through executionStep 2: Create tests that exercise these pathsStep 3: Let tests fail initially to discover actual output
  4. 04

    Test Safety Net Verification

    Before proceeding to improvement phase, verify:

    All existing tests pass (100% green)New characterization tests cover refactoring targetsCode coverage meets threshold for affected areas
  5. 05

    Phase 3: IMPROVE

    The improve phase makes structural changes while continuously validating behavior preservation.

    Make smallest possible structural changeRun full test suiteIf tests fail, revert immediately

Permission review

Static risk signals and limitations

No configured static risk pattern was detected

This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.

Evidence record

Why each signal appears

EvidenceSourceComputedTestedEditorial
SignalValueEvidence typeMeaning
Quality score91/100ComputedDocumentation, specificity, maintenance, and trust rules
Repository stars1,191SourceRepository attention, not individual Skill quality
Compatibility1 platformsSourceDeclared in the catalog source record
Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

Pinned source

Provenance and original SKILL.md

Repository
modu-ai/moai-adk
Skill path
.claude/skills/moai-workflow-ddd/SKILL.md
Commit
48239c7dc7428c8751a04f6321887c2d36123884
License
Apache-2.0
Collected
2026-08-28
Default branch
main
View the original SKILL.md

Domain-Driven Development (DDD) Workflow

Development Mode Configuration (CRITICAL)

[NOTE] This workflow is selected based on .moai/config/sections/quality.yaml:

constitution:
  development_mode: ddd    # or tdd

When to use this workflow:

  • development_mode: ddd → Use DDD (this workflow)
  • development_mode: tdd → Use TDD instead (moai-workflow-tdd)

Key distinction:

  • DDD: Characterization-test-first for existing codebases with minimal test coverage
  • TDD (default): Test-first development for all work, including brownfield projects with pre-RED analysis

Quick Reference

Domain-Driven Development provides a systematic approach for refactoring existing codebases where behavior preservation is paramount. Unlike TDD which creates new functionality, DDD improves structure without changing behavior.

Core Cycle - ANALYZE-PRESERVE-IMPROVE:

  • ANALYZE: Domain boundary identification, coupling metrics, AST structural analysis
  • PRESERVE: Characterization tests, behavior snapshots, test safety net verification
  • IMPROVE: Incremental structural changes with continuous behavior validation

When to Use DDD:

  • Refactoring legacy code with existing tests
  • Improving code structure without functional changes
  • Technical debt reduction in production systems
  • API migration and deprecation handling
  • Code modernization projects
  • Greenfield projects (with adapted cycle - see below)

When NOT to Use DDD:

  • When behavior changes are required (modify SPEC first)
  • When the code already exists and the goal is behavior change rather than behavior-preserving refactoring (DDD preserves behavior; for new behavior, modify the SPEC first, or use TDD)

Greenfield Project Adaptation:

For new projects without existing code, DDD adapts its cycle:

  • ANALYZE: Requirements analysis instead of code analysis
  • PRESERVE: Define intended behavior through specification tests (test-first)
  • IMPROVE: Implement code to satisfy the defined tests

This makes DDD a superset of TDD - it includes TDD's test-first approach while also supporting refactoring scenarios.


Core Philosophy

DDD vs TDD Comparison

TDD Approach (for new features):

  • Cycle: RED-GREEN-REFACTOR
  • Goal: Create new functionality through tests
  • Starting Point: No code exists
  • Test Type: Specification tests that define expected behavior
  • Outcome: New working code with test coverage

DDD Approach (for refactoring):

  • Cycle: ANALYZE-PRESERVE-IMPROVE
  • Goal: Improve structure without behavior change
  • Starting Point: Existing code with defined behavior
  • Test Type: Characterization tests that capture current behavior
  • Outcome: Better structured code with identical behavior

Behavior Preservation Principle

The golden rule of DDD is that observable behavior must remain identical before and after refactoring. This means:

  • All existing tests must pass unchanged
  • API contracts remain identical
  • Side effects remain identical
  • Performance characteristics remain within acceptable bounds

Implementation Guide

Phase 1: ANALYZE

The analyze phase focuses on understanding the current codebase structure and identifying refactoring opportunities.

Domain Boundary Identification

Identify logical boundaries in the codebase by examining:

  • Module dependencies and import patterns
  • Data flow between components
  • Shared state and coupling points
  • Public API surfaces

Use AST-grep to analyze structural patterns. For Python, search for import patterns to understand module dependencies. For class hierarchies, analyze inheritance relationships and method distributions.

Coupling and Cohesion Metrics

Evaluate code quality metrics:

  • Afferent Coupling (Ca): Number of classes depending on this module
  • Efferent Coupling (Ce): Number of classes this module depends on
  • Instability (I): Ce / (Ca + Ce) - higher means less stable
  • Abstractness (A): Abstract classes / Total classes
  • Distance from Main Sequence: |A + I - 1|

Low cohesion and high coupling indicate refactoring candidates.

Structural Analysis Patterns

Use AST-grep to identify problematic patterns:

  • God classes with too many methods or responsibilities
  • Feature envy where methods use other class data excessively
  • Long parameter lists indicating missing abstractions
  • Duplicate code patterns across modules

Create analysis reports documenting:

  • Current architecture overview
  • Identified problem areas with severity ratings
  • Proposed refactoring targets with risk assessment
  • Dependency graphs showing coupling relationships

Phase 2: PRESERVE

The preserve phase establishes safety nets before making any changes.

Characterization Tests

Characterization tests capture existing behavior without assumptions about correctness. The goal is to document what the code actually does, not what it should do.

Steps for creating characterization tests:

  • Step 1: Identify critical code paths through execution
  • Step 2: Create tests that exercise these paths
  • Step 3: Let tests fail initially to discover actual output
  • Step 4: Update tests to expect actual output
  • Step 5: Document any surprising behavior discovered

Characterization test naming convention: testcharacterize[component]_[scenario]

Behavior Snapshots

For complex outputs, use snapshot testing to capture current behavior:

  • API response snapshots
  • Serialization output snapshots
  • State transformation snapshots
  • Error message snapshots

Snapshot files serve as behavior contracts during refactoring.

Test Safety Net Verification

Before proceeding to improvement phase, verify:

  • All existing tests pass (100% green)
  • New characterization tests cover refactoring targets
  • Code coverage meets threshold for affected areas
  • No flaky tests exist in the safety net

Run mutation testing if available to verify test effectiveness.

Phase 3: IMPROVE

The improve phase makes structural changes while continuously validating behavior preservation.

Incremental Transformation Strategy

Never make large changes at once. Follow this pattern:

  • Make smallest possible structural change
  • Run full test suite
  • If tests fail, revert immediately
  • If tests pass, commit the change
  • Repeat until refactoring goal achieved

Safe Refactoring Patterns

Extract Method: When a code block can be named and isolated. Use AST-grep to identify candidates by searching for repeated code blocks or long methods.

Extract Class: When a class has multiple responsibilities. Move related methods and fields to a new class while maintaining the original API through delegation.

Move Method: When a method uses data from another class more than its own. Relocate while preserving all call sites.

Inline Refactoring: When indirection adds complexity without benefit. Replace delegation with direct implementation.

Rename Refactoring: When names do not reflect current understanding. Update all references atomically using AST-grep rewrite.

AST-Grep Assisted Transformations

Use AST-grep for safe, semantic-aware transformations:

For method extraction, create a rule that identifies the code pattern and rewrites to the extracted form.

For API migration, create a rule that matches old API calls and rewrites to new API format.

For deprecation handling, create rules that identify deprecated patterns and suggest modern alternatives.

Continuous Validation Loop

After each transformation:

  • Run unit tests (fast feedback)
  • Run integration tests (behavior validation)
  • Run characterization tests (snapshot comparison)
  • Verify no new warnings or errors introduced
  • Check performance benchmarks if applicable

DDD Workflow Execution

Standard DDD Session

When executing DDD through moai:2-run in DDD mode:

Step 1 - Initial Assessment:

  • Read SPEC document for refactoring scope
  • Identify affected files and components
  • Assess current test coverage

Step 2 - Analyze Phase Execution:

  • Run AST-grep analysis on target code
  • Generate coupling and cohesion metrics
  • Create domain boundary map
  • Document refactoring opportunities

Step 3 - Preserve Phase Execution:

  • Verify all existing tests pass
  • Create characterization tests for uncovered paths
  • Generate behavior snapshots
  • Confirm safety net adequacy

Step 4 - Improve Phase Execution:

  • Execute transformations incrementally
  • Run tests after each change
  • Commit successful changes immediately
  • Document any discovered issues

Step 5 - Validation and Completion:

  • Run full test suite
  • Compare before/after metrics
  • Verify all behavior snapshots match
  • Generate refactoring report

DDD Loop Pattern

For complex refactoring requiring multiple iterations:

  • Set maximum loop iterations based on scope
  • Each loop focuses on one refactoring target
  • Exit conditions: all targets adddessed or iteration limit reached
  • Progress tracking through TODO list updates

Quality Metrics

DDD Success Criteria

Behavior Preservation (Required):

  • All pre-existing tests pass
  • All characterization tests pass
  • No API contract changes
  • Performance within bounds

Structure Improvement (Goals):

  • Reduced coupling metrics
  • Improved cohesion scores
  • Reduced code complexity
  • Better separation of concerns

DDD-Specific TRUST Validation

Apply TRUST 5 framework with DDD focus:

  • Testability: Characterization test coverage adequate
  • Readability: Naming and structure improvements verified
  • Understandability: Domain boundaries clearer
  • Security: No new vulnerabilities introduced
  • Transparency: All changes documented and traceable

Integration Points

With AST-Grep Skill

DDD relies heavily on AST-grep for:

  • Structural code analysis
  • Pattern identification
  • Safe code transformations
  • Multi-file refactoring

Rules live in .moai/config/astgrep-rules/; scan with moai ast-grep and apply rewrites with moai ast-edit.

With Testing Workflow

DDD complements testing workflow:

  • Uses characterization tests from testing patterns
  • Integrates with mutation testing for safety net validation
  • Leverages snapshot testing infrastructure

With Quality Framework

DDD outputs feed into quality assessment:

  • Before/after metrics comparison
  • TRUST 5 validation for changes
  • Technical debt tracking

Troubleshooting

Common Issues

Tests Fail After Transformation:

  • Revert immediately to last known good state
  • Analyze which tests failed and why
  • Check if transformation changed behavior unintentionally
  • Consider smaller transformation steps

Characterization Tests Are Flaky:

  • Identify sources of non-determinism
  • Mock external dependencies
  • Fix time-dependent or order-dependent behavior
  • Consider snapshot tolerance settings

Performance Degradation:

  • Profile before and after
  • Identify hot paths affected by changes
  • Consider caching or optimization
  • Document acceptable trade-offs

Recovery Procedures

When DDD session encounters issues:

  • Save current state with git stash
  • Reset to last successful commit
  • Review transformation that caused failure
  • Plan alternative approach
  • Resume from preserved state

Version: 1.0.0 Status: Active

Common Rationalizations

RationalizationReality
"This legacy code is obviously broken, I will just rewrite it"The broken-looking code may encode production behavior callers depend on. ANALYZE first, rewrite with tests.
"Characterization tests are just busywork"They are the safety net that lets you refactor without fear. Without them, refactor equals rewrite.
"I understand this module well enough to skip ANALYZE"Understanding is not verification. ANALYZE forces you to name assumptions and confront callers.
"This function has no tests because it has no behavior worth testing"If it has callers, it has contract. The contract is the thing to characterize.
"I will preserve behavior by being careful"Carefulness is not a mechanism. Tests are the only mechanism that catches regressions.
"This refactor is too small to need DDD"Small refactors cause silent regressions exactly because people skip the safety net.

Chesterton's Fence: Do not remove or replace code whose purpose you cannot explain. ANALYZE phase exists specifically to uncover the reasoning behind code that looks wrong.

Red Flags

  • Refactor commit with zero new tests and zero existing test changes
  • ANALYZE artifact absent or reduced to a one-line summary
  • Characterization tests that only assert on return values, ignoring side effects and state changes
  • IMPROVE phase introduces new public API without test coverage
  • Behavior-preserving claim made without before/after test evidence
  • Legacy tests deleted during IMPROVE rather than updated

Verification

  • ANALYZE artifact exists and names every caller of the modified code
  • Characterization tests exist for every public entry point before IMPROVE begins
  • Characterization tests pass on the pre-refactor commit (baseline verified)
  • Characterization tests still pass after every IMPROVE step
  • No existing test was deleted without an equivalent replacement
  • Coverage for the modified package is equal to or higher than before the change
  • Side effects (I/O, global state) are captured in at least one test assertion

Frequently asked questions

What to verify before installation and use

What does the moai-workflow-ddd source document cover?

Domain-Driven Development workflow specialist using ANALYZE-PRESERVE-IMPROVE cycle for behavior-preserving code transformation.

How do I install moai-workflow-ddd?

The source record exposes this install command: npx skills add https://github.com/modu-ai/moai-adk --skill ".claude/skills/moai-workflow-ddd". Inspect the command and pinned source before running it.

Which Agent platforms does the source record declare?

The pinned source record declares support for: claude code.

Alternatives

Compare before choosing

Computed 97224

yonatangross/orchestkit

verify

Grade work that already exists and decide whether it can merge. Runs the project's current unit, integration, and E2E suites plus security scanning and type checking, scores every dimension 0-10, and returns a merge verdict with a VERIFIED-vs-CLAIMED evidence manifest. Writes no test files and edits no source. Use when verifying changes are ready to merge. Use /ork:cover instead when the tests still have to be written.

Computed 97211

PramodDutta/qaskills

RAG Regression Testing

Gate RAG pipelines in CI with versioned golden eval sets, per-metric thresholds, baseline drift detection, and a build that fails when retrieval or answer quality regresses.

Computed 9667

brucesongs/kali-claw

automotive-vehicle-security

CAN/CAN-FD bus analysis, UDS diagnostics, IVI pentest, OBD-II exploitation, key fob replay/relay attacks, GNSS spoofing, EV charging station (ISO 15118), and connected vehicle red team operations.

Computed 9621

upex-galaxy/agentic-qa-boilerplate

regression-testing

Execute regression test suites via CI/CD, analyze results, classify failures, and produce GO/NO-GO release decisions. Use when running regression, smoke, or sanity suites through GitHub Actions, monitoring workflow runs, downloading Allure or Playwright artifacts, classifying failures (REGRESSION vs FLAKY vs KNOWN vs ENVIRONMENT vs NEW TEST), computing pass-rate and trend metrics, deciding release readiness, generating executive quality reports, or creating regression issues. Triggers on: run re