review-software-architecture
关于
This skill reviews software architecture for coupling, cohesion, SOLID principles, API design, scalability, and technical debt. It evaluates proposed designs before implementation and assesses existing systems for improvements. Use it for system-level analysis, ADR reviews, and evaluating readiness for scaling.
快速安装
Claude Code
推荐npx skills add pjt222/agent-almanac -a claude-code/plugin add https://github.com/pjt222/agent-almanacgit 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 Level | Description | Example |
|---|---|---|
| Low (good) | Modules communicate through interfaces | Service A calls Service B's API |
| Medium | Modules share data structures | Shared DTO/model library |
| High (concern) | Modules reference each other's internals | Direct database access across modules |
| Pathological | Modules modify each other's internal state | Global 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
| Principle | Question | Red Flags |
|---|---|---|
| Single Responsibility | Does each class/module have one reason to change? | Classes with >5 public methods on unrelated concerns |
| Open/Closed | Can behavior be extended without modifying existing code? | Frequent modifications to core classes for each new feature |
| Liskov Substitution | Can subtypes replace their base types without breaking behavior? | Type checks (instanceof) scattered through consumer code |
| Interface Segregation | Are interfaces focused and minimal? | "Fat" interfaces where consumers implement unused methods |
| Dependency Inversion | Do 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-reviewerfor 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 reviewconfigure-git-repository— repo structure + conventionsdesign-serialization-schema— data schema design + evolutionreview-data-analysis— review of analytical correctness (complementary perspective)
GitHub 仓库
相关推荐技能
executing-plans
设计该Skill用于当开发者提供完整实施计划时,以受控批次方式执行代码实现。它会先审阅计划并提出疑问,然后分批次执行任务(默认每批3个任务),并在批次间暂停等待审查。关键特性包括分批次执行、内置检查点和架构师审查机制,确保复杂系统实现的可控性。
requesting-code-review
设计该Skill可在完成任务、实现主要功能或合并代码前自动调度代码审查子代理,确保实现符合需求和计划。它支持通过指定git SHA范围进行精准的代码变更审查,帮助开发者在关键节点及时发现潜在问题。核心原则是"早审查、勤审查",适用于开发流程的各个关键阶段。
connect-mcp-server
设计这个Skill指导开发者如何将MCP服务器连接到Claude Code,支持HTTP、stdio和SSE三种传输协议。它涵盖了从安装配置到认证安全的完整流程,适用于集成GitHub、Notion、数据库等外部服务。当开发者需要添加集成、配置外部工具或提及MCP相关功能时,这个Skill能提供实用的操作指南。
web-cli-teleport
设计该Skill帮助开发者根据任务特性选择Claude Code的Web或CLI界面,并指导如何在两种环境间无缝迁移会话。它能分析任务复杂度、迭代需求等要素,推荐最优工作界面和工作流。关键特性包括会话状态管理、环境切换指导和上下文优化建议。
