From agentic-bundle-ddd-evented-architecture
Applies DDD tactical patterns including entities, value objects, aggregates, repositories, and domain events. Use when designing domain models with explicit invariants.
How this skill is triggered — by the user, by Claude, or both
Slash command
/agentic-bundle-ddd-evented-architecture:ddd-tactical-patternsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
- Translating domain rules into code structures.
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";
}
}
npx claudepluginhub sickn33/agentic-awesome-skills --plugin agentic-bundle-ddd-evented-architectureApplies DDD tactical patterns including entities, value objects, aggregates, repositories, and domain events. Use when designing domain models with explicit invariants.
DDD tactical patterns for complex business modeling: entities, value objects, aggregates, domain services, repositories, specifications, and bounded contexts. Includes Python dataclass implementations with TypeScript alternatives.
Enforces DDD tactical patterns including aggregates, value objects, entity identity, and bounded contexts when designing or modifying domain models.
191plugins reuse this skill
First indexed Jun 2, 2026
Showing the 6 earliest of 191 plugins