Build RESTful APIs with Laravel using API Resources, Sanctum authentication, rate limiting, and versioning. Use when creating API endpoints, transforming responses, or handling API authentication.
/plugin marketplace add fusengine/agents/plugin install fuse-laravel@fusengine-pluginsThis skill inherits all available tools. When active, it can use any tool Claude has access to.
docs/controllers.mddocs/http-client.mddocs/middleware.mddocs/pagination.mddocs/rate-limiting.mddocs/redirects.mddocs/requests.mddocs/responses.mddocs/routing.mddocs/strings.mddocs/urls.mddocs/validation.md<?php
declare(strict_types=1);
namespace App\Http\Controllers\Api\V1;
final class PostController extends Controller
{
public function __construct(
private readonly PostService $postService,
) {}
public function index(): AnonymousResourceCollection
{
return PostResource::collection($this->postService->paginate(15));
}
public function store(StorePostRequest $request): JsonResponse
{
$post = $this->postService->create($request->validated());
return PostResource::make($post)->response()->setStatusCode(201);
}
}
Route::prefix('v1')->group(function () {
Route::get('posts', [PostController::class, 'index']);
Route::middleware('auth:sanctum')->group(function () {
Route::post('posts', [PostController::class, 'store']);
});
});
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.