Agent Plugins Marketplace
All plugins

laravel-ddd

v1.4.2

Laravel DDD patterns. Opinionated domain-driven design with Actions, DTOs, QueryBuilders, and decision heuristics. Standalone; pairs well with kernel.

Claude Code47 Skills

By Christian Attard1 GitHub starsUpdated 2 hours ago

Directory evidence

Runtimes
Claude Code
Parsed components
47 skill or MCP entries
Source updated
Aug 25, 2026
Manifest status
Canonical path parsed

The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology

Install plugin

Installs for the current user
claude plugin marketplace add IchenDEV/agent-plugin-mkt
claude plugin marketplace update agent-plugin-marketplace
claude plugin install laravel-ddd@agent-plugin-marketplace

Paste and run these commands in a terminal with Claude Code. They add and refresh the PluginsMP catalog, then install this plugin.

The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.

Get the source manually
git clone https://github.com/attac-t/the-foundry

Clone the source repository, then follow its setup instructions to add the plugin to a compatible client. The plugin root is plugins/laravel-ddd/.

Plugin files

plugins/laravel-ddd/
├── .claude-plugin/plugin.json
├── skills/craft-action/SKILL.md
├── skills/craft-collection/SKILL.md
├── skills/craft-concern/SKILL.md
├── skills/craft-context/SKILL.md
├── skills/craft-controller/SKILL.md
├── skills/craft-domain-structure/SKILL.md
├── skills/craft-dto/SKILL.md
├── skills/craft-event-driven-model/SKILL.md
├── skills/craft-guard-clause/SKILL.md
├── skills/craft-job/SKILL.md
├── skills/craft-model/SKILL.md
├── skills/craft-model-state/SKILL.md
├── skills/craft-null-object/SKILL.md
├── skills/craft-query/SKILL.md
├── skills/craft-queueable-action/SKILL.md
├── skills/craft-registry/SKILL.md
├── skills/craft-result/SKILL.md
├── skills/craft-shared-domain/SKILL.md
├── skills/craft-support/SKILL.md
├── skills/craft-test-factory/SKILL.md
├── skills/craft-value-object/SKILL.md
├── skills/craft-viewmodel/SKILL.md
├── skills/decide-abstraction-timing/SKILL.md
├── skills/decide-builder/SKILL.md
├── skills/decide-casts/SKILL.md
├── skills/decide-chunking/SKILL.md
├── skills/decide-composition/SKILL.md
├── skills/decide-dto-vs-array/SKILL.md
├── skills/decide-eager-loading/SKILL.md
├── skills/decide-enum-vs-state/SKILL.md
├── skills/decide-events/SKILL.md
├── skills/decide-extraction/SKILL.md
├── skills/decide-guard-vs-exception/SKILL.md
├── skills/decide-namespacing/SKILL.md
├── skills/decide-pipelines/SKILL.md
├── skills/decide-queuing/SKILL.md
├── skills/decide-registry/SKILL.md
├── skills/decide-streaming/SKILL.md
├── skills/ground-action-composition/SKILL.md
├── skills/ground-consumer-first/SKILL.md
├── skills/ground-domain-evolution/SKILL.md
├── skills/ground-domain-thinking/SKILL.md
├── skills/ground-fail-fast/SKILL.md
├── skills/ground-laravel/SKILL.md
├── skills/ground-pragmatism/SKILL.md
├── skills/ground-type-safety/SKILL.md
└── skills/polish/SKILL.md

Included Skills47

craft-actionskills/craft-action/SKILL.md

Crafting an Action. The heart of business logic.

craft-collectionskills/craft-collection/SKILL.md

Crafting custom collections. Domain pipelines.

craft-concernskills/craft-concern/SKILL.md

Crafting Concerns (traits). Thin wiring, not business logic.

craft-contextskills/craft-context/SKILL.md

Crafting Context Objects. Parameter encapsulation for complex operations.

craft-controllerskills/craft-controller/SKILL.md

Crafting thin controllers. Traffic cops, not business logic.

craft-domain-structureskills/craft-domain-structure/SKILL.md

Crafting Domain Structure. Mini-Laravel-app per domain.

craft-dtoskills/craft-dto/SKILL.md

Crafting DTOs with Spatie Laravel Data v4.

craft-event-driven-modelskills/craft-event-driven-model/SKILL.md

Crafting Event-Driven Models. Side effects via observers.

craft-guard-clauseskills/craft-guard-clause/SKILL.md

Crafting Guard Clauses. Early returns for preconditions.

craft-jobskills/craft-job/SKILL.md

Crafting Jobs. Queue orchestration, not business logic.

craft-modelskills/craft-model/SKILL.md

Crafting the Eloquent model. Source of truth.

craft-model-stateskills/craft-model-state/SKILL.md

Crafting model states. Explicit state machines.

craft-null-objectskills/craft-null-object/SKILL.md

Crafting Null Objects. Safe defaults instead of null checks.

