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 fanqingxuan/awesome-skills --skill laravel12git clone --depth 1 https://github.com/fanqingxuan/awesome-skillsWrote 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/fanqingxuan/awesome-skills/laravel12)<a href="https://agentmods.dev/skills/fanqingxuan/awesome-skills/laravel12"><img src="https://agentmods.dev/badge/skills/fanqingxuan/awesome-skills/laravel12/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/fanqingxuan/awesome-skills/laravel12"><img src="https://agentmods.dev/badge/skills/fanqingxuan/awesome-skills/laravel12.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.00148 | $0.03604 |
| Opus 5 | $0.00074 | $0.01802 |
| Sonnet 5 | $0.00030 | $0.00721 |
| Haiku 4.5 | $0.00015 | $0.00360 |
Grade A, and why
laravel12 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 12d 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 — 641 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Laravel 12 开发指南
Laravel 12 框架开发助手,专注于控制器、模型、命令行工具、服务层的快速开发。
常用 Artisan 命令
# 生成控制器
php artisan make:controller UserController
# 生成资源控制器(RESTful)
php artisan make:controller UserController --resource
# 生成 API 控制器
php artisan make:controller API/UserController --api
# 生成模型
php artisan make:model User
# 生成模型 + 迁移文件
php artisan make:model User -m
# 生成模型 + 迁移 + 工厂 + 控制器
php artisan make:model User -mcf
# 生成命令
php artisan make:command ImportDataCommand
# 生成中间件
php artisan make:middleware CheckUserRole
# 生成服务提供者(用于注册门面)
php artisan make:provider PaymentServiceProvider
# 生成请求验证类
php artisan make:request StoreUserRequest
# 生成迁移文件
php artisan make:migration create_users_table
# 执行迁移
php artisan migrate
# 回滚迁移
php artisan migrate:rollback
# 生成 Seeder
php artisan make:seeder UserSeeder
# 执行 Seeder
php artisan db:seed
# 清除缓存
php artisan cache:clear
php artisan config:clear
php artisan route:clear
php artisan view:clear
# 启动开发服务器
php artisan serve
快速示例
控制器
<?php
namespace App\Http\Controllers;
use App\Models\User;
use Illuminate\Http\Request;
use Illuminate\Http\JsonResponse;
class UserController extends Controller
{
/**
* Display a listing of the resource.
*/
public function index(): JsonResponse
{
$users = User::all();
return response()->json([
'success' => true,
'data' => $users
]);
}
/**
* Store a newly created resource in storage.
*/
public function store(Request $request): JsonResponse
{
$validated = $request->validate([
'name' => 'required|string|max:255',
'email' => 'required|email|unique:users',
]);
$user = User::create($validated);
return response()->json([
'success' => true,
'data' => $user
], 201);
}
/**
* Display the specified resource.
*/
public function show(User $user): JsonResponse
{
return response()->json([
'success' => true,
'data' => $user
]);
}
/**
* Update the specified resource in storage.
*/
public function update(Request $request, User $user): JsonResponse
{
$validated = $request->validate([
'name' => 'sometimes|string|max:255',
'email' => 'sometimes|email|unique:users,email,' . $user->id,
]);
$user->update($validated);
return response()->json([
'success' => true,
'data' => $user
]);
}
/**
* Remove the specified resource from storage.
*/
public function destroy(User $user): JsonResponse
{
$user->delete();
return response()->json([
'success' => true,
'message' => 'User deleted successfully'
]);
}
}
What ships with it
60 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.
- references/ai-sdk.md 56 KB
- references/ai.md 7.2 KB
- references/artisan.md 32 KB
- references/authentication.md 45 KB
- references/authorization.md 31 KB
- references/billing.md 111 KB
- references/blade.md 68 KB
- references/boost.md 19 KB
- references/broadcasting.md 67 KB
- references/cache.md 30 KB
- references/cashier-paddle.md 64 KB
- references/collections.md 111 KB
- references/concurrency.md 2.8 KB
- references/configuration.md 19 KB
- references/console-tests.md 6.6 KB
- references/container.md 27 KB
- references/context.md 14 KB
- references/contracts.md 15 KB
- references/contributions.md 8.4 KB
- references/controllers.md 26 KB
- references/csrf.md 6.1 KB
- references/database-testing.md 8.1 KB
- references/database.md 21 KB
- references/deployment.md 10 KB
- references/documentation.md 5.0 KB
- references/dusk.md 77 KB
- references/eloquent-collections.md 13 KB
- references/eloquent-factories.md 22 KB
- references/eloquent-mutators.md 35 KB
- references/eloquent-relationships.md 94 KB
- references/eloquent-resources.md 32 KB
- references/eloquent-serialization.md 8.5 KB
- references/eloquent.md 66 KB
- references/encryption.md 3.9 KB
- references/envoy.md 12 KB
- references/errors.md 19 KB
- references/events.md 41 KB
- references/facades.md 19 KB
- references/filesystem.md 33 KB
- references/folio.md 11 KB
- references/fortify.md 35 KB
- references/frontend.md 11 KB
- references/hashing.md 5.0 KB
- references/helpers.md 98 KB
- references/homestead.md 34 KB
- references/horizon.md 29 KB
- references/http-client.md 35 KB
- references/http-tests.md 58 KB
- references/installation.md 20 KB
- references/license.md 1.0 KB
- references/lifecycle.md 7.2 KB
- references/localization.md 12 KB
- references/logging.md 23 KB
- references/mail.md 56 KB
- references/mcp.md 83 KB
- references/middleware.md 19 KB
- references/migrations.md 57 KB
- references/mix.md 1.4 KB
- references/mocking.md 9.0 KB
- references/mongodb.md 5.7 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.
- 12d ago First seen · 641 lines · 148 tokens per session scan A 371eea56a44a
laravel12 is a skill published in the GitHub repository fanqingxuan/awesome-skills (27 stars, last pushed 4mo ago), licensed MIT. It adds 148 tokens to every session and 3,604 once invoked, about $0.0007 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-specialist
Build and configure Laravel 10+ applications, including creating Eloquent models and relationships, implementing Sanctum authentication, configuring Horizon queues, designing RESTful APIs with API resources, and building reactive interfaces with Livewire. Use when creating Laravel models, setting up queue workers…
php-pro
Use when building PHP applications with modern PHP 8.3+ features, Laravel, or Symfony frameworks. Invokes strict typing, PHPStan level 9, async patterns with Swoole, and PSR standards. Creates controllers, configures middleware, generates migrations, writes PHPUnit/Pest tests, defines typed DTOs and value objects…
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-ecosystem-reference
Use when picking a non-Laravel PHP tool — Symfony components, API Platform, or Slim — and routing to implementation. Do NOT use for Laravel (laravel-expert).
php-http-psr
Use when building framework-agnostic PHP HTTP code — PSR-7/15/17/18 messages, middleware, factories, clients. Do NOT use for Laravel HTTP or Symfony HttpFoundation (not PSR-7).
scraperapi-php-sdk
Best-practices reference for the ScraperAPI PHP SDK (scraperapi/sdk Composer package). Consult whenever the user is writing, debugging, or reviewing PHP code that calls ScraperAPI. Use when user asks: "scrape a website with PHP and ScraperAPI", "ScraperAPI PHP example", "how do I use the ScraperAPI PHP SDK", "PHP…