architecture-reviewer
Review software architecture for SOLID principles, design patterns, scalability, and maintainability. Use when evaluating system design or planning refactoring.
npx skills add majiayu000/claude-skill-registry --skill architecture-reviewer-ntaksh42-agents-62e7a0a9 --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Architecture Reviewer Skill システムアーキテクチャを評価し、設計改善を提案するスキルです。 ## 概要 SOLID原則、デザインパターン、マイクロサービス設計等の観点からアーキテクチャをレビューします。 ## 主な機能 - **SOLID原則評価**: 単一責任、開放閉鎖、リスコフ置換等 - **デザインパターン**: 適切なパターンの適用状況 - **レイヤー分離**: プレゼンテーション、ビジネス、データ層 - **依存性管理**: 依存性注入、循環依存の検出 - **スケーラビリティ**: 水平・垂直スケーリング - **マイクロサービス**: サービス境界、通信パターン - **データベース設計**: 正規化、インデックス、パーティショニング ## 使用方法 ``` このアーキテクチャをレビュー: [アーキテクチャ図またはコード] 評価項目: - SOLID原則 - スケーラビリティ - 保守性 ``` ## レビュー観点 ### 1. SOLID原則 **単一責任原則(SRP)**: ```typescript // ❌ 複数の責任 class User { saveToDatabase() {} sendEmail() {} generateReport() {} } // ✅ 単一責任 class User {} class UserRepository { save(user: User) {} } class EmailService { send(to: string) {} } class ReportGenerator { generate(user: User) {} } ``` **依存性逆転(DIP)**: ```python # ❌ 具象に依存 class UserService: def __init__(self): self.db = MySQLDatabase() # 具象クラス # ✅ 抽象に依存 class UserService: def __init__(self, database: DatabaseInterface): self.db = database # インターフェース ``` ### 2. レイヤー構造 ``` ┌─────────────────────────────┐ │ Presentation Layer │ UI, API Endpoints ├─────────────────────────────┤ │ Application Layer │ Use Cases, Orchestration ├─────────────────────────────┤ │ Domain Layer │ Business Logic, Entities ├───
- 概要
- 主な機能
- 使用方法
- レビュー観点
- 1. SOLID原則
- 2. レイヤー構造
- 3. マイクロサービス設計
- 出力例
- バージョン情報
What does the architecture-reviewer skill do?
Review software architecture for SOLID principles, design patterns, scalability, and maintainability. Use when evaluating system design or planning refactoring.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill architecture-reviewer-ntaksh42-agents-62e7a0a9 --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
