Apply DDD tactical patterns in code using entities, value objects, aggregates, repositories, and domain events with explicit invariants.
Add this skill
npx mdskills install sickn33/ddd-tactical-patternsClear DDD tactical guidance with actionable steps but lacks detail depth and has over-scoped permissions
If detailed checklists are needed, open references/tactical-checklist.md.
class Order {
private status: "draft" | "submitted" = "draft";
submit(itemsCount: number): void {
if (itemsCount === 0) throw new Error("Order cannot be submitted empty");
if (this.status !== "draft") throw new Error("Order already submitted");
this.status = "submitted";
}
}
Install via CLI
npx mdskills install sickn33/ddd-tactical-patternsDdd Tactical Patterns is a free, open-source AI agent skill. Apply DDD tactical patterns in code using entities, value objects, aggregates, repositories, and domain events with explicit invariants.
Install Ddd Tactical Patterns with a single command:
npx mdskills install sickn33/ddd-tactical-patternsThis downloads the skill files into your project and your AI agent picks them up automatically.
Ddd Tactical Patterns works with Claude Code, Claude Desktop, Cursor, Vscode Copilot, Windsurf, Continue Dev, Codex, Gemini Cli, Amp, Roo Code, Goose, Opencode, Trae, Qodo, Command Code. Skills use the open SKILL.md format which is compatible with any AI coding agent that reads markdown instructions.