Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
bobmatnyc avatar

Software Patterns

  • 261 installs
  • 63 repo stars
  • Updated July 18, 2026
  • bobmatnyc/claude-mpm-skills

Apply proven design patterns when structuring modules, APIs, state, and cross-cutting concerns so new features stay consistent and maintainable.

About

Software-patterns skill helps Claude recommend and apply established design and architectural patterns during implementation. It clarifies tradeoffs, naming, layering, and refactor targets so SaaS, API, and CLI codebases stay coherent, testable, and easier to extend without pattern sprawl.

  • Names common GoF and architectural patterns
  • Guides when to apply vs avoid patterns
  • Maps patterns to module boundaries
  • Reduces over-engineering and duplication
  • Aligns implementations with team conventions

Software Patterns by the numbers

  • 261 all-time installs (skills.sh)
  • Ranked #298 of 1,352 Code Review & Quality skills by installs in the Skillselion catalog
  • Data as of Aug 1, 2026 (Skillselion catalog sync)
npx skills add https://github.com/bobmatnyc/claude-mpm-skills --skill software-patterns

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs261
repo stars63
Last updatedJuly 18, 2026
Repositorybobmatnyc/claude-mpm-skills

What it does

Apply proven design patterns when structuring modules, APIs, state, and cross-cutting concerns so new features stay consistent and maintainable.

Files

SKILL.mdMarkdownGitHub ↗

Software Patterns Primer

Overview

Architectural patterns solve specific structural problems. This skill provides a decision framework for when to apply each pattern, not a catalog to memorize.

Core philosophy: Patterns solve problems. No problem? No pattern needed.

When to Use This Skill

Activate when:

  • Designing a new system or major feature
  • Adding external service integrations
  • Code becomes difficult to test or modify
  • Services start calling each other in circles
  • Failures in one component cascade to others
  • Business logic scatters across multiple locations

Pattern Hierarchy

Foundational (Apply by Default)

These patterns provide the structural foundation for maintainable systems. Apply unless you have specific reasons not to.

PatternProblem SolvedSignal to Apply
Dependency InjectionTight coupling, untestable codeClasses instantiate their own dependencies
Service-Oriented ArchitectureMonolithic tangles, unclear boundariesBusiness logic scattered, no clear ownership

DI quick example — before and after:

# BEFORE: tight coupling, hard to test
class OrderService:
    def __init__(self):
        self.db = PostgresDatabase()       # concrete dependency
        self.mailer = SmtpMailer()         # concrete dependency

# AFTER: dependencies injected, easily testable
class OrderService:
    def __init__(self, db: Database, mailer: Mailer):
        self.db = db
        self.mailer = mailer
# In tests: OrderService(db=FakeDatabase(), mailer=FakeMailer())

Situational (Apply When Triggered)

These patterns address specific problems. Don't apply preemptively.

PatternProblem SolvedSignal to Apply
RepositoryData access couplingServices know about database details
Domain EventsCircular dependencies, temporal couplingService A calls B calls C calls A
Anti-Corruption LayerExternal system couplingExternal API changes break your code
Circuit BreakerCascading failuresOne slow service takes down everything

Foundational Patterns DetailSituational Patterns Detail

Quick Decision Tree

Is code hard to test?
├─ Yes → Apply Dependency Injection
└─ No → Continue

Is business logic scattered?
├─ Yes → Apply Service-Oriented Architecture
└─ No → Continue

Do services know database details?
├─ Yes → Apply Repository Pattern
└─ No → Continue

Do services call each other in cycles?
├─ Yes → Apply Domain Events
└─ No → Continue

Does external API change break your code?
├─ Yes → Apply Anti-Corruption Layer
└─ No → Continue

Does one slow service break everything?
├─ Yes → Apply Circuit Breaker
└─ No → Current patterns sufficient

Complete Decision Trees

Implementation Priority

When starting a new system:

1. First: Establish DI container/pattern 2. Second: Define service boundaries (SOA) 3. Third: Add Repository for data access 4. Then: Layer situational patterns as problems emerge

When refactoring existing system:

1. First: Identify the specific pain point 2. Second: Apply the minimal pattern that solves it 3. Third: Validate improvement before adding more

Navigation

Pattern Details

  • [Foundational Patterns](references/foundational-patterns.md): DI and SOA implementation guides, when to deviate
  • [Situational Patterns](references/situational-patterns.md): Repository, Domain Events, ACL, Circuit Breaker details

Decision Support

  • [Decision Trees](references/decision-trees.md): Complete flowcharts for pattern selection
  • [Anti-Patterns](references/anti-patterns.md): Common misapplications and how to recognize them
  • [Code-Smell Signals](references/code-smell-signals.md): Low-level code smells (large switches, nested loops, parameter reassignment, high complexity/coupling) mapped to the architectural problems they signal and the pattern that fixes each — derived from CAST Highlight _multi quality indicators (https://doc.casthighlight.com/)

Implementation

  • [Examples](references/examples.md): Language-agnostic pseudocode for each pattern combination

Red Flags - STOP

STOP when:

  • "Let me add all these patterns upfront" → Apply only what solves current problems
  • "This pattern is best practice" → Best practice for what problem?
  • "We might need this later" → YAGNI - add when needed
  • "Service Locator is simpler" → Hidden dependencies cause testing pain
  • "I'll just call this service directly" → Consider if events would decouple better
  • "External API is stable, no need for ACL" → APIs always change eventually

ALL of these mean: STOP. Identify the specific problem first.

Integration with Other Skills

  • test-driven-development: DI enables testability; TDD validates pattern application
  • systematic-debugging: Clear boundaries (SOA) simplify debugging
  • root-cause-tracing: Well-structured services have clearer call chains

Pattern Combinations

Common effective combinations:

ScenarioPatterns
New microserviceDI + SOA + Repository
External API integrationDI + ACL + Circuit Breaker
Event-driven systemDI + SOA + Domain Events
Data-heavy applicationDI + SOA + Repository + Unit of Work

---

Remember: Patterns exist to solve problems. Start with the problem, not the pattern.

Related skills

Code Review & Qualitybackendfrontend

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.