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 Effulgent-Point/paw --skill php-laravelgit clone --depth 1 https://github.com/Effulgent-Point/pawWrote 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/effulgent-point/paw/php-laravel)<a href="https://agentmods.dev/skills/effulgent-point/paw/php-laravel"><img src="https://agentmods.dev/badge/skills/effulgent-point/paw/php-laravel.svg" alt="Measured on agentmods" 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.00000 | $0.00585 |
| Opus 5 | $0.00000 | $0.00293 |
| Sonnet 5 | $0.00000 | $0.00117 |
| Haiku 4.5 | $0.00000 | $0.00059 |
Grade A, and why
php-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 — 50 lines — stays where its author put it; the contents beside it link to each section on GitHub.
PHP / Laravel Skill
When to use: PHP or Laravel work — Eloquent, middleware, validation, queues, migrations, testing.
Eloquent gotchas
- N+1 queries — use
with()for eager loading.$users->postsin a loop = N+1.User::with('posts')->get()= 2 queries. - Mass assignment — always use
$fillable(allowlist), not$guarded = [](denylist of nothing) - Soft deletes —
Model::all()excludes soft-deleted by default. If you need them:withTrashed(). Know which you want. - Accessor performance — never put a query inside an accessor/getter. It runs on every access.
- Check-then-write — use
firstOrCreate()/updateOrCreate()instead ofif (!exists) create. Avoids race conditions.
Middleware patterns
- Apply auth middleware at the route group level, not per-route (easy to forget one)
- Rate limiting on auth endpoints:
throttle:5,1minimum - CORS configured at middleware level, not in individual controllers
- Order matters: auth before authorization before validation
Form request validation
- Use Form Request classes for complex validation, not inline
$request->validate() authorize()method for permission checks — returnstrue/false- Custom error messages for user-facing forms
sometimesrule for optional fields that should validate only when present
Queue / job patterns
- Idempotency — jobs must be safe to retry. Use unique IDs or idempotency keys.
- Set
$triesand$timeouton every job. Defaults are rarely correct. - Implement
failed()method for cleanup on permanent failure - Unique locks —
ShouldBeUniqueinterface when duplicate dispatch is harmful - Backoff — use
$backoffproperty for exponential retry delays
Migration safety
- New columns: always
nullable()or->default()— never break existing rows - Never
dropColumn()in production without a data backup plan - Always write
down()migration and test it - Add indexes for columns used in WHERE clauses
- Separate migration deploy from code deploy when possible (expand/contract pattern)
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 · 50 lines · 0 tokens per session scan A 50a75adef635
php-laravel is a skill published in the GitHub repository Effulgent-Point/paw (2 stars, last pushed 27d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 585 tokens. 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-31.
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…
developing-with-laravel
Laravel framework patterns for PHP applications including Eloquent ORM, migrations, routing, queues, and Blade templates. Use when building Laravel applications or working with Laravel projects.
pn-php-scaffolding
Scaffolds new PHP API projects (Laravel, Slim) or routes. Use when adding a new controller/service; covers PSR standards, Composer hygiene, Laravel conventions, and idiomatic PHP 8.x patterns.
golang-samber-do
Dependency injection in Golang using samber/do — service containers, lifecycle management, scopes, health checks, graceful shutdown, and module organization. Apply when using or adopting samber/do, when the codebase imports github.com/samber/do or github.com/samber/do/v2, or when refactoring manual constructor…
laravel-best-practices
Apply this skill whenever writing, reviewing, or refactoring Laravel PHP code. This includes creating or modifying controllers, models, migrations, form requests, policies, jobs, scheduled commands, service classes, and Eloquent queries. Triggers for N+1 and query performance issues, caching strategies, authorization…
wayfinder-development
Use this skill for Laravel Wayfinder which auto-generates typed functions for Laravel controllers and routes. ALWAYS use this skill when frontend code needs to call backend routes or controller actions. Trigger when: connecting any React/Vue/Svelte/Inertia frontend to Laravel controllers, routes, building end-to-end…