laravel-13-expert

laravel-13-expert is a skill for Claude Code, Codex from Deixtra-Private-Limited/claude-laravel-13-skill. It costs 105 tokens per session (4,224 once invoked), scanned A, original, MIT.

A reference skill for Laravel 13, a PHP web framework, covering application setup, routing, databases, authentication, queues, caching, AI features, and other framework areas.

In plain words
What is it for?
Use it when building, configuring, upgrading, or troubleshooting Laravel 13 applications, including features such as Eloquent, Blade, Redis, queues, and Laravel MCP.
Why use it?
It gives a coding agent framework-specific guidance instead of relying on generic PHP advice.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it when building, configuring, upgrading, or troubleshooting Laravel 13 applications, including features such as Eloquent, Blade, Redis, queues, and Laravel MCP.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/deixtra-private-limited/claude-laravel-13-skill/claude-laravel-13-skill
Install

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.

Any agent
npx skills add Deixtra-Private-Limited/claude-laravel-13-skill --skill claude-laravel-13-skill
Clone the repo
git clone --depth 1 https://github.com/Deixtra-Private-Limited/claude-laravel-13-skill

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for laravel-13-expert

README.md
[![agentmods](https://agentmods.dev/badge/skills/deixtra-private-limited/claude-laravel-13-skill/claude-laravel-13-skill/github.svg)](https://agentmods.dev/skills/deixtra-private-limited/claude-laravel-13-skill/claude-laravel-13-skill)
Your own site
<a href="https://agentmods.dev/skills/deixtra-private-limited/claude-laravel-13-skill/claude-laravel-13-skill"><img src="https://agentmods.dev/badge/skills/deixtra-private-limited/claude-laravel-13-skill/claude-laravel-13-skill/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.

agentmods 80×15 button for laravel-13-expert

Your own site · 80×15
<a href="https://agentmods.dev/skills/deixtra-private-limited/claude-laravel-13-skill/claude-laravel-13-skill"><img src="https://agentmods.dev/badge/skills/deixtra-private-limited/claude-laravel-13-skill/claude-laravel-13-skill.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 105 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,224 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00105 $0.04224
Opus 5 $0.00053 $0.02112
Sonnet 5 $0.00021 $0.00845
Haiku 4.5 $0.00011 $0.00422

Measured 12d ago against content hash 582c81c42934, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

laravel-13-expert scanned grade A with 1 finding 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

/bin/bash -c "$(curl -fsSL https://php.new/install/mac/8.4)" # macOS
SKILL.md · 692 lines

How it starts

The opening of the file, as written. The whole thing — 692 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Laravel 13 Expert

Complete reference for building production-grade Laravel 13.x applications. Laravel 13 was released March 17, 2026 and requires PHP 8.3+.

When to read reference files

This skill is organized with a main SKILL.md (this file) covering core concepts, and reference files for deep-dive topics. Read the appropriate reference file when the task involves:

  • AI SDK, agents, tools, embeddings, images, audio, MCP → Read references/ai-features.md
  • Upgrading from Laravel 12 to 13 → Read references/upgrade-guide.md

What's New in Laravel 13

Laravel 13 focuses on AI-native workflows, stronger defaults, and more expressive APIs. Key additions:

First-Party AI SDK (laravel/ai)

A unified API for text generation, tool-calling agents, embeddings, audio, images, and vector-store integrations. Provider-agnostic (OpenAI, Anthropic, Gemini, xAI, Mistral, Ollama, etc.).

use App\Ai\Agents\SalesCoach;

$response = SalesCoach::make()->prompt('Analyze this sales transcript...');
return (string) $response;

Laravel MCP (laravel/mcp)

Build Model Context Protocol servers so AI clients can interact with your Laravel app. Define servers, tools, resources, and prompts.

use Laravel\Mcp\Facades\Mcp;
Mcp::web('/mcp/weather', WeatherServer::class);

Laravel Boost (laravel/boost)

MCP server that gives AI agents Laravel-specific context, 15+ tools, 17,000+ pieces of vectorized docs, and AI guidelines.

composer require laravel/boost --dev
php artisan boost:install

JSON:API Resources

First-party JSON:API compliant resource serialization with relationship inclusion, sparse fieldsets, and links.

Queue Routing

Central routing rules for jobs by class:

Queue::route(ProcessPodcast::class, connection: 'redis', queue: 'podcasts');

Expanded PHP Attributes

Declarative controller and job configuration:

#[Middleware('auth')]
class CommentController
{
    #[Middleware('subscribed')]
    #[Authorize('create', [Comment::class, 'post'])]
    public function store(Post $post) { /* ... */ }
}

Read the full file on GitHub · 692 lines

Changes

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.

  1. 12d ago First seen · 692 lines · 105 tokens per session scan A 582c81c42934

Subscribe to this mod's changes

laravel-13-expert is a skill published in the GitHub repository Deixtra-Private-Limited/claude-laravel-13-skill (2 stars, last pushed 5mo ago), licensed MIT. It adds 105 tokens to every session and 4,224 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

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.

personamanagmentlayer/pcl · 64 tokens

filament-plugin-development

Build and publish custom Filament plugins (Filament is the Laravel admin-panel framework). Use when creating a Filament plugin/package, implementing the Plugin contract, scaffolding from the plugin skeleton, registering assets/resources/pages/render-hooks, making a configurable plugin, testing it, or publishing to…

majdghithan/agent-skills · 105 tokens

laravel-upgrade

Upgrade a Laravel application across major versions safely (Laravel 8 -> 9 -> 10 -> 11 -> 12 -> 13), one hop at a time. Use when upgrading Laravel, when a composer update fails after a major bump, when deciding whether to hop versions by hand or pay for Laravel Shift, or when something compiled fine but broke at…

majdghithan/agent-skills · 174 tokens

build-me

Implement a solution write-up (typically the markdown file produced by /solve-me) in this Laravel project, following existing project patterns and Laravel best practices. Cuts the work into commits itself, writes the commit plan to docs/build/ .md, and gets the developer's approval before writing any code. Then builds…

Kerliula/ship-me · 173 tokens

wp-php-architecture

WordPress PHP architecture patterns — repository, service layer, DDD, SOLID, plugin/theme structure, CPT design, and anti-patterns. The definitive reference for professional WordPress PHP development.

xonack/wp-php-architecture-claude-skill · 45 tokens

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…

Jeffallan/claude-skills · 86 tokens