From acc
Generates Transactional Outbox pattern components for PHP 8.4: OutboxMessage entity, repository interface and impl, publisher ports, processor service, console command, Doctrine migration, and unit tests. For reliable event publishing across transactions.
How this skill is triggered — by the user, by Claude, or both
Slash command
/acc:create-outbox-patternThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Creates Transactional Outbox pattern infrastructure for reliable event publishing.
Creates Transactional Outbox pattern infrastructure for reliable event publishing.
Path: src/Domain/Shared/Outbox/
OutboxMessage.php — Immutable message entityOutboxRepositoryInterface.php — Repository contractPath: src/Application/Shared/
Port/Output/MessagePublisherInterface.php — Publisher portPort/Output/DeadLetterRepositoryInterface.php — Dead letter portOutbox/ProcessingResult.php — Result value objectOutbox/MessageResult.php — Result enumOutbox/OutboxProcessor.php — Processing servicePath: src/Infrastructure/
Persistence/Doctrine/Repository/DoctrineOutboxRepository.phpConsole/OutboxProcessCommand.phptests/Unit/Domain/Shared/Outbox/OutboxMessageTest.phptests/Unit/Application/Shared/Outbox/OutboxProcessorTest.php// In UseCase - save outbox message in SAME transaction
$this->connection->transactional(function () use ($order, $event) {
$this->orderRepository->save($order);
$this->outboxRepository->save(
OutboxMessage::create(
id: Uuid::uuid4()->toString(),
aggregateType: 'Order',
aggregateId: $order->id()->toString(),
eventType: 'order.placed',
payload: $event->toArray()
)
);
});
Include metadata for tracing:
| Layer | Path |
|---|---|
| Domain Entity | src/Domain/Shared/Outbox/ |
| Domain Interface | src/Domain/Shared/Outbox/ |
| Application Service | src/Application/Shared/Outbox/ |
| Application Port | src/Application/Shared/Port/Output/ |
| Infrastructure Repo | src/Infrastructure/Persistence/Doctrine/Repository/ |
| Infrastructure Console | src/Infrastructure/Console/ |
| Unit Tests | tests/Unit/{Layer}/{Path}/ |
| Component | Pattern | Example |
|---|---|---|
| Entity | {Name} | OutboxMessage |
| Repository Interface | {Name}RepositoryInterface | OutboxRepositoryInterface |
| Repository Impl | Doctrine{Name}Repository | DoctrineOutboxRepository |
| Service | {Name}Processor | OutboxProcessor |
| Command | {Name}Command | OutboxProcessCommand |
| Test | {ClassName}Test | OutboxMessageTest |
final readonly class OutboxMessage
{
public static function create(
string $id,
string $aggregateType,
string $aggregateId,
string $eventType,
array $payload,
?string $correlationId = null,
?string $causationId = null
): self;
public function isProcessed(): bool;
public function isPoisoned(int $maxRetries): bool;
public function payloadAsArray(): array;
public function withProcessed(): self;
public function withRetryIncremented(): self;
}
interface OutboxRepositoryInterface
{
public function save(OutboxMessage $message): void;
public function findUnprocessed(int $limit = 100): array;
public function markAsProcessed(string $id): void;
public function incrementRetry(string $id): void;
public function delete(string $id): void;
}
final readonly class OutboxProcessor
{
public function process(int $batchSize = 100): ProcessingResult;
}
// In UseCase
$message = OutboxMessage::create(
id: Uuid::uuid4()->toString(),
aggregateType: 'Order',
aggregateId: $order->id()->toString(),
eventType: 'order.placed',
payload: [
'order_id' => $order->id()->toString(),
'customer_id' => $order->customerId()->toString(),
'total' => $order->total()->amount(),
],
correlationId: $command->correlationId
);
$this->outboxRepository->save($message);
# One-shot processing
php bin/console outbox:process --batch-size=100
# Daemon mode
php bin/console outbox:process --daemon --interval=1000
# Symfony services.yaml
Domain\Shared\Outbox\OutboxRepositoryInterface:
alias: Infrastructure\Persistence\Doctrine\Repository\DoctrineOutboxRepository
Application\Shared\Port\Output\MessagePublisherInterface:
alias: Infrastructure\Messaging\RabbitMq\RabbitMqPublisher
Application\Shared\Outbox\OutboxProcessor:
arguments:
$maxRetries: 5
CREATE TABLE outbox_messages (
id VARCHAR(36) PRIMARY KEY,
aggregate_type VARCHAR(255) NOT NULL,
aggregate_id VARCHAR(255) NOT NULL,
event_type VARCHAR(255) NOT NULL,
payload JSONB NOT NULL,
correlation_id VARCHAR(255),
causation_id VARCHAR(255),
created_at TIMESTAMP(6) NOT NULL,
processed_at TIMESTAMP(6),
retry_count INT NOT NULL DEFAULT 0
);
CREATE INDEX idx_outbox_unprocessed
ON outbox_messages (processed_at, created_at)
WHERE processed_at IS NULL;
For complete PHP templates and test examples, see:
references/templates.md — All component templatesreferences/tests.md — Unit test examplesnpx claudepluginhub dykyi-roman/awesome-claude-code --plugin accProvides patterns, antipatterns, and PHP-specific guidelines for transactional outbox, polling publisher, and reliable messaging audits. Useful for event-driven architectures ensuring consistency.
Provides guidance and code for implementing the transactional outbox pattern to reliably publish domain events alongside database writes, preventing dual-write failures.
Implements the Transactional Outbox pattern for reliable domain event processing in .NET 8+ apps using Entity Framework Core, Quartz.NET, and MediatR.