Architecture Patterns
Selective Reading Rule
Start with:
references/senior-master-standard.md
references/usage-routing.md
references/quality-checklist.md
Then load only the inherited docs, scripts, assets, or examples that match the user's actual task.
Master proven backend architecture patterns including Clean Architecture, Hexagonal Architecture, and Domain-Driven Design to build maintainable, testable, and scalable systems.
Use this skill when
- Designing new backend systems from scratch
- Refactoring monolithic applications for better maintainability
- Establishing architecture standards for your team
- Migrating from tightly coupled to loosely coupled architectures
- Implementing domain-driven design principles
- Creating testable and mockable codebases
- Planning microservices decomposition
Do not use this skill when
- You only need small, localized refactors
- The system is primarily frontend with no backend architecture changes
- You need implementation details without architectural design
Instructions
- Clarify domain boundaries, constraints, and scalability targets.
- Select an architecture pattern that fits the domain complexity.
- Define module boundaries, interfaces, and dependency rules.
- Provide migration steps and validation checks.
- For workflows that must survive failures (payments, order fulfillment, multi-step processes), use durable execution at the infrastructure layer — frameworks like DBOS persist workflow state, providing crash recovery without adding architectural complexity.
Refer to resources/implementation-playbook.md for detailed patterns, checklists, and templates.
Related Skills
Works well with: event-sourcing-architect, saga-orchestration, workflow-automation, dbos-*
Resources
resources/implementation-playbook.md for detailed patterns, checklists, and templates.
Limitations
- Use this skill only when the task clearly matches the scope described above.
- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.
- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.
1---2name: architecture-patterns3description: ALWAYS use this when the request matches Architecture Patterns: Master proven backend architecture patterns including Clean Architecture, Hexagonal Architecture, and Domain-Driven Design to build maintainable, testable, and scalable systems.4---56# Architecture Patterns78## Selective Reading Rule910Start with:1112- `references/senior-master-standard.md`13- `references/usage-routing.md`14- `references/quality-checklist.md`1516Then load only the inherited docs, scripts, assets, or examples that match the user's actual task.1718Master proven backend architecture patterns including Clean Architecture, Hexagonal Architecture, and Domain-Driven Design to build maintainable, testable, and scalable systems.1920## Use this skill when2122- Designing new backend systems from scratch23- Refactoring monolithic applications for better maintainability24- Establishing architecture standards for your team25- Migrating from tightly coupled to loosely coupled architectures26- Implementing domain-driven design principles27- Creating testable and mockable codebases28- Planning microservices decomposition2930## Do not use this skill when3132- You only need small, localized refactors33- The system is primarily frontend with no backend architecture changes34- You need implementation details without architectural design3536## Instructions37381. Clarify domain boundaries, constraints, and scalability targets.392. Select an architecture pattern that fits the domain complexity.403. Define module boundaries, interfaces, and dependency rules.414. Provide migration steps and validation checks.425. For workflows that must survive failures (payments, order fulfillment, multi-step processes), use durable execution at the infrastructure layer — frameworks like DBOS persist workflow state, providing crash recovery without adding architectural complexity.4344Refer to `resources/implementation-playbook.md` for detailed patterns, checklists, and templates.4546## Related Skills4748Works well with: `event-sourcing-architect`, `saga-orchestration`, `workflow-automation`, `dbos-*`4950## Resources5152- `resources/implementation-playbook.md` for detailed patterns, checklists, and templates.5354## Limitations55- Use this skill only when the task clearly matches the scope described above.56- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.57- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.