laravel:using-examples-in-prompts

Installation
SKILL.md

Using Examples in Prompts

Examples clarify intent better than descriptions. Show the AI what you want, don't just tell it.

Reference Existing Code

Abstract

"Create a service similar to the payment service"

Concrete

"Create OrderService following the pattern in app/Services/PaymentService.php:

class PaymentService
{
    public function __construct(
        private PaymentGateway $gateway,
        private PaymentRepository $repository
    ) {}
Installs
70
GitHub Stars
139
First Seen
Jan 21, 2026
laravel:using-examples-in-prompts — jpcaparas/superpowers-laravel