craft-queryskills/craft-query/SKILL.md

Crafting QueryBuilders. Eloquent power, not Repositories.

craft-queueable-actionskills/craft-queueable-action/SKILL.md

Crafting Queueable Actions. Skip job boilerplate.

craft-registryskills/craft-registry/SKILL.md

Crafting Registries. Multi-provider handler dispatch.

craft-resultskills/craft-result/SKILL.md

Crafting Result Objects. Rich outcomes beyond success/failure.

craft-shared-domainskills/craft-shared-domain/SKILL.md

Crafting Shared Domain. Cross-cutting concerns namespace.

craft-supportskills/craft-support/SKILL.md

Crafting Support namespace code. Reusable, domain-agnostic.

craft-test-factoryskills/craft-test-factory/SKILL.md

Crafting Test Factories. Beyond Laravel defaults.

craft-value-objectskills/craft-value-object/SKILL.md

Crafting Value Objects. Immutable, serialization-safe.

craft-viewmodelskills/craft-viewmodel/SKILL.md

Crafting ViewModels. Data transformation for views.

decide-abstraction-timingskills/decide-abstraction-timing/SKILL.md

When to abstract vs copy-paste. The rule of three.

decide-builderskills/decide-builder/SKILL.md

When to use the fluent Builder pattern vs constructors or factories.

decide-castsskills/decide-casts/SKILL.md

When to use Eloquent Cast vs Accessor. Value representation decisions.

decide-chunkingskills/decide-chunking/SKILL.md

When and how to process large datasets. Memory-efficient iteration.

decide-compositionskills/decide-composition/SKILL.md

When to use Trait+Interface vs Abstract Class. The art of mixing behaviors.

decide-dto-vs-arrayskills/decide-dto-vs-array/SKILL.md

When to use DTO vs array. Type safety threshold.

decide-eager-loadingskills/decide-eager-loading/SKILL.md

When to eager load relationships. N+1 prevention decisions.

decide-enum-vs-stateskills/decide-enum-vs-state/SKILL.md

When to use enum vs state pattern. Complexity threshold.

decide-eventsskills/decide-events/SKILL.md

When to use Events & Listeners vs direct calls. Decoupling decisions.

decide-extractionskills/decide-extraction/SKILL.md

When to extract an Action class vs inline code. Extraction decisions.

decide-guard-vs-exceptionskills/decide-guard-vs-exception/SKILL.md

When to return early vs throw. Control flow clarity.

decide-namespacingskills/decide-namespacing/SKILL.md

When to place code in Support vs Domain. Namespace decisions.

decide-pipelinesskills/decide-pipelines/SKILL.md

When to use Laravel Pipelines vs sequential calls. Flow decisions.

decide-queuingskills/decide-queuing/SKILL.md

When to queue work vs execute synchronously. Async decisions.

decide-registryskills/decide-registry/SKILL.md

When to use the Registry pattern for runtime extensibility.

decide-streamingskills/decide-streaming/SKILL.md

When to stream vs chunk vs load all. Memory vs complexity.

ground-action-compositionskills/ground-action-composition/SKILL.md

Action composition. Reuse without deep chains.

ground-consumer-firstskills/ground-consumer-first/SKILL.md

Consumer-first design. Shape the call-site before the implementation.

ground-domain-evolutionskills/ground-domain-evolution/SKILL.md

Domain evolution. Refactor structure as understanding deepens.

ground-domain-thinkingskills/ground-domain-thinking/SKILL.md

Domain thinking. Code mirrors business reality.

ground-fail-fastskills/ground-fail-fast/SKILL.md

Fail-fast patterns. Reject invalid input at the boundary.

ground-laravelskills/ground-laravel/SKILL.md

Laravel philosophy. Convention over config. Eloquent as truth. Invoke ONCE when entering Laravel context.

ground-pragmatismskills/ground-pragmatism/SKILL.md

Pragmatism. Balance strictness with shipping.

ground-type-safetyskills/ground-type-safety/SKILL.md

Type safety philosophy. Catch bugs at write time, not run time.

polishskills/polish/SKILL.md

Laravel polish. PHP/Laravel standards for each polish pass. Invoke when polishing PHP/Laravel code.

Plugin manifests1

plugins/laravel-ddd/.claude-plugin/plugin.json
{
  "name": "laravel-ddd",
  "version": "1.4.2",
  "description": "Laravel DDD patterns. Opinionated domain-driven design with Actions, DTOs, QueryBuilders, and decision heuristics. Standalone; pairs well with kernel.",
  "author": {
    "name": "Christian Attard",
    "url": "https://github.com/attac-t"
  },
  "keywords": [
    "laravel",
    "ddd",
    "domain-driven-design",
    "actions",
    "eloquent",
    "spatie"
  ],
  "skills": "./skills/"
}

If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.

[laravel-ddd on Agent Plugins Marketplace](https://pluginsmp.com/plugins/laravel-ddd)