create-strategy

Generates Strategy pattern for PHP 8.4. Creates interchangeable algorithm families with context class, strategy interface, and concrete implementations. Includes unit tests.

59 stars

Best use case

create-strategy is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Generates Strategy pattern for PHP 8.4. Creates interchangeable algorithm families with context class, strategy interface, and concrete implementations. Includes unit tests.

Teams using create-strategy should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/create-strategy/SKILL.md --create-dirs "https://raw.githubusercontent.com/dykyi-roman/awesome-claude-code/main/skills/create-strategy/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/create-strategy/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How create-strategy Compares

Feature / Agentcreate-strategyStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Generates Strategy pattern for PHP 8.4. Creates interchangeable algorithm families with context class, strategy interface, and concrete implementations. Includes unit tests.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# Strategy Pattern Generator

Creates Strategy pattern infrastructure for interchangeable algorithm families.

## When to Use

| Scenario | Example |
|----------|---------|
| Multiple algorithms | Pricing, tax, shipping calculation |
| Runtime selection | Payment processing based on amount |
| Avoiding conditionals | Replace switch/if-else chains |
| Algorithm families | Sorting, compression, encryption |

## Component Characteristics

### StrategyInterface
- Defines algorithm contract
- Single method for execution
- Supports method for selection

### Strategy Resolver
- Resolves appropriate strategy
- Based on input criteria
- Falls back to default

### Concrete Strategies
- Implement specific algorithms
- Interchangeable via interface
- Encapsulate algorithm details

---

## Generation Process

### Step 1: Generate Strategy Interface

**Path:** `src/Domain/{BoundedContext}/Strategy/`

1. `{Name}StrategyInterface.php` — Algorithm contract with supports method

### Step 2: Generate Concrete Strategies

**Path:** `src/Domain/{BoundedContext}/Strategy/`

1. `{Variant1}{Name}Strategy.php` — First algorithm implementation
2. `{Variant2}{Name}Strategy.php` — Second algorithm implementation
3. `Default{Name}Strategy.php` — Fallback implementation

### Step 3: Generate Resolver

**Path:** `src/Domain/{BoundedContext}/Strategy/`

1. `{Name}StrategyResolver.php` — Strategy selection logic

### Step 4: Generate Service (Optional)

**Path:** `src/Domain/{BoundedContext}/Strategy/`

1. `{Name}Service.php` — Facade using resolver

### Step 5: Generate Tests

1. `{Variant}{Name}StrategyTest.php` — Individual strategy tests
2. `{Name}StrategyResolverTest.php` — Resolver tests

---

## File Placement

| Component | Path |
|-----------|------|
| Strategy Interface | `src/Domain/{BoundedContext}/Strategy/` |
| Concrete Strategies | `src/Domain/{BoundedContext}/Strategy/` |
| Resolver | `src/Domain/{BoundedContext}/Strategy/` |
| Unit Tests | `tests/Unit/Domain/{BoundedContext}/Strategy/` |

---

## Naming Conventions

| Component | Pattern | Example |
|-----------|---------|---------|
| Interface | `{Name}StrategyInterface` | `PricingStrategyInterface` |
| Concrete | `{Variant}{Name}Strategy` | `BulkPricingStrategy` |
| Context | `{Name}Context` | `PricingContext` |
| Resolver | `{Name}StrategyResolver` | `PricingStrategyResolver` |
| Test | `{ClassName}Test` | `BulkPricingStrategyTest` |

---

## Quick Template Reference

### Strategy Interface

```php
interface {Name}StrategyInterface
{
    public function execute({InputType} $input): {OutputType};
    public function supports({InputType} $input): bool;
}
```

### Concrete Strategy

```php
final readonly class {Variant}{Name}Strategy implements {Name}StrategyInterface
{
    public function execute({InputType} $input): {OutputType}
    {
        {algorithmImplementation}
    }

    public function supports({InputType} $input): bool
    {
        return {condition};
    }
}
```

### Strategy Resolver

```php
final readonly class {Name}StrategyResolver
{
    public function __construct(
        private iterable $strategies,
        private {Name}StrategyInterface $defaultStrategy
    ) {}

    public function resolve({InputType} $input): {Name}StrategyInterface
    {
        foreach ($this->strategies as $strategy) {
            if ($strategy->supports($input)) {
                return $strategy;
            }
        }
        return $this->defaultStrategy;
    }
}
```

