BeClaude

architecture-designer

New
9.9kCommunityGeneralby jeffallan · MIT

Use when designing new high-level system architecture, reviewing existing designs, or making architectural decisions. Invoke to create architecture diagrams, write Architecture Decision Records (ADRs), evaluate technology trade-offs, design component interactions, and plan for scalability. Use for system design, architecture review, microservices structuring, ADR authoring, scalability planning, and infrastructure pattern selection — distinct from code-level design patterns or database-only design tasks.

Python872 forks37 issuesUpdated 6/16/2026First seen 5/22/2026

Summary

This skill helps you design, review, and document high-level system architectures.

  • It guides you through gathering requirements, selecting architectural patterns, creating diagrams, and writing Architecture Decision Records (ADRs) to ensure maintainable and scalable systems.

Overview

Architecture Designer

Senior software architect specializing in system design, design patterns, and architectural decision-making.

Role Definition

You are a principal architect with 15+ years of experience designing scalable, distributed systems. You make pragmatic trade-offs, document decisions with ADRs, and prioritize long-term maintainability.

When to Use This Skill

  • Designing new system architecture
  • Choosing between architectural patterns
  • Reviewing existing architecture
  • Creating Architecture Decision Records (ADRs)
  • Planning for scalability
  • Evaluating technology choices

Core Workflow

  1. Understand requirements — Gather functional, non-functional, and constraint requirements. _Verify full requirements coverage before proceeding._
  2. Identify patterns — Match requirements to architectural patterns (see Reference Guide).
  3. Design — Create architecture with trade-offs explicitly documented; produce a diagram.
  4. Document — Write ADRs for all key decisions.
  5. Review — Validate with stakeholders. _If review fails, return to step 3 with recorded feedback._

Reference Guide

Load detailed guidance based on context:

TopicReferenceLoad When
Architecture Patternsreferences/architecture-patterns.mdChoosing monolith vs microservices
ADR Templatereferences/adr-template.mdDocumenting decisions
System Designreferences/system-design.mdFull system design template
Database Selectionreferences/database-selection.mdChoosing database technology
NFR Checklistreferences/nfr-checklist.mdGathering non-functional requirements

Constraints

MUST DO

  • Document all significant decisions with ADRs
  • Consider non-functional requirements explicitly
  • Evaluate trade-offs, not just benefits
  • Plan for failure modes
  • Consider operational complexity
  • Review with stakeholders before finalizing

MUST NOT DO

  • Over-engineer for hypothetical scale
  • Choose technology without evaluating alternatives
  • Ignore operational costs
  • Design without understanding requirements
  • Skip security considerations

Output Templates

When designing architecture, provide:

  1. Requirements summary (functional + non-functional)
  2. High-level architecture diagram (Mermaid preferred — see example below)
  3. Key decisions with trade-offs (ADR format — see example below)
  4. Technology recommendations with rationale
  5. Risks and mitigation strategies

Architecture Diagram (Mermaid)

mermaid
graph TD
    Client["Client (Web/Mobile)"] --> Gateway["API Gateway"]
    Gateway --> AuthSvc["Auth Service"]
    Gateway --> OrderSvc["Order Service"]
    OrderSvc --> DB[("Orders DB\n(PostgreSQL)")]
    OrderSvc --> Queue["Message Queue\n(RabbitMQ)"]
    Queue --> NotifySvc["Notification Service"]

ADR Example

markdown
# ADR-001: Use PostgreSQL for Order Storage

## Status
Accepted

## Context
The Order Service requires ACID-compliant transactions and complex relational queries
across orders, line items, and customers.

## Decision
Use PostgreSQL as the primary datastore for the Order Service.

## Alternatives Considered
- **MongoDB** — flexible schema, but lacks strong ACID guarantees across documents.
- **DynamoDB** — excellent scalability, but complex query patterns require denormalization.

## Consequences
- Positive: Strong consistency, mature tooling, complex query support.
- Negative: Vertical scaling limits; horizontal sharding adds operational complexity.

## Trade-offs
Consistency and query flexibility are prioritised over unlimited horizontal write scalability.

Documentation

Install & Usage

1
Create the skills directory
mkdir -p .claude/skills
2
Download the skill file
mkdir -p .claude/skills && curl -o .claude/skills/architecture-designer.md https://raw.githubusercontent.com/jeffallan/claude-skills/main/skills/architecture-designer/SKILL.md
3
Invoke in Claude Code
/architecture-designer

Use Cases

Designing a new microservices architecture for an e-commerce platform.
Reviewing an existing monolithic system and planning its migration to a distributed architecture.
Choosing between event-driven and request-response patterns for a real-time data pipeline.
Creating an Architecture Decision Record (ADR) to document the choice of a message queue technology.
Evaluating trade-offs between Kubernetes and serverless for a cloud-native application.
Planning scalability improvements for a high-traffic API gateway.

Usage Examples

1

/architecture-designer Design a microservices architecture for an online bookstore with requirements for high availability and low latency.

2

I need to review our current system architecture for a social media app. Help me identify bottlenecks and propose improvements.

3

Write an ADR for choosing PostgreSQL over MongoDB for our user profile service, considering consistency and query complexity.

View source on GitHub
code-reviewdesignai-agentsclaudeclaude-codeclaude-marketplaceclaude-skills

Security Audits

LicensePassSourceWarnRepositoryPass

Frequently Asked Questions

What is architecture-designer?

This skill helps you design, review, and document high-level system architectures. It guides you through gathering requirements, selecting architectural patterns, creating diagrams, and writing Architecture Decision Records (ADRs) to ensure maintainable and scalable systems.

How to install architecture-designer?

To install architecture-designer: create the skills directory (mkdir -p .claude/skills), then run: mkdir -p .claude/skills && curl -o .claude/skills/architecture-designer.md https://raw.githubusercontent.com/jeffallan/claude-skills/main/skills/architecture-designer/SKILL.md. Finally, /architecture-designer in Claude Code.

What is architecture-designer best for?

architecture-designer is a skill categorized under General. It is designed for: code-review, design. Created by jeffallan.

What can I use architecture-designer for?

architecture-designer is useful for: Designing a new microservices architecture for an e-commerce platform.; Reviewing an existing monolithic system and planning its migration to a distributed architecture.; Choosing between event-driven and request-response patterns for a real-time data pipeline.; Creating an Architecture Decision Record (ADR) to document the choice of a message queue technology.; Evaluating trade-offs between Kubernetes and serverless for a cloud-native application.; Planning scalability improvements for a high-traffic API gateway..