architecture-patterns
Design Maintainable Backend Architectures
Complex backend systems can become tightly coupled and hard to test. This skill guides Claude, Codex, and Claude Code through proven architecture patterns.
Install with my Agent
Copy this request to your Agent. It includes the canonical Skill page and manifest.
Review the Skillstore skill "architecture-patterns" from https://skillstore.io/skills/wshobson-architecture-patterns.md and its manifest at https://skillstore.io/api/skills/wshobson-architecture-patterns/manifest. Verify the artifact. You may proceed after verification, subject to the environment's own policy.Your Agent should still show its plan and request any confirmation required by the security policy.
Agent-readable resources
Use these links when an AI agent, crawler, or script needs clean context instead of reading the full page.
Test it
Using "architecture-patterns". Design a backend architecture for a payment and order workflow.
Expected outcome:
A layered design with domain models, use cases, payment ports, repository adapters, and notification boundaries.
Using "architecture-patterns". Refactor a controller that validates orders, charges cards, and writes database rows.
Expected outcome:
A migration plan that moves business rules into use cases and hides infrastructure behind ports.
Using "architecture-patterns". Define DDD building blocks for customer accounts and orders.
Expected outcome:
A domain model proposal with aggregates, value objects, repository boundaries, and domain events.
Security Audit
SafeStatic command, secret, and reconnaissance findings are false positives from Markdown fences and illustrative Python architecture examples. No evidence found of prompt injection, active command execution, real secret access, data exfiltration, or host reconnaissance in SKILL.md.
Risk Factors
โ๏ธ External commands (7)
๐ Env variables (2)
Share & cite this report
Share the versioned assessment report, neutral badge, embed card, and citations. Skillstore reports evidence without deciding whether this Skill is safe.
Copy report link
https://skillstore.io/skills/wshobson-architecture-patterns/audits/9?utm_source=security_passport&utm_medium=share&utm_campaign=versioned_reportMarkdown badge
[](https://skillstore.io/skills/wshobson-architecture-patterns?utm_source=security_passport_badge)HTML badge
<a href="https://skillstore.io/skills/wshobson-architecture-patterns?utm_source=security_passport_badge"><img src="https://skillstore.io/badges/skills/wshobson-architecture-patterns/security.svg" alt="Skillstore security assessment" loading="lazy"></a>Embed card
<iframe src="https://skillstore.io/embed/skills/wshobson-architecture-patterns.html" title="Skillstore Security Assessment" sandbox="allow-popups allow-popups-to-escape-sandbox" loading="lazy" referrerpolicy="no-referrer" width="420" height="180"></iframe>Academic citations (APA ยท BibTeX ยท CFF)
APA citation
wshobson. (2026). architecture-patterns security audit report (audit version 9) [Author version unspecified]. Skillstore. https://skillstore.io/skills/wshobson-architecture-patterns/audits/9BibTeX citation
@techreport{wshobson-wshobson-architecture-patterns-2026,
author = {wshobson},
title = {architecture-patterns security audit report (audit version 9)},
institution = {Skillstore},
year = {2026},
number = {9},
url = {https://skillstore.io/skills/wshobson-architecture-patterns/audits/9},
note = {Author version unspecified}
}CITATION.cff
cff-version: 1.2.0
message: "If you use this Skill, cite its author and this versioned security audit report."
title: "architecture-patterns security audit report (audit version 9)"
version: "unspecified"
type: report
authors:
- name: "wshobson"
date-released: "2026-07-07"
url: "https://skillstore.io/skills/wshobson-architecture-patterns/audits/9"
identifiers:
- type: other
value: "skillstore:wshobson-architecture-patterns:audit:9"
description: "Skillstore immutable audit report identifier"
Compare variants
4 installable variantsEach author remains a separate installable skill. The recommended variant is ranked by Skillstore evidence.
Why this variant is first
wshobson-architecture-patterns
2026-08-21
adammanuel-dev-architecture-patterns
2026-08-21
barnhardt-enterprises-inc-architecture-patterns
2026-08-21
sickn33-architecture-patterns
2026-08-21
Skillstore Score
Why this score Evidence Confidence: HighWhat You Can Build
Plan a New Backend Service
Define layers, ports, adapters, and domain boundaries before implementation starts.
Refactor a Coupled Application
Separate business rules from controllers, databases, and external services.
Create Team Architecture Standards
Document patterns, naming conventions, and boundaries for shared backend work.
Try These Prompts
Use the architecture-patterns skill to compare Clean Architecture, Hexagonal Architecture, and DDD for my backend service. Recommend one pattern and explain why.
Use the architecture-patterns skill to design the layers, folders, and dependency rules for a service that handles users, orders, and payments.
Use the architecture-patterns skill to create a refactoring plan that moves business logic out of controllers and database adapters.
Use the architecture-patterns skill to identify bounded contexts, aggregates, value objects, repositories, and domain events for this product domain.
Best Practices
- Start from domain behavior before choosing frameworks or storage tools.
- Keep dependency direction explicit and test core logic without infrastructure.
- Use small interfaces that match real use cases and team language.
Avoid
- Putting business rules inside controllers, jobs, or database adapters.
- Creating many layers for simple CRUD systems without clear benefit.
- Sharing database models directly across unrelated bounded contexts.