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 FortiumPartners/ensemble --skill developing-with-laravelgit clone --depth 1 https://github.com/FortiumPartners/ensembleWrote 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/fortiumpartners/ensemble/developing-with-laravel)<a href="https://agentmods.dev/skills/fortiumpartners/ensemble/developing-with-laravel"><img src="https://agentmods.dev/badge/skills/fortiumpartners/ensemble/developing-with-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/fortiumpartners/ensemble/developing-with-laravel"><img src="https://agentmods.dev/badge/skills/fortiumpartners/ensemble/developing-with-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.00039 | $0.03147 |
| Opus 5 | $0.00019 | $0.01573 |
| Sonnet 5 | $0.00008 | $0.00629 |
| Haiku 4.5 | $0.00004 | $0.00315 |
Grade A, and why
developing-with-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.
How it starts
The opening of the file, as written. The whole thing — 514 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Laravel Skill - Quick Reference
Laravel framework patterns for modern PHP applications. For PHP language fundamentals, see the PHP skill. For advanced patterns, see REFERENCE.md.
Table of Contents
- Project Structure
- Routing & Controllers
- Eloquent ORM
- Validation
- Middleware
- Authentication
- Artisan CLI
- Queues & Jobs
- Events & Listeners
- Testing
- Service Providers
- Task Scheduling
Project Structure
app/
├── Console/Commands/ # Artisan commands
├── Http/
│ ├── Controllers/ # Request handlers
│ ├── Middleware/ # Request/response filters
│ └── Requests/ # Form validation
├── Jobs/ # Queueable jobs
├── Models/ # Eloquent models
├── Providers/ # Service providers
└── Services/ # Business logic
config/ # Configuration files
database/
├── factories/ # Model factories
├── migrations/ # Database migrations
└── seeders/ # Database seeders
routes/
├── api.php # API routes
└── web.php # Web routes
tests/
├── Feature/ # Integration tests
└── Unit/ # Unit tests
Routing & Controllers
Route Definitions
// Basic routes
Route::get('/users', [UserController::class, 'index']);
Route::post('/users', [UserController::class, 'store']);
// Resource routes (all CRUD)
Route::resource('posts', PostController::class);
Route::apiResource('comments', CommentController::class);
// Route groups with middleware
Route::prefix('api/v1')->middleware(['auth:sanctum'])->group(function () {
Route::get('/profile', [ProfileController::class, 'show']);
});
Controllers
What ships with it
27 files 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.
- examples/api_resource.example.php 9.0 KB
- examples/artisan_patterns.example.php 13 KB
- examples/eloquent_patterns.example.php 10 KB
- examples/multi_tenant.example.php 12 KB
- examples/passport_oauth.example.php 12 KB
- examples/permission_acl.example.php 12 KB
- examples/queue_workflow.example.php 11 KB
- README.md 4.1 KB
- REFERENCE.md 73 KB
- templates/command_consumer.template.php 7.0 KB
- templates/command_scheduled.template.php 3.8 KB
- templates/command.template.php 3.0 KB
- templates/controller.template.php 4.0 KB
- templates/custom_rule.template.php 1.4 KB
- templates/event.template.php 2.8 KB
- templates/factory.template.php 5.6 KB
- templates/form_request.template.php 2.4 KB
- templates/job.template.php 4.1 KB
- templates/listener.template.php 2.9 KB
- templates/middleware.template.php 2.6 KB
- templates/migration.template.php 4.1 KB
- templates/model.template.php 3.9 KB
- templates/policy.template.php 3.9 KB
- templates/seeder.template.php 2.5 KB
- templates/service_provider.template.php 4.3 KB
- templates/test.template.php 7.5 KB
- VALIDATION.md 11 KB
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 · 514 lines · 39 tokens per session scan A 5fbf3896e466
developing-with-laravel is a skill published in the GitHub repository FortiumPartners/ensemble (11 stars, last pushed yesterday), licensed MIT. It adds 39 tokens to every session and 3,147 once invoked, about $0.0002 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
laravel
Use when building or extending a Laravel 11/12 app — Eloquent models, migrations and relationships, routing with controllers and Form Requests, queues and background jobs, framework-native security (validation, mass-assignment, policies, signed URLs, rate limiting), and Pest/PHPUnit feature tests. NOT pure PHP…
php-laravel
When to use: PHP or Laravel work — Eloquent, middleware, validation, queues, migrations, testing.
laravel-auth
Use when implementing user authentication, API tokens, social login, or authorization in Laravel 13.
laravel-patterns
Laravel architecture patterns, routing/controllers, Eloquent ORM, service layers, queues, events, caching, and API resources for production apps.
craftcms
Craft CMS 5 plugin and module development — extending Craft with PHP. Covers elements, element queries, services, models, records, controllers, migrations, queue jobs, console commands, field types, native fields, events, behaviors, Twig extensions, widgets, filesystems, permissions, project config, GraphQL, testing…
go
Use when writing, reviewing, testing, or shipping Go code and HTTP services: idioms, %w error wrapping, goroutine/context/errgroup concurrency, net/http 1.22 routing, log/slog, project layout, table-driven tests, Go hardening. NOT language-agnostic threat modeling (that is secure-coding), NOT Dockerfile/CI shipping…