MCP HubMCP Hub
스킬 목록으로 돌아가기

review-software-architecture

pjt222
업데이트됨 2 days ago
3 조회
17
2
17
GitHub에서 보기
디자인apidesign

정보

이 스킬은 소프트웨어 아키텍처를 결합도, 응집도, SOLID 원칙, API 설계, 확장성, 기술 부채 측면에서 검토합니다. 구현 전 제안된 설계를 평가하고, 기존 시스템의 개선점을 진단합니다. 시스템 수준 분석, ADR(아키텍처 결정 기록) 검토, 확장 준비 상태 평가에 활용하세요.

빠른 설치

Claude Code

추천
기본
npx skills add pjt222/agent-almanac -a claude-code
플러그인 명령대체
/plugin add https://github.com/pjt222/agent-almanac
Git 클론대체
git clone https://github.com/pjt222/agent-almanac.git ~/.claude/skills/review-software-architecture

Claude Code에서 이 명령을 복사하여 붙여넣어 스킬을 설치하세요

문서

Review Software Architecture

Eval architecture at system level → quality attribs, design principles adherence, long-term maintainability.

Use When

  • Eval proposed architecture before impl begins
  • Assess existing system → scalability, maintainability, security
  • Review ADRs for project
  • Tech debt assess
  • Eval ready for significant scale-up or feature expansion
  • Differentiate from line-level code review (PR-scoped)

In

  • Required: System codebase or arch docs (diagrams, ADRs, README)
  • Required: Ctx about purpose, scale, constraints
  • Optional: Non-functional req (latency, throughput, availability targets)
  • Optional: Team size + skill composition
  • Optional: Tech constraints/prefs
  • Optional: Known pain points

Do

Step 1: Understand System Ctx

Map system boundaries + interfaces:

## System Context
- **Name**: [System name]
- **Purpose**: [One-line description]
- **Users**: [Who uses it and how]
- **Scale**: [Requests/sec, data volume, user count]
- **Age**: [Years in production, major versions]
- **Team**: [Size, composition]

## External Dependencies
| Dependency | Type | Criticality | Notes |
|-----------|------|-------------|-------|
| PostgreSQL | Database | Critical | Primary data store |
| Redis | Cache | High | Session store + caching |
| Stripe | External API | Critical | Payment processing |
| S3 | Object storage | High | File uploads |

→ Clear picture of what system does + depends on. If err: arch docs missing → derive ctx from code structure, configs, deployment.

Step 2: Eval Structural Quality

Coupling Assessment

Examine how tightly modules depend:

  • Dep direction: Flow one direction (layered) or circular?
  • Interface boundaries: Modules connected via defined interfaces or direct impl refs?
  • Shared state: Mutable state shared between modules?
  • DB coupling: Multi services read/write same tables direct?
  • Temporal coupling: Ops happen in specific order w/o explicit orchestration?
# Detect circular dependencies (JavaScript/TypeScript)
npx madge --circular src/

# Detect import patterns (Python)
# Look for deep cross-package imports
grep -r "from app\." --include="*.py" | sort | uniq -c | sort -rn | head -20

Cohesion Assessment

Eval whether each module has single, clear responsibility:

  • Module naming: Name accurately describes what module does?
  • File size: Files/classes excessively large (> 500 lines suggests multi responsibilities)?
  • Change frequency: Unrelated features need changes to same module?
  • God objects: Classes/modules everything depends on?
Coupling LevelDescriptionExample
Low (good)Modules communicate through interfacesService A calls Service B's API
MediumModules share data structuresShared DTO/model library
High (concern)Modules reference each other's internalsDirect database access across modules
PathologicalModules modify each other's internal stateGlobal mutable state

→ Coupling + cohesion assessed w/ specific examples from codebase. If err: codebase too large for manual review → sample 3-5 key modules + most-changed files.

Step 3: Assess SOLID Principles

