mcpbeat Sign in

Architecture Paradigms Skill for Claude

Selects and routes to the right architecture paradigm. Use when choosing patterns for a new system or comparing trade-offs before making architecture decisions.

2k tokens
context cost
the whole folder, loaded on every use
1
files
instructions only
0
copies elsewhere
how many repositories repackaged it
324
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/athola/claude-night-market --skill architecture-paradigms

The instruction itself

12 sections, as written by the author

When NOT To Use

  • The paradigm is already chosen, so go straight to that paradigm's skill
  • Reviewing an existing design against its ADRs (use

pensive:architecture-review)

Table of Contents

  • Quick Scenario Router
  • 3-Step Selection Workflow
  • Available Paradigm Skills
  • Integration with Other Skills
  • Exit Criteria

Architecture Paradigm Router

This skill helps you select the right architecture paradigm(s) for your system, then routes you to the specific paradigm skill for implementation details.

Quick Scenario Router

Match your needs to the recommended paradigm:

| Your Scenario | Primary Paradigm | Load Skill |

|---------------|------------------|------------|

| Enterprise app with multiple teams | Microservices or Modular Monolith | architecture-paradigm-microservices or architecture-paradigm-modular-monolith |

| Complex business rules & testing | Functional Core, Imperative Shell | architecture-paradigm-functional-core |

| Real-time/event processing | Event-Driven Architecture | architecture-paradigm-event-driven |

| Legacy system modernization | Hexagonal (Ports & Adapters) | architecture-paradigm-hexagonal |

| Cloud-native/bursty workloads | Serverless | architecture-paradigm-serverless |

| ETL/data processing pipeline | Pipeline Architecture | architecture-paradigm-pipeline |

| Simple CRUD app | Layered Architecture | architecture-paradigm-layered |

| Command/query separation | CQRS and Event Sourcing | architecture-paradigm-cqrs-es |

| Rich business rules to model | Domain-Driven Design | architecture-paradigm-domain-driven |

One of these is not like the others. Domain-Driven Design answers

"what are the concepts and what do we call them." The rest answer "where

does the code go." DDD composes with a structural paradigm (commonly

layered, hexagonal, or modular monolith) rather than competing with it, so

selecting it does not mean deselecting one of the others.

3-Step Selection Workflow

Step 1: Define Your Needs

Primary Concerns (select all that apply):

  • Testability: Isolate business logic → functional-core or hexagonal
  • Team Autonomy: Independent deployment → microservices or modular-monolith
  • Infrastructure Flexibility: Swap databases/frameworks → hexagonal
  • Real-time Scaling: Variable loads with events → event-driven or space-based
  • Simplicity: Maintainable without complexity → layered or modular-monolith
  • Legacy Integration: Work with existing systems → hexagonal or microkernel

System Context:

  • Team Size: < 5 → Layered/Functional Core | 5-15 → Modular Monolith | 15-50 → Microservices | 50+ → Microservices/Space-Based
  • Domain Complexity: Simple → Layered | Moderate → Hexagonal/Modular Monolith | Complex → Functional Core/CQRS | Highly Complex → Microservices/Event-Driven

Step 2: Evaluate Paradigms

Based on your needs from Step 1, review these options:

For Testability & Business Logic

  • Load architecture-paradigm-functional-core - Isolates business logic from infrastructure
  • Load architecture-paradigm-hexagonal - Clear domain/infrastructure boundaries

For Team Autonomy

  • Load architecture-paradigm-microservices - Independent deployment and scaling
  • Load architecture-paradigm-modular-monolith - Team autonomy without distributed complexity

For Infrastructure Flexibility

  • Load architecture-paradigm-hexagonal - Swap infrastructure without domain changes

For Simplicity & Maintainability

  • Load architecture-paradigm-layered - Simple, well-understood separation

For Rich Business Rules

  • Load architecture-paradigm-domain-driven - Models the business in its

own language. Pair it with whichever structural paradigm you picked

above; it does not replace one. Skip it when the domain is CRUD over a

form, where the model would just be the schema under a new name.

For Real-time Event Processing

  • Load architecture-paradigm-event-driven - Scalable, decoupled processing
  • Load architecture-paradigm-space-based - In-memory data grids for linear scalability

For Legacy Integration

  • Load architecture-paradigm-microkernel - Plugin architecture for extensible platforms
  • Load architecture-paradigm-hexagonal - Adapters for external systems

Step 3: Load Paradigm Skill for Implementation

Once you've selected your paradigm(s), load the specific skill for detailed guidance:

# Example: You selected Hexagonal Architecture
Skill(archetypes:architecture-paradigm-hexagonal)

