From superpowers-laravel
Guides including Laravel-specific context—files, errors, versions, dependencies, monorepos—in prompts for accurate AI code responses in Laravel projects.
npx claudepluginhub jpcaparas/superpowers-laravel --plugin superpowers-laravelThis skill uses the workspace's default tool permissions.
Give the AI assistant the right context to generate accurate, relevant code. Missing context leads to generic solutions that don't fit your project.
Provides guidelines and workflows for Laravel 11/12 app development in API-only or full-stack stacks with Docker Compose/Sail, Inertia+React, Livewire, Vue, Blade, Tailwind v4, Fortify, PHPUnit, Pint. Use for features, bugs, UI/backend changes per repo docs.
Provides Laravel patterns and best practices for Eloquent ORM, model relationships, authentication, API resources, testing, caching, and queues.
Guides runner selection in Laravel (Sail vs non-Sail), core workflows like TDD with Pest, migrations, queues, and applying superpowers skills platform-agnostically.
Share bugs, ideas, or general feedback.
Give the AI assistant the right context to generate accurate, relevant code. Missing context leads to generic solutions that don't fit your project.
app/Models/User.php, routes/api.phpapp/Services/Payment"app/Contracts".env settings, config/ valuesapps/api" vs "working in apps/admin"packages/common"BAD: "Getting an error with users"
GOOD: "Getting error when creating user:
Illuminate\Database\QueryException: SQLSTATE[23000]:
Integrity constraint violation: 1062 Duplicate entry
In UserController@store, line 45:
$user = User::create($request->validated());
Using Laravel 11.x with MySQL 8.0"
Include the full stack trace, especially:
1. POST to /api/users with email that exists
2. Validation passes (should catch this)
3. Database throws constraint violation
"Add validation to the user form"
"Add validation to UserStoreRequest:
"Need to handle payments"
"Implement Stripe payment processing:
Before sending a prompt, verify:
More context = better results. When in doubt, include it.