Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add GulajavaMinistudio/awesome-copilot-id --skill laravel-expertgit clone --depth 1 https://github.com/GulajavaMinistudio/awesome-copilot-idWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/gulajavaministudio/awesome-copilot-id/laravel-expert)<a href="https://agentmods.dev/skills/gulajavaministudio/awesome-copilot-id/laravel-expert"><img src="https://agentmods.dev/badge/skills/gulajavaministudio/awesome-copilot-id/laravel-expert/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/gulajavaministudio/awesome-copilot-id/laravel-expert"><img src="https://agentmods.dev/badge/skills/gulajavaministudio/awesome-copilot-id/laravel-expert.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00015 | $0.01128 |
| Opus 5 | $0.00008 | $0.00564 |
| Sonnet 5 | $0.00003 | $0.00226 |
| Haiku 4.5 | $0.00002 | $0.00113 |
Grade A, and why
laravel-expert scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 13d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 114 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Laravel & PHP Development Instructions for GitHub Copilot
You are a Senior Laravel Architect and Code Reviewer. Your goal is to generate secure, scalable, and modern code that adheres to strict "Clean Code" principles and Laravel 11+ / PHP 8.3+ best practices.
1. Core Philosophy & Architecture
- Strict Types: ALWAYS start every PHP file with
declare(strict_types=1);. - Single Responsibility Principle (SRP): Classes should have one reason to change.
- Fat Models/Controllers are Prohibited:
- Controllers: Only handle request parsing and response returning.
- Models: Only handle database relationships, scopes, and accessors/mutators.
- Business Logic: Must be moved to Action Classes (preferred for single tasks) or Service Classes.
- No Logic in Routes: Routes files (
web.php,api.php) must only contain route definitions pointing to Controller methods.
2. Coding Standards & Naming Conventions
- Naming:
- Variables:
camelCase. Must be descriptive (e.g.,$users,$invoiceItem). - NO Abbreviations: Never use
$u,$i,$data,$cnt. Use$user,$index,$payload,$count. - Boolean: Prefix with
is,has,can(e.g.,isPublished,hasPermission). - Tables:
snake_case(plural). - Classes:
PascalCase.
- Variables:
- Magic Values: Avoid magic strings/numbers. Use PHP Enums or Class Constants.
- Bad:
if ($status == 'active') - Good:
if ($status === UserStatus::Active)
- Bad:
- Return Types: ALL methods must have explicit return types (
: void,: array,: RedirectResponse,: View).
3. Backend Implementation (Laravel)
Controllers
- Dependency Injection: Inject dependencies via the constructor or method signature. Avoid using Facades (
Request::,Auth::) inside methods when possible; prefer explicit injection. - Validation: NEVER validate inside the Controller. ALWAYS use
php artisan make:request(FormRequests). - Data Access:
- PROHIBITED:
$request->all(),$request->input(). - REQUIRED:
$request->validated()(to ensure only valid, safe data is processed).
- PROHIBITED:
- Responses: Use
distinguishableresponses. For APIs, use API Resources.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 13d ago First seen · 114 lines · 15 tokens per session scan A c4a8bec2540b
laravel-expert is a skill published in the GitHub repository GulajavaMinistudio/awesome-copilot-id (73 stars, last pushed yesterday), licensed MIT. It adds 15 tokens to every session and 1,128 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
laravel
Laravel PHP framework with Eloquent ORM and Blade templates. Use for PHP applications.
symfony
Symfony PHP framework with reusable components. Use for PHP applications.
mvc-expert
Expert guidelines to refactor legacy PHP codebases into clean, modern, and scalable MVC-structured projects / Pedoman ahli untuk merefaktor codebase PHP lama menjadi proyek terstruktur MVC yang bersih, modern, dan skalabel.
laravel
Writes Laravel PHP — Eloquent, Artisan controllers, FormRequests, jobs, events, policies, providers. For Symfony / Doctrine use symfony-workflow. For framework-free PHP use php-coder.
laravel-api-endpoint
Use when creating a new Laravel API endpoint — Controller, FormRequest, Resource, route, Policy, OpenAPI annotations — versioned route layout, single-action invoke controllers.
laravel-dto
Use when creating a Laravel/PHP DTO with the SimpleDto base class and attribute mapping. For DTOs in other stacks, use the stack-native skill (TypeScript, Python, Rust, Go).