The individual paradigm skill provides:

  • ✅ Complete implementation guide
  • ✅ ADR templates
  • ✅ Migration checklist
  • ✅ Code examples
  • ✅ Testing strategies
  • ✅ Risk assessments

Available Paradigm Skills

| Paradigm | Complexity | Team Size | Best For | Skill Name |

|----------|------------|-----------|----------|------------|

| Functional Core | Medium | Small-Large | Complex business logic | architecture-paradigm-functional-core |

| Hexagonal | Medium | Small-Large | Infrastructure changes | architecture-paradigm-hexagonal |

| Layered | Low | Small-Medium | Simple domains | architecture-paradigm-layered |

| Modular Monolith | Medium | Medium-Large | Evolving systems | architecture-paradigm-modular-monolith |

| Microservices | High | Large | Complex domains | architecture-paradigm-microservices |

| Event-Driven | High | Medium-Large | Real-time processing | architecture-paradigm-event-driven |

| CQRS and ES | High | Medium-Large | Audit trails | architecture-paradigm-cqrs-es |

| Service-Based | Medium | Medium | Coarse-grained services | architecture-paradigm-service-based |

| Serverless | Medium | Small-Medium | Cloud-native/bursty | architecture-paradigm-serverless |

| Microkernel | Medium | Small-Medium | Plugin systems | architecture-paradigm-microkernel |

| Space-Based | High | Large | Linear scalability | architecture-paradigm-space-based |

| Pipeline | Low | Small-Medium | ETL workflows | architecture-paradigm-pipeline |

| Client-Server | Low | Small | Traditional apps | architecture-paradigm-client-server |

| Domain-Driven Design | Medium | Small-Large | Rich business rules (composes with the above) | architecture-paradigm-domain-driven |

Integration with Other Skills

  • Architecture Review: Use this skill first to select paradigms, then /architecture-review for evaluation
  • Implementation Planning: Select paradigms here, then /writing-plans for detailed task breakdown
  • Refactoring: Identify target paradigms here, then use paradigm-specific skills for migration strategies

Exit Criteria

  • [ ] At least one paradigm is selected with clear rationale
  • [ ] Specific paradigm skill has been loaded for detailed guidance
  • [ ] Ready to create ADR or implementation plan

Next Steps

  • Load the specific paradigm skill - Use Skill(archetypes:architecture-paradigm-NAME)
  • Generate an ADR - Use the paradigm's ADR templates
  • Create implementation plan - Use paradigm's migration checklist
  • Set up monitoring - Track success metrics from paradigm guidance

Other skills for the same job

different authors, same section of the catalogue
Doc Coauthoring
by anthropics
vendor ×10

Guide users through a structured workflow for co-authoring documentation. Use when user wants to write documentation, proposals, technical specs, decision docs, or similar structured content. This workflow helps users efficiently transfer context, refine content through iteration, and verify the doc works for readers. Trigger when user mentions writing docs, creating proposals, drafting specs, or similar documentation tasks.

4k tokens
File Organizer
by frostant
×10

Intelligently organizes your files and folders across your computer by understanding context, finding duplicates, suggesting better structures, and automating cleanup tasks. Reduces cognitive load and keeps your digital workspace tidy without manual effort.

3k tokens
Domain Name Brainstormer
by frostant
×8

Generates creative domain name ideas for your project and checks availability across multiple TLDs (.com, .io, .dev, .ai, etc.). Saves hours of brainstorming and manual checking.

1k tokens
Brainstorming
by ZhanlinCui
×4

You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation.

626 tokens
Planning With Files
by ZhanlinCui
×3

Implements Manus-style file-based planning for complex tasks. Creates task_plan.md, findings.md, and progress.md. Use when starting complex multi-step tasks, research projects, or any task requiring >5 tool calls.

9k tokens scripts
Scientific Brainstorming
by christophacham
×3

Creative research ideation and exploration. Use for open-ended brainstorming sessions, exploring interdisciplinary connections, challenging assumptions, or identifying research gaps. Best for early-stage research planning when you do not have specific observations yet. For formulating testable hypotheses from data use hypothesis-generation.

5k tokens
GitHub Project Management
by ComeOnOliver
×3

Comprehensive GitHub project management with swarm-coordinated issue tracking, project board automation, and sprint planning

14k tokens
Grill Me
by ComeOnOliver
×3

Interview the user relentlessly about a plan or design until reaching shared understanding, resolving each branch of the decision tree. Use when user wants to stress-test a plan, get grilled on their design, or mentions "grill me".

3k tokens

How to use it

Copy the folder

Take athola/architecture-paradigms from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.