PrincipleQuestionRed Flags
Single ResponsibilityDoes each class/module have one reason to change?Classes with >5 public methods on unrelated concerns
Open/ClosedCan behavior be extended without modifying existing code?Frequent modifications to core classes for each new feature
Liskov SubstitutionCan subtypes replace their base types without breaking behavior?Type checks (instanceof) scattered through consumer code
Interface SegregationAre interfaces focused and minimal?"Fat" interfaces where consumers implement unused methods
Dependency InversionDo high-level modules depend on abstractions, not details?Direct instantiation of infrastructure classes in business logic
## SOLID Assessment
| Principle | Status | Evidence | Impact |
|-----------|--------|----------|--------|
| SRP | Concern | UserService handles auth, profile, notifications, and billing | High — changes to billing risk breaking auth |
| OCP | Good | Plugin system for payment providers | Low |
| LSP | Good | No type-checking anti-patterns found | Low |
| ISP | Concern | IRepository has 15 methods, most implementors use 3-4 | Medium |
| DIP | Concern | Controllers directly instantiate database repositories | Medium |

→ Each principle assessed w/ ≥1 specific example. If err: not all principles apply equally to every arch style. Note when principle less relevant (e.g. ISP matters less in functional codebases).

Step 4: Review API Design

For systems exposing APIs (REST, GraphQL, gRPC):

  • Consistency: Naming conventions, error formats, pagination patterns uniform
  • Versioning: Strategy exists + applied (URL, header, content negotiation)
  • Error handling: Responses structured, consistent, no leak internals
  • Authn/Authz: Properly enforced at API layer
  • Rate limiting: Protection vs abuse
  • Docs: OpenAPI/Swagger, GraphQL schema, protobuf maintained
  • Idempotency: Mutating ops (POST/PUT) handle retries safely
## API Design Review
| Aspect | Status | Notes |
|--------|--------|-------|
| Naming consistency | Good | RESTful resource naming throughout |
| Versioning | Concern | No versioning strategy — breaking changes affect all clients |
| Error format | Good | RFC 7807 Problem Details used consistently |
| Auth | Good | JWT with role-based scopes |
| Rate limiting | Missing | No rate limiting on any endpoint |
| Documentation | Concern | OpenAPI spec exists but 6 months out of date |

→ API design reviewed vs common stds w/ specific findings. If err: no API exposed → skip + focus internal module interfaces.

Step 5: Eval Scalability + Reliability

  • Statelessness: App can scale horizontal (no local state)?
  • DB scalability: Queries indexed? Schema suitable for data volume?
  • Caching strategy: Applied at appropriate layers (DB, app, CDN)?
  • Failure handling: What happens when dep unavailable (circuit breaker, retry, fallback)?
  • Observability: Logs, metrics, traces impl?
  • Data consistency: Eventual acceptable or strong required?

→ Scalability + reliability assessed vs stated non-functional req. If err: non-functional req undocumented → recommend defining as first step.

Step 6: Tech Debt Assess

## Technical Debt Inventory
| Item | Severity | Impact | Estimated Effort | Recommendation |
|------|----------|--------|-----------------|----------------|
| No database migrations | High | Schema changes are manual and error-prone | 1 sprint | Adopt Alembic/Flyway |
| Monolithic test suite | Medium | Tests take 45 min, developers skip them | 2 sprints | Split into unit/integration/e2e |
| Hardcoded config values | Medium | Environment-specific values in source code | 1 sprint | Extract to env vars/config service |
| No CI/CD pipeline | High | Manual deployment prone to errors | 1 sprint | Set up GitHub Actions |

→ Tech debt catalogued w/ severity, impact, effort estimates. If err: debt inventory overwhelming → prioritize top 5 by impact/effort ratio.

Step 7: Review ADRs

ADRs exist → eval:

  • Decisions have clear ctx (what problem)
  • Alternatives considered + documented
  • Trade-offs explicit
  • Decisions still current (not superseded w/o documentation)
  • New significant decisions have ADRs

ADRs don't exist → recommend establishing for key decisions.

Step 8: Write Review

## Architecture Review Report

### Executive Summary
[2-3 sentences: overall health, key concerns, recommended actions]

