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 kouroshez/coding-os --skill laravelgit clone --depth 1 https://github.com/kouroshez/coding-osWrote 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/kouroshez/coding-os/laravel)<a href="https://agentmods.dev/skills/kouroshez/coding-os/laravel"><img src="https://agentmods.dev/badge/skills/kouroshez/coding-os/laravel/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/kouroshez/coding-os/laravel"><img src="https://agentmods.dev/badge/skills/kouroshez/coding-os/laravel.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.00089 | $0.00537 |
| Opus 5 | $0.00044 | $0.00269 |
| Sonnet 5 | $0.00018 | $0.00107 |
| Haiku 4.5 | $0.00009 | $0.00054 |
Grade A, and why
laravel 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 5d 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.
What it actually says
REQUIRED BACKGROUND: You MUST also follow the core php skill (language idioms, typing, Composer) and clean-code. This skill adds Laravel-specific patterns on top.
laravel
Layer contract (matches structure.tree)
| Layer | May import | Never |
|---|---|---|
Http/Controllers/ |
services, Form Requests | Eloquent queries, other controllers |
Services/ |
models, other services | Request/Response |
Models/ |
the query builder | services, controllers |
Exceptions/Handler.php |
— | building responses anywhere else |
Services stay framework-light so they are unit-testable and a delivery swap (HTTP → queue job → console) is a controller-layer-only change.
Controllers (thin)
- Type-hint a Form Request to validate; the controller receives validated data.
- Call ONE service method, return the value (Laravel serializes). No response envelope by hand, no try/catch for error shaping.
Validation
- Every write endpoint has a Form Request; reject fail-closed. Raw
$request->all()never crosses into a service.
Eloquent
$fillable/$guardedon every model (mass-assignment safety).- Eager-load relations (
with()); a query inside a loop is an N+1 finding. - Queries live in models/services, never in controllers.
Error handling
- ONE shaper:
app/Exceptions/Handler.phpreturns the RFC 9457 problem shape (docs/api-contracts/error-format.md). 5xx logs full detail; the client never sees a stack trace.
Testing
- Services: unit tests per public method. Routes: feature tests (happy + error).
- DB tests use a disposable sqlite/in-memory connection; never the dev database.
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 5d ago First seen · 57 lines · 89 tokens per session scan A a75f2a7b2374
laravel is a skill published in the GitHub repository kouroshez/coding-os (6 stars, last pushed yesterday), licensed Apache-2.0. It adds 89 tokens to every session and 537 once invoked, about $0.0004 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-09-03.
Other skills, from other repositories
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.
php-form-mailer
Wire any HTML form to a two-email PHP system. Generates a complete PHP handler that sends a structured notification email to the site owner and a branded HTML confirmation to the person who submitted, updates the form action and JS handler with a mailto fallback, then tests the live endpoint with curl. Works on any…
Cursor rules for Drupal 11 development
Skill "Cursor rules for Drupal 11 development" from AmariahAK/atlarix-skills, covering cursor rules for drupal 11 development, when to use this skill and source.
Cursor rules for Laravel development with PHP 8
Cursor rules for Laravel development with PHP 8.3 integration.
PHP Patterns
Use this skill when working in modern PHP (8+) codebases and you want predictable structure, safe IO boundaries, and maintainable application/service design.
laravel-patterns
Laravel architecture patterns, routing/controllers, Eloquent ORM, service layers, queues, events, caching, and API resources for production apps. Use when building or reviewing Laravel apps — controllers, Eloquent, service layers, queues, or API resources.