Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计通过

moai-workflow-ddd摩艾工作流程 ddd

Agent Skill

moai-workflow-ddd 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

196

周安装

8

GitHub Stars

61

下载量

63
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:moai-workflow-ddd(摩艾工作流程 ddd)
来源仓库:https://github.com/modu-ai/cc-plugins
仓库路径:skills/moai-workflow-ddd
安装命令:
npx skills add https://github.com/modu-ai/cc-plugins --skill moai-workflow-ddd
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/modu-ai/cc-plugins --skill moai-workflow-ddd

简介

moai-workflow-ddd 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于需要根据关键词或任务场景从来源线索中获取信息的场景。
  • 通过 npx skills add 命令安装,需结合原始 README 确认具体用法。
  • 安装前建议核实权限范围、维护状态及是否触发联网或文件操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

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: hybrid    # or ddd, tdd
  hybrid_settings:
    new_features: tdd        # New code → use TDD
    legacy_refactoring: ddd  # Existing code → use DDD (this workflow)

When to use this workflow:

  • development_mode: ddd → Always use DDD
  • development_mode: hybrid + refactoring existing code → Use DDD
  • development_mode: hybrid + new package/module → Use TDD instead (moai-workflow-tdd)

Key distinction:

  • New file/package (doesn't exist yet) → TDD (RED-GREEN-REFACTOR)
  • Existing code (file already exists) → DDD (ANALYZE-PRESERVE-IMPROVE)

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
  • When DDD is not applicable because code already exists
  • Greenfield projects (with adapted cycle - see below)

When NOT to Use DDD:

  • When behavior changes are required (modify SPEC first)

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: test*characterize*[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

Load moai-tool-ast-grep for detailed pattern syntax and rule creation.

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 Last Updated: 2026-01-16

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

28.16%
按下载量换算18

windsurf

22.5%
按下载量换算14

trae

15.95%
按下载量换算10

OpenCode

13.91%
按下载量换算9

Codex

6.87%
按下载量换算4

Antigravity

3.37%
按下载量换算2

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills