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 Omar-Obando/qwen-orchestrator --skill laravelgit clone --depth 1 https://github.com/Omar-Obando/qwen-orchestratorWrote 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/omar-obando/qwen-orchestrator/laravel)<a href="https://agentmods.dev/skills/omar-obando/qwen-orchestrator/laravel"><img src="https://agentmods.dev/badge/skills/omar-obando/qwen-orchestrator/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/omar-obando/qwen-orchestrator/laravel"><img src="https://agentmods.dev/badge/skills/omar-obando/qwen-orchestrator/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.00057 | $0.03778 |
| Opus 5 | $0.00028 | $0.01889 |
| Sonnet 5 | $0.00011 | $0.00756 |
| Haiku 4.5 | $0.00006 | $0.00378 |
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 7d 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 — 603 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Laravel Development Skill — PHP Framework Mastery
This skill provides comprehensive Laravel development patterns following convention-over-configuration principles, Eloquent-first data access, and enterprise-grade architecture.
Key Principles
- Convention over Configuration: Follow Laravel naming conventions for zero-config discovery
- Eloquent-First: Use ORM for all data access; raw SQL only for complex queries
- Validation at the Edge: Form Requests validate before reaching controllers
- Thin Controllers, Fat Models: Business logic in models and services, not controllers
Project Scaffolding
Model Creation (All-in-One)
php artisan make:model Product -crR
# Creates: Model + Controller (resource) + Form Requests + API Resource
| Flag | Creates |
|---|---|
-c |
Controller |
-r |
Resource controller (CRUD methods) |
-R |
Form Requests (StoreRequest, UpdateRequest) |
-m |
Migration |
-f |
Factory |
-s |
Seeder |
Eloquent ORM
Relationships
class User extends Model
{
// One-to-One
public function profile(): HasOne
{
return $this->hasOne(Profile::class);
}
// One-to-Many
public function posts(): HasMany
{
return $this->hasMany(Post::class);
}
// Inverse: belongsTo (on the child model)
public function author(): BelongsTo
{
return $this->belongsTo(User::class, 'author_id');
}
// Many-to-Many (pivot table)
public function roles(): BelongsToMany
{
return $this->belongsToMany(Role::class)
->withPivot('assigned_at')
->withTimestamps();
}
// Polymorphic
public function comments(): MorphMany
{
return $this->morphMany(Comment::class, 'commentable');
}
// Has-One-Through
public function license(): HasOneThrough
{
return $this->hasOneThrough(License::class, Subscription::class);
}
}
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.
- 7d ago First seen · 603 lines · 57 tokens per session scan A 438660dcba0c
laravel is a skill published in the GitHub repository Omar-Obando/qwen-orchestrator (49 stars, last pushed 2mo ago), licensed MIT. It adds 57 tokens to every session and 3,778 once invoked, about $0.0003 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
owl-admin-devtools-generator
A development guide for Owl Admin, a Laravel-based administration system, covering its code generator, API templates, relationships, and visual pages.
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…
php-development
Expert guidance for PHP 8+ development with SOLID principles, PSR standards, and modern best practices.
php-expert
Expert-level PHP development with PHP 8+, Laravel, Composer, and modern best practices. Use when the user mentions Laravel, Composer, Symfony, PHPUnit, or PSR standards, or when the task involves PHP 8+ Features, Object-Oriented PHP, Modern PHP, or Constructor Property Promotion.
check-bounded-contexts
Analyzes bounded context boundaries in DDD projects. Detects cross-context coupling, shared kernel violations, context mapping issues, and ubiquitous language inconsistencies. Generates context map diagrams and boundary recommendations.
check-caching-strategy
Analyzes PHP code for caching opportunities and issues. Detects missing cache, cache invalidation problems, over-caching, repeated expensive operations.