laravel-frontend

laravel-frontend is a skill for Claude Code from infohata/mind-vault. It costs 177 tokens per session (3,795 once invoked), scanned A, original, Apache-2.0.

A set of frontend conventions for Laravel 12, a PHP web framework, covering server-rendered pages, partial page updates, touch behavior, and optional client-side layers.

In plain words
What is it for?
It helps build Blade templates, reusable components, fragment endpoints, and touch-friendly interfaces using Bootstrap-style CSS, Vite, vanilla JavaScript, HTMX-style requests, Livewire, or Inertia.
Why use it?
It gives the browser and server clear rules for returning full pages or smaller fragments while keeping the default interface simple.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the mv plugin — 23 skills, 6 commands, 8 agents, 2 hooks shipped together

Good fit It helps build Blade templates, reusable components, fragment endpoints, and touch-friendly interfaces using Bootstrap-style CSS, Vite, vanilla JavaScript, HTMX-style requests, Livewire, or Inertia.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/infohata/mind-vault/laravel-frontend
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 infohata/mind-vault --skill laravel-frontend
Clone the repo
git clone --depth 1 https://github.com/infohata/mind-vault

Made for: Claude Code.

Or install mv, the plugin that ships this one along with the rest of its 23 skills, 6 commands, 8 agents, 2 hooks.

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-frontend

README.md
[![agentmods](https://agentmods.dev/badge/skills/infohata/mind-vault/laravel-frontend/github.svg)](https://agentmods.dev/skills/infohata/mind-vault/laravel-frontend)
Your own site
<a href="https://agentmods.dev/skills/infohata/mind-vault/laravel-frontend"><img src="https://agentmods.dev/badge/skills/infohata/mind-vault/laravel-frontend/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-frontend

Your own site · 80×15
<a href="https://agentmods.dev/skills/infohata/mind-vault/laravel-frontend"><img src="https://agentmods.dev/badge/skills/infohata/mind-vault/laravel-frontend.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 177 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,795 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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.00177 $0.03795
Opus 5 $0.00088 $0.01898
Sonnet 5 $0.00035 $0.00759
Haiku 4.5 $0.00018 $0.00380

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

Security

Grade A, and why

laravel-frontend 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 11d 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.

skills/laravel-frontend/SKILL.md · 190 lines

How it starts

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

laravel-frontend

Production frontend patterns for Laravel 12, organised around the four client-surface contract concerns. The baseline is plain server-rendered Blade + a Bootstrap-style CSS framework + Vite + minimal vanilla JS (native fetch — axios is a drop-in alternative the adopter happens to use) — the actual stack of a real Laravel 12 rework PoC (server-rendered Blade, Bootstrap 5, Vite, vanilla JS; NO Livewire / Inertia / Flux / Tailwind / Alpine). Philosophy: the server renders truth as HTML, the browser does the minimum to enhance it. Livewire 4 and Inertia 2 are presented as opt-in variant layers, clearly marked [Variant: Livewire] / [Variant: Inertia]; Flux is a license-gated Livewire UI kit, never the default.

Pairs with: laravel for backend conventions (Form Requests, Eloquent eager-loading, Policies, queues). Load both on full-stack feature work — e.g. a controller returning a Blade fragment on an HX-Request and the full page otherwise.

When to use

TRIGGER when: editing Blade templates (resources/views/*.blade.php); wiring a server-rendered partial / fragment endpoint; adding a Blade component (<x-…>) or anonymous component; configuring or extending the Vite build (vite.config.js, resources/js/app.js); writing the vanilla-JS submit-lock; or working in a project that has opted into Livewire (wire:* attributes, app/Livewire/*), Inertia (@inertia, resources/js/Pages/*), or Flux (<flux:…>).

SKIP for: backend-only work (use laravel); pure API/JSON services with no server-rendered views; mobile-native clients; heavy offline-first PWAs needing a full client framework + API backend.

Stack / variant table

Layer What it is When it applies
Baseline — plain Blade Server-rendered Blade + Bootstrap-style CSS + Vite + minimal vanilla JS (native fetch; axios optional). No reactive framework. Default. Assume this unless a variant is detected or pinned.
[Variant: Livewire 4] PHP component classes; wire:* directives; bundled Alpine for local-only UI. Ships in L12 starter kits. Project has wire:* in views / app/Livewire/*.
[Variant: Inertia 2] Vue 3 / React 19 / Svelte 5 SFCs; JSON props over the adapter; client-side routing. Project has @inertia + resources/js/Pages/*.
Flux (UI kit, not a variant) Livewire's first-party <flux:…> component kit. Free tier + Pro tier (license-gated). Livewire-only, and only when Tailwind + Flux are installed. Never baseline.

Read the full file on GitHub · 190 lines

Files

What ships with it

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

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. 11d ago First seen · 190 lines · 177 tokens per session scan A a5257fa9dd1b

Subscribe to this mod's changes

laravel-frontend is a skill published in the GitHub repository infohata/mind-vault (2 stars, last pushed yesterday), licensed Apache-2.0. It adds 177 tokens to every session and 3,795 once invoked, about $0.0009 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-31.

Related

Other skills, from other repositories

symfony-backend

Use this skill when building Symfony backend applications — bundles, Doctrine ORM, Twig templates, Flex recipes, Messenger component. This skill enforces: service container autowiring, proper bundle structure, Doctrine mapping conventions, Flex-driven configuration. Do NOT use for: Laravel projects, WordPress plugins…

j4flmao/agent-skills · 69 tokens

livewire-flux

Livewire 4 + Flux UI component scaffolder and pattern guide for Laravel projects. Generates Livewire components using Flux UI primitives — forms, data tables, modals, notifications, file uploads with Spatie Media Library, and role-gated UI with Spatie Permission. Supports both full-class and Volt single-file…

nasrulhazim/claude · 225 tokens

electrik-slate

Build Laravel Blade UI with Electrik Slate 3.x and optional slate-blocks. Use when writing x-slate or x-slate-block components, Livewire forms, tokens, toasts, blocks, or when the user mentions Slate, electrik/slate, electrik/slate-blocks, or slate.electrik.dev.

electrikhq/slate · 72 tokens

laravel-vite

Complete Vite bundling for Laravel - assets, HMR, SSR, frameworks, optimization. Use when configuring frontend build pipeline.

fusengine/agents · 31 tokens

laravel:blade-components-and-layouts

Compose UIs with Blade components, slots, and layouts; keep templates pure and testable.

jpcaparas/superpowers-laravel · 27 tokens

spatie-guidelines

Spatie's PHP, Laravel, JavaScript and Vue coding guidelines and conventions. Use when writing or reviewing PHP, Laravel, JavaScript, or Vue code for Spatie projects or packages. Covers code style, type declarations, docblocks, control flow, naming, routing, controllers, Blade, validation, comments, testing (Pest)…

freekmurze/dotfiles · 113 tokens