software-architecture-patterns
ソフトウェアアーキテクチャの包括的なリファレンスです。基礎知識、アーキテクチャスタイル(レイヤード、パイプライン、マイクロカーネル、マイクロサービス、イベント駆動、SOA)、アーキテクチャパターン(ヘキサゴナル/ポーツ&アダプター、CQRS、イベントソーシング、MVC)、エンタープライズアプリケーションパターン、統合パターンをカバーします。 以下の場面では常にこのスキルを活用してください:システムやコンポーネントのアーキテクチャをレビューする、新しいサービスやシステムを設計する、システム設計セッションを実施する、アーキテクチャに関する意思決定を行う、アーキテクチャスタイル間のトレードオフを評価する、新しいバウンデッドコンテキストやマイクロサービスを構築する、モジュール化・スケーラビリティ・拡張性についてシステムレベルで議論する、アーキテクチャを文書化する(ADR、アーキテクチャ俳句)、または可用性、スケーラビリティ、保守性、耐障害性などのアーキテクチャの品質属性が議論されるあらゆる場面。
description の原文を見る
Comprehensive reference for software architecture: fundamentals, architectural styles (layered, pipeline, microkernel, microservices, event-driven, SOA), architectural patterns (hexagonal/ports & adapters, CQRS, event sourcing, MVC), enterprise application patterns, and integration patterns. ALWAYS activate this skill when: reviewing system or component architecture, designing new services or systems, doing system design sessions, making architectural decisions, evaluating trade-offs between architectural styles, creating new bounded contexts or microservices, discussing modularisation, scalability, or extensibility at the system level, documenting architecture (ADR, Architecture Haiku), or any time architectural quality attributes (availability, scalability, maintainability, fault tolerance) are being discussed.
SKILL.md 本文
ソフトウェアアーキテクチャ
アーキテクチャレビュー、システム設計セッション、アーキテクチャ上の判断を下すための参考資料です。 各トピックは独立したリファレンスファイルに記載されています。
リファレンスファイル
| ファイル | 内容 |
|---|---|
references/fundamentals.md | アーキテクチャの定義、アーキテクト役割、アーキテクチャ要件、判断、制約、文書化(ADR、Architecture Haiku) |
references/architectural-styles-monolithic.md | レイヤード、パイプライン、マイクロカーネル — トポロジ、トレードオフ、使用場面 |
references/architectural-styles-distributed.md | マイクロサービス、イベント駆動アーキテクチャ(EDA)、SOA — トポロジ、原則、トレードオフ |
references/architectural-patterns.md | ヘキサゴナル(ポーツ&アダプタ)、CQRS、イベントソーシング、MVC |
references/enterprise-patterns.md | ドメインロジックパターン(トランザクションスクリプト、ドメインモデル)、データソースパターン(アクティブレコード、データマッパー)、統合パターン(ファイル転送、共有DB、RPC、メッセージング) |
references/architecture-review-checklist.md | アーキテクチャレビューとシステム設計セッション用の構造化チェックリスト |
各ファイルをいつ読むか
アーキテクチャレビュー / システム設計:
architecture-review-checklist.md から始め、より詳しい背景情報のため関連するスタイルまたはパターンファイルを読んでください。
アーキテクチャスタイルを選択する場合:
architectural-styles-monolithic.md または architectural-styles-distributed.md(またはその両方)を読み、トレードオフ比較表を参照してください。
新しいサービスまたはコンポーネントを設計する場合:
architectural-patterns.md を読んでください(内部構造はヘキサゴナル、複雑なドメインはCQRS/イベントソーシング)。
システム間の統合:
enterprise-patterns.md の統合セクションを読み、4つの統合アプローチを確認してください。
アーキテクチャ上の判断を文書化する場合:
fundamentals.md を読み、ADRおよびArchitecture Haikiテンプレートを確認してください。
アーキテクチャスタイル クイック比較
Style | Type | Scalability | Complexity | Best For
──────────────────┼─────────────┼─────────────┼────────────┼───────────────────────────
Layered | Monolithic | Low | Low | Small/medium business apps
Pipeline | Monolithic | Low | Low | Data processing, ETL
Microkernel | Monolithic | Low | Medium | Product apps, plugin systems
Event-Driven | Distributed | High | High | Async, decoupled workflows
SOA | Distributed | Medium | High | Enterprise integration
Microservices | Distributed | High | Very High | Independent team/domain scale
品質属性 → スタイル/パターン ルックアップ
| ニーズ | 検討事項 |
|---|---|
| 独立したデプロイ可能性 | マイクロサービス |
| 拡張性 / プラグインモデル | マイクロカーネル |
| 高スループットのデータ処理 | パイプライン |
| 非同期の疎結合 | イベント駆動アーキテクチャ |
| 複雑な読み書きスケーリング | CQRS |
| 完全な監査証跡 | イベントソーシング |
| テスト可能なビジネスロジックをインフラストラクチャから分離 | ヘキサゴナル |
| シンプルなチーム所有サービス | レイヤード |
ライセンス: MIT(寛容ライセンスのため全文を引用しています) · 原本リポジトリ
詳細情報
- 作者
- wesleyegberto
- ライセンス
- MIT
- 最終更新
- 2026/3/31
Source: https://github.com/wesleyegberto/software-engineering-skills / ライセンス: MIT