laravel-expert

laravel-expert is a skill for Claude Code, Codex from GulajavaMinistudio/awesome-copilot-id. It costs 15 tokens per session (1,128 once invoked), scanned A, original, MIT.

A set of coding and review instructions for Laravel and PHP. Laravel is a PHP framework for building web applications, and PHP is a programming language often used on web servers.

In plain words
What is it for?
Writing or reviewing Laravel and PHP applications, including controllers, models, routes, business-logic classes, and database-related code.
Why use it?
It helps an agent follow consistent architecture, naming, security, and code-quality rules. The guidance targets Laravel 11 or newer and PHP 8.3 or newer.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Writing or reviewing Laravel and PHP applications, including controllers, models, routes, business-logic classes, and database-related code.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/gulajavaministudio/awesome-copilot-id/laravel-expert
Install

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.

Any agent
npx skills add GulajavaMinistudio/awesome-copilot-id --skill laravel-expert
Clone the repo
git clone --depth 1 https://github.com/GulajavaMinistudio/awesome-copilot-id

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for laravel-expert

README.md
[![agentmods](https://agentmods.dev/badge/skills/gulajavaministudio/awesome-copilot-id/laravel-expert/github.svg)](https://agentmods.dev/skills/gulajavaministudio/awesome-copilot-id/laravel-expert)
Your own site
<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.

agentmods 80×15 button for laravel-expert

Your own site · 80×15
<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>
Per session 15 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,128 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 13d ago against content hash c4a8bec2540b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

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.

supplementary-skill/laravel-expert/SKILL.md · 114 lines

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.
  • Magic Values: Avoid magic strings/numbers. Use PHP Enums or Class Constants.
    • Bad: if ($status == 'active')
    • Good: if ($status === UserStatus::Active)
  • 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).
  • Responses: Use distinguishable responses. For APIs, use API Resources.

Read the full file on GitHub · 114 lines

Changes

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.

  1. 13d ago First seen · 114 lines · 15 tokens per session scan A c4a8bec2540b

Subscribe to this mod's changes

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.