### Strengths
1. [Specific architectural strength with evidence]
2. ...

### Concerns (by severity)

#### Critical
1. **[Title]**: [Description, impact, recommendation]

#### Major
1. **[Title]**: [Description, impact, recommendation]

#### Minor
1. **[Title]**: [Description, recommendation]

### Technical Debt Summary
[Top 5 debt items with prioritized recommendations]

### Recommended Next Steps
1. [Actionable recommendation with clear scope]
2. ...

→ Review report actionable w/ prioritized recs. If err: time-boxed → clearly state what covered + what remains unassessed.

Check

  • System ctx documented (purpose, scale, deps, team)
  • Coupling + cohesion assessed w/ specific code examples
  • SOLID eval'd where applicable
  • API design reviewed (if applicable)
  • Scalability + reliability assessed vs req
  • Tech debt catalogued + prioritized
  • ADRs reviewed or absence noted
  • Recs specific, prioritized, actionable

Traps

  • Review code not architecture: System-level design not line-level quality. Use code-reviewer for PR-level feedback.
  • Prescribe specific tech: Arch reviews ID problems not mandate specific tools unless clear technical reason.
  • Ignore team ctx: "Best" arch for 3-person team diff from 30-person. Consider organizational constraints.
  • Perfectionism: Every system has tech debt. Focus on debt actively causing pain or blocking future work.
  • Assume scale: Don't recommend distributed systems for app serving 100 users. Match arch to actual req.

  • security-audit-codebase — security-focused code + config review
  • configure-git-repository — repo structure + conventions
  • design-serialization-schema — data schema design + evolution
  • review-data-analysis — review of analytical correctness (complementary perspective)

GitHub 저장소

pjt222/agent-almanac
경로: i18n/caveman-ultra/skills/review-software-architecture
0
agentsagentskillsai-assisted-developmentclaude-codeskillsteams

연관 스킬

executing-plans

디자인

executing-plans 스킬은 검토 체크포인트가 포함된 통제된 배치로 실행할 완전한 구현 계획이 있을 때 사용합니다. 이 스킬은 계획을 불러와 비판적으로 검토한 후, 소규모 배치(기본값 3개 작업)로 작업을 실행하면서 각 배치 사이에 진행 상황을 아키텍트 검토를 위해 보고합니다. 이를 통해 내재된 품질 관리 체크포인트를 갖춘 체계적인 구현이 보장됩니다.

스킬 보기

requesting-code-review

디자인

이 스킬은 코드 변경 사항을 요구 사항에 따라 분석하기 위해 코드 리뷰어 하위 에이전트를 호출합니다. 작업 완료 후, 주요 기능 구현 후, 또는 메인 브랜치에 병합하기 전에 사용해야 합니다. 이 리뷰는 현재 구현체와 원래 계획을 비교하여 문제를 조기에 발견하는 데 도움이 됩니다.

스킬 보기

connect-mcp-server

디자인

이 스킬은 개발자들이 HTTP, stdio 또는 SSE 전송 방식을 통해 MCP 서버를 Claude Code에 연결하는 포괄적인 가이드를 제공합니다. GitHub, Notion 및 사용자 정의 API와 같은 외부 서비스를 통합하기 위한 설치, 구성, 인증 및 보안을 다룹니다. MCP 통합 설정, 외부 도구 구성 또는 Claude의 모델 컨텍스트 프로토콜 작업 시 활용하세요.

스킬 보기

web-cli-teleport

디자인

이 스킬은 작업 분석을 기반으로 개발자가 Claude Code 웹 인터페이스와 CLI 인터페이스 중 선택할 수 있도록 돕고, 두 환경 간 원활한 세션 텔레포트를 가능하게 합니다. 웹, CLI 또는 모바일 환경 전환 시 세션 상태와 컨텍스트를 관리하여 워크플로를 최적화합니다. 다양한 단계에서 서로 다른 도구가 필요한 복잡한 프로젝트에 사용하세요.

스킬 보기