agentsclimarketplace

Design patterns

Skill krzysztofsurdy/code-virtuoso/skills/knowledge/design-patterns

Skills, sub-agents, and playbooks for Claude Code, Cursor, and any Agent Skills-compatible AI coding assistant.

Install
npx -y skills add krzysztofsurdy/code-virtuoso --skill design-patterns

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 20 stars20 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Comprehensive skill for all 26 Gang of Four design patterns with practical implementations and real-world examples. Use when the user asks to apply a design pattern, refactor code using patterns, choose between competing patterns, or review existing pattern usage. Covers creational (Abstract Factory, Builder, Factory Method, Prototype, Singleton, Object Pool), structural (Adapter, Bridge, Composite, Decorator, Facade, Flyweight, Proxy, Private Class Data), and behavioral patterns (Chain of Responsibility, Command, Interpreter, Iterator, Mediator, Memento, Observer, State, Strategy, Template Method, Visitor, Null Object) with real-world examples, trade-offs, and anti-patterns.

SKILL.md

6.1 KB, as published. Nobody here has run it

Design Patterns

A thorough reference covering 26 design patterns organized by intent — creational, structural, and behavioral — featuring PHP 8.3+ implementations, UML guidance, and practical use cases.

Pattern Index

Creational Patterns

  • Abstract Factory — Produce families of related objects without specifying their concrete classes → reference
  • Builder — Assemble complex objects through a step-by-step process → reference
  • Factory Method — Declare an interface for object creation, letting subclasses determine the concrete type → reference
  • Prototype — Duplicate existing objects without coupling to their concrete classes → reference
  • Singleton — Guarantee that a class has exactly one instance → reference
  • Object Pool — Recycle expensive-to-create objects for repeated use → reference

Structural Patterns

  • Adapter — Translate one interface into another that clients expect → reference
  • Bridge — Separate an abstraction from its implementation so both can evolve independently → reference
  • Composite — Arrange objects into tree structures for uniform treatment → reference
  • Decorator — Layer new behaviors onto objects dynamically through wrapping → reference
  • Facade — Offer a streamlined interface to a complex subsystem → reference
  • Flyweight — Minimize memory usage by sharing common state across many objects → reference
  • Proxy — Manage access to an object through a surrogate → reference
  • Private Class Data — Limit access to class attributes → reference

Behavioral Patterns

  • Chain of Responsibility — Route requests through a chain of handlers → reference
  • Command — Represent requests as standalone objects → reference
  • Interpreter — Establish a grammar representation and an interpreter for it → reference
  • Iterator — Walk through elements without revealing the underlying structure → reference
  • Mediator — Tame chaotic dependencies through a central coordinator → reference
  • Memento — Snapshot and restore object state without breaking encapsulation → reference
  • Null Object — Supply a do-nothing default to eliminate null checks → reference
  • Observer — Automatically inform dependents when state changes → reference
  • State — Change behavior when internal state transitions → reference
  • Strategy — Make algorithms interchangeable at runtime → reference
  • Template Method — Outline an algorithm skeleton and let subclasses fill in specific steps → reference
  • Visitor — Introduce operations to objects without altering their classes → reference

When to Use Which Pattern

ProblemPattern
Need to create families of related objectsAbstract Factory
Complex object construction with many optionsBuilder
Want to defer instantiation to subclassesFactory Method
Need copies of complex objectsPrototype
Need exactly one instance globallySingleton
Incompatible interfaces need to work togetherAdapter
Want to vary abstraction and implementation independentlyBridge
Tree structures with uniform treatmentComposite
Add responsibilities dynamically without subclassingDecorator
Simplify a complex subsystem interfaceFacade
Many similar objects consuming too much memoryFlyweight
Control access, add lazy loading, or log accessProxy
Multiple handlers for a request, unknown which handles itChain of Responsibility
Queue, log, or undo operationsCommand
Need to interpret a simple language/grammarInterpreter
Traverse a collection without exposing internalsIterator
Reduce coupling between many communicating objectsMediator
Need undo/snapshot capabilityMemento
One-to-many event notificationObserver
Object behavior depends on its stateState
Need to switch algorithms at runtimeStrategy
Algorithm skeleton with customizable stepsTemplate Method
Add operations to object structures without modificationVisitor

Best Practices

  • Favor composition over inheritance — reach for Decorator, Strategy, or Bridge before resorting to deep class hierarchies
  • Apply patterns to address real problems, not hypothetical ones
  • Leverage PHP 8.3+ features: enums for State, readonly classes for Value Objects, first-class callables for Strategy
  • Combine patterns when it makes sense (e.g., Builder + Fluent Interface, Strategy + Factory Method)
  • Keep pattern implementations minimal — if the pattern introduces more complexity than it resolves, reconsider the approach

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.