acc-create-prototype
Installation
SKILL.md
Prototype Pattern Generator
Generate Prototype pattern implementations for PHP 8.4 with proper deep/shallow copy semantics.
Pattern Overview
Prototype creates new objects by cloning existing instances, avoiding costly construction and enabling runtime object configuration.
Generation Templates
1. Basic Prototype with Clone
<?php
declare(strict_types=1);
namespace {Namespace}\Domain\{Context};