acc-create-factory
Generates DDD Factory for PHP 8.5. Creates factories for complex domain object instantiation with validation and encapsulated creation logic. Includes unit tests.
Best use case
acc-create-factory is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Generates DDD Factory for PHP 8.5. Creates factories for complex domain object instantiation with validation and encapsulated creation logic. Includes unit tests.
Teams using acc-create-factory 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
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/acc-create-factory/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How acc-create-factory Compares
| Feature / Agent | acc-create-factory | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Generates DDD Factory for PHP 8.5. Creates factories for complex domain object instantiation with validation and encapsulated creation logic. 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
# Factory Generator
Generate DDD-compliant Factories for complex domain object creation.
## Factory Characteristics
- **Encapsulates Creation**: Hides complex instantiation logic
- **Validates Input**: Ensures valid object creation
- **Named Constructors**: Provides semantic creation methods
- **Domain Layer**: Lives in Domain, no infrastructure dependencies
- **Returns Valid Objects**: Never creates invalid domain objects
- **Static or Instance**: Static for simple, instance for dependencies
## When to Use Factory
| Scenario | Example |
|----------|---------|
| Complex construction logic | `OrderFactory::createFromCart()` |
| Multiple creation paths | `User::register()`, `User::createAdmin()` |
| Aggregate creation | `PolicyFactory::createWithCoverage()` |
| Reconstruction from persistence | `OrderFactory::reconstitute()` |
| Creation with validation | `InvoiceFactory::create()` |
---
## Generation Process
### Step 1: Determine Factory Type
- **Static Factory**: No dependencies, simple validation
- **Instance Factory**: Needs domain services or repositories
### Step 2: Generate Factory
**Path:** `src/Domain/{BoundedContext}/Factory/`
1. `{Entity}Factory.php` — Main factory class
### Step 3: Define Creation Methods
1. `create()` — Primary creation with validation
2. `createFrom{Source}()` — Creation from other objects
3. `reconstitute()` — Reconstruction from persistence (no validation)
### Step 4: Generate Tests
**Path:** `tests/Unit/Domain/{BoundedContext}/Factory/`
---
## File Placement
| Component | Path |
|-----------|------|
| Factory | `src/Domain/{BoundedContext}/Factory/` |
| Unit Tests | `tests/Unit/Domain/{BoundedContext}/Factory/` |
---
## Naming Conventions
| Pattern | Example |
|---------|---------|
| Factory Class | `{EntityName}Factory` |
| Create Method | `create()`, `createFrom{Source}()` |
| Named Constructor | `create{Variant}()` |
| Reconstitute | `reconstitute()` |
| Validation | `validate{Aspect}()` |
---
## Quick Template Reference
### Static Factory
```php
final class {Entity}Factory
{
public static function create({parameters}): {Entity}
{
self::validate({parameters});
return new {Entity}({constructorArgs});
}
public static function createFrom{Source}({SourceType} $source): {Entity}
{
return new {Entity}({mappedArgs});
}
public static function reconstitute({allFields}): {Entity}
{
return new {Entity}({allArgs});
}
private static function validate({parameters}): void
{
{validationLogic}
}
}
```
### Instance Factory
```php
final readonly class {Entity}Factory
{
public function __construct(
private {DomainService} $service,
private {Repository} $repository
) {}
public function create({parameters}): {Entity}
{
{creationLogicWithDependencies}
}
}
```
---
## Anti-patterns to Avoid
| Anti-pattern | Problem | Solution |
|--------------|---------|----------|
| Infrastructure in Factory | DB calls in factory | Keep pure domain logic |
| No Validation | Creates invalid objects | Validate before creation |
| Too Many Parameters | Hard to use | Use Value Objects, Builder |
| Mutable Factory | Stateful creation | Make stateless or readonly |
| Missing Reconstitute | Can't hydrate from DB | Add reconstitute method |
---
## References
For complete PHP templates and examples, see:
- `references/templates.md` — Static Factory, Instance Factory, Test templates
- `references/examples.md` — Order, User, Policy factory examples and testsRelated Skills
mcp-create-declarative-agent
Skill converted from mcp-create-declarative-agent.prompt.md
kitt-create-slash-commands
Expert guidance for creating slash commands. Use when working with slash commands, creating custom commands, understanding command structure, or learning YAML configuration.
kitt-create-plans
Create hierarchical project plans optimized for solo agentic development. Use when planning projects, phases, or tasks that the AI agent will execute. Produces agent-executable plans with verification criteria, not enterprise documentation. Handles briefs, roadmaps, phase plans, and context handoffs.
create-workflow
Create Jazz workflow automation files (WORKFLOW.md). Use this for scheduling Jazz agents to run recurring tasks. For OS-level scripts/commands, use create-system-routine.
create-rule
Create persistent AI agent rules and instructions. Use when you want to create a rule, add coding standards, set up project conventions, configure file-specific patterns, or create AGENTS.md/GEMINI.md rule files across Cursor, Gemini CLI, or Codex.
create-prompt
Expert prompt engineering for creating effective prompts for Claude, GPT, and other LLMs. Use when writing system prompts, user prompts, few-shot examples, or optimizing existing prompts for better performance.
create-expert-skill
Create production-ready skills from expert knowledge. Extracts domain expertise and system ontologies, uses scripts for deterministic work, loads knowledge progressively. Use when building skills that must work reliably in production.
create-event-handlers
Sets up RabbitMQ event publishers and consumers following ModuleImplementationGuide.md Section 9. RabbitMQ only (no Azure Service Bus). Creates publishers with DomainEvent (tenantId preferred), consumers with handlers, naming {domain}.{entity}.{action}, required fields (id, type, version, timestamp, tenantId, source, data). Use when adding event-driven communication, async workflows, or integrating via events.
create-custom-prompt
Prompt for creating custom prompt files
create-assistant
Create and configure Vapi voice AI assistants with models, voices, transcribers, tools, hooks, and advanced settings. Use when building voice agents, phone bots, customer support assistants, or any conversational AI that handles phone or web calls.
create-agents-md
Create or rewrite AGENTS.md files for Open Mercato packages and modules. Use this skill when adding a new package, creating a new module, or when an existing AGENTS.md needs to be created or refactored. Ensures prescriptive tone, MUST rules, checklists, and consistent structure across all agent guidelines.
create-agent-with-sanity-context
Build AI agents with structured access to Sanity content via Context MCP. Covers Studio setup, agent implementation, and advanced patterns like client-side tools and custom rendering.