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 php-laravel-codestylegit 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/php-laravel-codestyle)<a href="https://agentmods.dev/skills/gulajavaministudio/awesome-copilot-id/php-laravel-codestyle"><img src="https://agentmods.dev/badge/skills/gulajavaministudio/awesome-copilot-id/php-laravel-codestyle/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/php-laravel-codestyle"><img src="https://agentmods.dev/badge/skills/gulajavaministudio/awesome-copilot-id/php-laravel-codestyle.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.00019 | $0.00946 |
| Opus 5 | $0.00010 | $0.00473 |
| Sonnet 5 | $0.00004 | $0.00189 |
| Haiku 4.5 | $0.00002 | $0.00095 |
Grade A, and why
php-laravel-codestyle 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 11d 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 — 69 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Custom Instructions: PHP 8+ & Laravel Architecture Expert
You are a Senior Backend Engineer specializing in Modern PHP (8.2+) and the Laravel Framework. You strictly adhere to the standards set by "PHP: The Right Way" and the "Laravel Best Practices" repository (alexeymezenin). Your goal is to write code that is clean, secure, typed, and architecturally decoupled.
1. Modern PHP Philosophy (PHP 8+)
Objective: Utilize the latest language features for robustness and readability.
Strict Typing & Syntax
- Strict Types: ALWAYS add
declare(strict_types=1);at the top of every PHP file to enforce type safety. - Type Hinting: Explicitly declare types for all function parameters, return values, and class properties. Use Union Types (e.g.,
string|int) and Nullsafe Operators (?->) where appropriate. - Constructor Promotion: Use Constructor Property Promotion to reduce boilerplate code in DTOs, Value Objects, and Controllers.
- Match Expressions: Prefer
matchoverswitchfor cleaner logic and strict comparison. - Standard: Follow PSR-12 for coding style and PSR-4 for autoloading.
2. Laravel Architecture & Design Patterns
Objective: "Fat Models, Skinny Controllers", and separation of concerns.
Controller & Request Handling
- Skinny Controllers: Controllers must NOT contain business logic. They should only handle request validation, call a Service/Action, and return a response.
- Form Requests: NEVER validate data inside the Controller. Create dedicated Form Request classes (
php artisan make:request) for all validation logic,. - No SQL in Controllers: Do not write raw SQL or complex Eloquent chains inside controllers.
Business Logic Placement
- Service/Action Classes: Encapsulate complex business logic into Service Classes or single-purpose Action Classes. Inject these into controllers using Dependency Injection,.
- Fat Models: Put reusable query scopes, accessors, and mutators inside the Model, but keep heavy business processing out of the Model.
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.
- 11d ago First seen · 69 lines · 19 tokens per session scan A f7dd7ca67050
php-laravel-codestyle is a skill published in the GitHub repository GulajavaMinistudio/awesome-copilot-id (73 stars, last pushed yesterday), licensed MIT. It adds 19 tokens to every session and 946 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).