> Sistem mimarisi pattern''ları.
Scanned 9/4/2026
Install to Claude Code
npx -y skills add majiayu000/claude-skill-registry-data --skill arch-patterns --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Arch Patterns?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/majiayu000-arch-patterns-claude-skill-registry-data)More formats (shields.io, HTML) on the badges page.
---
name: arch-patterns
description: '> Sistem mimarisi pattern''ları.'
---
---
name: arch_patterns
router_kit: FullStackKit
description: Architecture patterns - monolith vs microservices, layered, event-driven, CQRS.
metadata:
skillport:
category: thinking
tags: [arch patterns, architecture, automation, best practices, clean code, coding, collaboration, compliance, debugging, design patterns, development, documentation, efficiency, git, optimization, productivity, programming, project management, quality assurance, refactoring, software engineering, standards, testing, utilities, version control, workflow] - arch-decisions
---
# 🏗️ Architecture Patterns
> Sistem mimarisi pattern'ları.
---
## ⚠️ Bu Skill vs `design-patterns`
| Bu Skill | `design-patterns` |
|----------|-------------------|
| **Sistem** mimarisi | **UI/UX** tasarım |
| Microservices, CQRS | Z-index, shadows |
| Database, scaling | Animation, spacing |
> **Kural:** Backend/sistem → bu skill, Frontend/UI → `design-patterns`
---
## ⚖️ Monolith vs Microservices
| Aspect | Monolith | Microservices |
|--------|----------|---------------|
| Complexity | Düşük | Yüksek |
| Scaling | Tüm uygulama | Service bazlı |
| Team Size | Küçük | Büyük |
**Seç:**
- Monolith: Küçük takım, MVP, hızlı iteration
- Microservices: Büyük takım, bağımsız deploy
---
## 📚 Layered Architecture
```
Presentation → Application → Domain → Infrastructure
```
---
## ⚡ Event-Driven
```
Producer → Event Broker → Consumer
(Kafka/SQS)
```
---
## 📊 CQRS
```
Command Service → Write DB
↓ Events
Query Service ← Read DB
```
---
## 🧩 Modular Monolith
```
Modules separated by boundaries within a single deployable unit.
Good for: Teams growing from startup to scale-up phase.
Prevents "Distributed Monolith" chaos.
```
---
*Architecture Patterns v1.1 - Enhanced*
## 🔄 Workflow
> **Kaynak:** [Software Architecture Guide](https://martinfowler.com/architecture/)
### Aşama 1: Requirements Analysis
- [ ] **Functional**: Ne yapacak? (E-ticaret, Blog, IoT)
- [ ] **Non-Functional**: Scalability, Latency, Consistency ihtiyacı.
- [ ] **Constraints**: Takım boyutu, bütçe, timeline.
### Aşama 2: Complexity Assesment
- [ ] **Domain Complexity**: Karmaşıksa -> DDD + Layered/Hexagonal.
- [ ] **Scale Complexity**: Yüksek trafik -> Event-Driven / Microservices.
- [ ] **Data Complexity**: Raporlama ağırsa -> CQRS.
### Aşama 3: Pattern Selection
- [ ] **Default**: Modular Monolith ile başla.
- [ ] **Scale-out**: Bağımsız scale gereken modülleri ayır (Microservices).
- [ ] **Real-time**: Event-Driven ekle.
### Kontrol Noktaları
| Aşama | Doğrulama |
|-------|-----------|
| 1 | Gereksinimler net (NFRs belirlendi) |
| 2 | Seçilen pattern probleme uygun (Over-engineering değil) |
| 3 | Takım bu mimariyi yönetebilir |
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!