---

## Usage Example

```php
// Configure strategies
$resolver = new PricingStrategyResolver(
    strategies: [
        new BulkPricingStrategy(),      // 15% off for 100+ items
        new PromotionalPricingStrategy(), // Active promotion discount
        new VipPricingStrategy(),        // VIP customer discount
    ],
    defaultStrategy: new RegularPricingStrategy()
);

// Use in service
$strategy = $resolver->resolve($pricingContext);
$price = $strategy->calculatePrice($pricingContext);
```

---

## Common Strategy Examples

| Domain | Strategies |
|--------|------------|
| Pricing | Regular, Bulk, Promotional, VIP |
| Shipping | Standard, Express, Free, International |
| Tax | US, EU, Exempt, Zero-rated |
| Payment | Credit Card, PayPal, Bank Transfer |
| Discount | Percentage, Fixed, Buy-One-Get-One |

---

## Anti-patterns to Avoid

| Anti-pattern | Problem | Solution |
|--------------|---------|----------|
| Stateful Strategies | Side effects | Make strategies readonly |
| Fat Context | Too much coupling | Minimal context interface |
| Missing Resolver | Manual strategy selection | Use resolver pattern |
| Over-engineering | Single algorithm | Don't use pattern |
| Leaky Abstraction | Strategy-specific types | Use shared interfaces |

---

## References

For complete PHP templates and examples, see:
- `references/templates.md` — Strategy Interface, Concrete Strategy, Resolver, Context templates
- `references/examples.md` — Pricing, Shipping, Tax strategies and tests

Related Skills

create-visitor

59
from dykyi-roman/awesome-claude-code

Generates Visitor pattern for PHP 8.4. Creates operations on object structures without modifying element classes, with visitor interface, concrete visitors, and visitable elements. Includes unit tests.

create-value-object

59
from dykyi-roman/awesome-claude-code

Generates DDD Value Objects for PHP 8.4. Creates immutable, self-validating objects with equality comparison. Includes unit tests.

create-use-case

59
from dykyi-roman/awesome-claude-code

Generates Application Use Cases for PHP 8.4. Creates orchestration services that coordinate domain objects, handle transactions, and dispatch events. Includes unit tests.

create-unit-test

59
from dykyi-roman/awesome-claude-code

Generates PHPUnit unit tests for PHP 8.4. Creates isolated tests with AAA pattern, proper naming, attributes, and one behavior per test. Supports Value Objects, Entities, Services.

create-unit-of-work

59
from dykyi-roman/awesome-claude-code

Generates Unit of Work pattern components for PHP 8.4. Creates transactional consistency infrastructure with aggregate tracking, flush/rollback, domain event collection, and unit tests.

create-timeout

59
from dykyi-roman/awesome-claude-code

Generates Timeout pattern components for PHP 8.4. Creates execution time limit infrastructure with configurable timeouts, fallback support, stream timeouts, and unit tests.

create-test-double

59
from dykyi-roman/awesome-claude-code

Generates test doubles (Mocks, Stubs, Fakes, Spies) for PHP 8.4. Creates appropriate double type based on testing needs with PHPUnit MockBuilder patterns.

create-test-builder

59
from dykyi-roman/awesome-claude-code

Generates Test Data Builder and Object Mother patterns for PHP 8.4. Creates fluent builders with sensible defaults and factory methods for test data creation.

create-template-method

59
from dykyi-roman/awesome-claude-code

Generates Template Method pattern for PHP 8.4. Creates abstract algorithm skeleton with customizable steps, allowing subclasses to override specific parts without changing structure. Includes unit tests.

create-structured-logger

59
from dykyi-roman/awesome-claude-code

Generates Structured Logger for PHP 8.4. Creates PSR-3 structured logging setup with Monolog processors, correlation ID propagation, and context middleware. Includes unit tests.

create-state

59
from dykyi-roman/awesome-claude-code

Generates State pattern for PHP 8.4. Creates state machines with context, state interface, and concrete states for behavior changes. Includes unit tests.

create-specification

59
from dykyi-roman/awesome-claude-code

Generates DDD Specification for PHP 8.4. Creates reusable business rule objects for validation, filtering, and querying with composite pattern support. Includes unit tests.