Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

Back to skills

Review Software Architecture

ASecurity

Conduct system-level software architecture reviews assessing component

3 stars
0 votes
0 copies
0 views
Added 9/20/2026
code-qualityjavascripttypescriptpythongojavabashsqlrefactoringgitapi

Works with

cursorcliapi

Security Analysis

A100/100

Scanned 9/20/2026

Install to Claude Code

$npx -y skills add ruskicoder/system-prompts --skill review-software-architecture --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Review Software Architecture?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Review Software Architecture
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ruskicoder-review-software-architecture-73646c18/badge)](https://www.skillsdirectory.com/skills/ruskicoder-review-software-architecture-73646c18)

More formats (shields.io, HTML) on the badges page.

Download Zip
Files
SKILL.md
---
name: review-software-architecture
description: Conduct system-level software architecture reviews assessing component
  coupling, cohesion, SOLID adherence, API contracts, data model design, operational
  scalability, and prioritized technical debt.
argument-hint: <codebase path, ADR, or architecture RFC>
---

<!-- Generated from skills/review-software-architecture.md by tools/generate_integrations.py. Edit the source file, not this one. -->

# Skill: Software Architecture Review (Review Software Architecture)

## Purpose
Review software architecture at the system level for coupling, cohesion, SOLID principles, API & data model design, scalability, operational reliability, and technical debt.

## Installation & Usage Options

### Via LobeHub Market CLI
```bash
# Register agent if needed
npx -y @lobehub/market-cli register --name "Antigravity" --source antigravity

# Install to custom skills directory
npx -y @lobehub/market-cli skills install pjt222-agent-almanac-review-software-architecture --dir skills

# Install for specific agent platform
npx -y @lobehub/market-cli skills install pjt222-agent-almanac-review-software-architecture --agent codex
```

### Native Orchestrator Loading
```markdown
# IDE Native syntax
#[[file:skills/review-software-architecture.md]]

# CLI reference
cat skills/review-software-architecture.md
```

## When to Use
- Evaluating a proposed architecture before implementation begins
- Assessing an existing system for scalability, maintainability, or security
- Reviewing Architecture Decision Records (ADRs) and design RFCs
- Performing a technical debt and code churn audit
- Evaluating readiness for significant scale-up or multi-tenant expansion
- Differentiating system-level architectural analysis from line-by-line PR reviews

## Inputs
- **Required**: System codebase or architecture documentation (diagrams, ADRs, README, contracts)
- **Required**: Context about system purpose, scale, and operating constraints
- **Optional**: Non-functional requirements (SLAs, latency, throughput, availability targets)
- **Optional**: Team size, skill composition, and deployment topology
- **Optional**: Known pain points or critical hotspots

## Tools & Prerequisites
- Codebase exploration tools (`grep_search`, `list_dir`, `view_file`)
- Dependency graph / circularity analyzers (e.g. `madge`, `pydeps`, `cargo-depgraph`)
- Git history churn analysis commands (`git log --format=format: --name-only | sort | uniq -c | sort -nr`)

## Step-by-Step Procedure

### Step 1: Map System Boundaries & Context
1. Map external dependencies, databases, caches, and communication protocols:
   ```markdown
   | Dependency | Type | Criticality | Operational Notes |
   |------------|------|-------------|-------------------|
   | PostgreSQL | RDBMS | Critical | Primary transactional state |
   | Redis | Cache / Queue | High | Session caching & rate limiting |
   | Kafka / RabbitMQ | Event Bus | Critical | Asynchronous event distribution |
   | Stripe / Auth0 | External API | High | Third-party vendor integration |
   ```
2. Identify architectural patterns in use (e.g., Clean/Hexagonal Architecture, Modular Monolith, Microservices, Event-Driven).

### Step 2: Structural Quality (Coupling & Cohesion)

#### Coupling Assessment
Evaluate inter-module dependencies and direction of flow:
- [ ] **Directionality**: Do dependencies flow inward toward domain models without circular references?
- [ ] **Contract Boundaries**: Do modules communicate through explicit interfaces/DTOs or directly touch internal tables/state?
- [ ] **Shared State**: Is mutable global state shared between separate components?
- [ ] **Database Coupling**: Do multiple services perform direct writes to the same database tables?

```bash
# Circular dependency detection (JavaScript / TypeScript)
npx madge --circular src/

# Python cross-package dependency check
grep -rn "^from app\." --include="*.py" | sort | uniq -c | sort -rn | head -20
```

#### Cohesion Assessment
Evaluate whether each component has a clear, focused responsibility:
- [ ] **Single Responsibility**: Does each module/class address only one domain concern?
- [ ] **File / Class Size**: Are there monolithic classes (>500 lines) accumulating multiple distinct workflows?
- [ ] **God Objects**: Is there a central orchestrator or manager that every other component depends upon?

| Coupling Level | Description | Status / Action |
|---|---|---|
| **Low (Optimal)** | Modules communicate via abstract contracts / interfaces | ✅ Target state |
| **Medium** | Modules share static data models / DTO libraries | ⚠️ Acceptable for shared types |
| **High (Concern)** | Modules directly query each other's internal persistence | ❌ Requires interface encapsulation |
| **Pathological** | Modules mutate each other's in-memory state or circular calls | 🚫 Critical refactoring needed |

### Step 3: SOLID & Design Principle Adherence
- **Single Responsibility (SRP)**: Each class/service has one reason to change.
- **Open/Closed (OCP)**: New features can be plugged in via extensions/strategies without altering base code.
- **Liskov Substitution (LSP)**: Derived implementations fulfill base contracts without breaking consumers.
- **Interface Segregation (ISP)**: Clients are not forced to depend on methods they do not use.
- **Dependency Inversion (DIP)**: High-level business logic depends on abstractions, not concrete database/network drivers.

### Step 4: API & Data Model Design Review
1. **Contract Consistency**: Predictable HTTP status codes, error payload schemas, and serialization formats.
2. **Idempotency & Safety**: Mutation operations implement idempotency keys or transactional boundaries.
3. **Pagination & Query Efficiency**: Large datasets enforce cursor or keyset pagination; prevent full table scans.
4. **Data Normalization vs Denormalization**: Ensure transactional models maintain referential integrity while read models are optimized for querying.

### Step 5: Scalability & Operational Reliability
1. **Stateless Compute**: Ensure backend application instances hold no in-memory state that blocks horizontal scaling.
2. **Resilience & Fault Isolation**: Circuit breakers, retry policies with exponential backoff, and dead-letter queues.
3. **Observability**: Structured JSON logging with trace IDs across service boundaries; health checks (`/healthz`, `/livez`).

### Step 6: Prioritized Architecture Decision & Debt Report
Synthesize findings into an actionable report:
1. **Executive Summary**: Architecture health assessment and top risks.
2. **Hotspots & Risk Matrix**: Impact (High/Medium/Low) vs Effort (High/Medium/Low).
3. **Refactoring & Migration Roadmap**: Phased remediation steps with rollback strategies.

Attribution

ruskicoderruskicoder
View sourceMore from ruskicoder →
SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Related Skills

Caveman Review

Ultra-compressed code review comments. Cuts noise from PR feedback while preserving the actionable signal. Each comment is one line: location, problem, fix. Use when user says "review this PR", "code review", "review the diff", "/review", or invokes /caveman-review. Auto-triggers when reviewing pull requests.

1023331 votes

Caveman Commit

Ultra-compressed commit message generator. Cuts noise from commit messages while preserving intent and reasoning. Conventional Commits format. Subject ≤50 chars, body only when "why" isn't obvious. Use when user says "write a commit", "commit message", "generate commit", "/commit", or invokes /caveman-commit. Auto-triggers when staging changes.

1023331 votes

Verification Loop

一个全面的 Claude Code 会话验证系统。

2456590 votes

Springboot Verification

Verification loop for Spring Boot projects: build, static analysis, tests with coverage, security scans, and diff review before release or PR.

2456590 votes

Django Verification

Verification loop for Django projects: migrations, linting, tests with coverage, security scans, and deployment readiness checks before release or PR.

2456590 votes
View all in code-quality →