Design Laravel app architecture with services, repositories, actions, and clean code patterns. Use when structuring projects, creating services, implementing DI, or organizing code layers.
/plugin marketplace add fusengine/claude-code-plugins/plugin install fuse:laravel@fusengine-pluginsThis skill inherits all available tools. When active, it can use any tool Claude has access to.
docs/artisan.mddocs/concurrency.mddocs/configuration.mddocs/container.mddocs/context.mddocs/contracts.mddocs/deployment.mddocs/envoy.mddocs/errors.mddocs/facades.mddocs/filesystem.mddocs/helpers.mddocs/homestead.mddocs/installation.mddocs/lifecycle.mddocs/logging.mddocs/mcp.mddocs/octane.mddocs/packages.mddocs/pennant.mdapp/
├── Actions/ # Single-purpose action classes
├── Services/ # Business logic
├── Repositories/ # Data access layer
│ └── Contracts/
├── Http/
│ ├── Controllers/ # Thin controllers
│ ├── Requests/ # Form validation
│ └── Resources/ # API transformations
├── Models/ # Eloquent models only
├── Enums/ # PHP 8.1+ enums
├── Events/ # Domain events
├── Listeners/ # Event handlers
└── Policies/ # Authorization
<?php
declare(strict_types=1);
namespace App\Services;
final readonly class UserService
{
public function __construct(
private UserRepositoryInterface $repository,
) {}
public function create(CreateUserDTO $dto): User
{
return $this->repository->create($dto->toArray());
}
}
// AppServiceProvider.php
public function register(): void
{
$this->app->bind(
UserRepositoryInterface::class,
UserRepository::class
);
}
This skill should be used when the user asks about libraries, frameworks, API references, or needs code examples. Activates for setup questions, code generation involving libraries, or mentions of specific frameworks like React, Vue, Next.js, Prisma, Supabase, etc.
Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.
Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.