Agent skill · Code Review & Quality

architecture-reviewer

Review software architecture for SOLID principles, design patterns, scalability, and maintainability. Use when evaluating system design or planning refactoring.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
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.

Facts
Files in the skill folder: 2
SKILL.md size: 2 KB
Bundled scripts: none
Path: skills/analysis/architecture-reviewer-ntaksh42-agents-62e7a0a9/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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 ├───

What's inside
Steps it walks through
  1. 概要
  2. 主な機能
  3. 使用方法
  4. レビュー観点
  5. 1. SOLID原則
  6. 2. レイヤー構造
  7. 3. マイクロサービス設計
  8. 出力例
  9. バージョン情報
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
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.

Keep going