create-value-object

Installation
SKILL.md

Value Object Generator

Generate DDD-compliant Value Objects with validation, equality, and tests.

Value Object Characteristics

  • Immutable: final readonly class
  • Self-validating: Validates in constructor
  • Equality by value: equals() method compares values
  • No identity: No ID, compared by content
  • Encapsulates concept: Represents domain concept

Template

<?php

declare(strict_types=1);
Related skills
Installs
5
GitHub Stars
71
First Seen
Mar 10, 2026