laravel-filament

laravel-filament is a skill for Claude Code, Codex from majdghithan/agent-skills. It costs 129 tokens per session (1,366 once invoked), scanned A, original, MIT.

A version-aware guide for Filament, a Laravel toolkit for building admin panels and app interfaces. It covers Filament versions 1 through 5 and first identifies which version the project uses.

In plain words
What is it for?
Building or upgrading Filament panels, forms, tables, actions, relation managers, widgets, and multi-tenant features in Laravel applications.
Why use it?
Filament's programming interface changed between major versions, so examples for one version may be wrong for another. This helps avoid applying outdated instructions when building or reviewing Filament code.

Skill for Claude CodeCodex

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

Good fit Building or upgrading Filament panels, forms, tables, actions, relation managers, widgets, and multi-tenant features in Laravel applications.

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

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

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/majdghithan/agent-skills/laravel-filament"><img src="https://agentmods.dev/badge/skills/majdghithan/agent-skills/laravel-filament.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 129 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,366 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.00129 $0.01366
Opus 5 $0.00064 $0.00683
Sonnet 5 $0.00026 $0.00273
Haiku 4.5 $0.00013 $0.00137

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

Security

Grade A, and why

laravel-filament 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.

skills/laravel-filament/SKILL.md · 72 lines

How it starts

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

Laravel Filament (v1 - v5)

Filament is a collection of TALL-stack (Tailwind, Alpine, Laravel, Livewire) packages for building admin panels and app UIs. Its API has changed substantially across major versions, so the same code is right on one version and wrong on another. This skill's core discipline: find out which version is installed, then apply only that version's rules.

Step 1 - Detect the installed version FIRST (do not skip)

Never write or review Filament code before you know the major version. Determine it, in order of preference:

# Most reliable - the resolved installed version:
composer show filament/filament | grep -i '^versions'
# or
php artisan about | grep -i filament

# From the constraint (tells you the intended major):
grep '"filament/filament"' composer.json          # e.g. "^3.2", "^4.0", "^5.0"

# Fallback - read the locked version directly:
grep -A2 '"name": "filament/filament"' composer.lock | grep version

Map the result to a major: 1.x, 2.x, 3.x, 4.x, or 5.x. If Filament is not yet installed and the user is starting fresh, default to the latest stable and confirm with them. If you truly cannot determine the version, ask - do not guess.

Step 2 - Load the matching reference

Read the reference file for the detected major before giving version-specific syntax. Each file has that version's real namespaces, class names, method signatures, patterns, and gotchas.

Version Era (one-liner) Reference
v1 Earliest release, pre-panel references/filament-v1.md
v2 The TALL-stack admin panel (Livewire 2) references/filament-v2.md
v3 Unified "panels", split packages (forms/tables/etc.) references/filament-v3.md
v4 Schema unification + performance rewrite; the big break from v3 references/filament-v4.md
v5 v4 API + Livewire v4 support (no new Filament features vs v4) references/filament-v5.md

Key mental model: the real API divide is v3 vs v4. v4 and v5 share almost the entire API surface - v5 is a major bump only to support Livewire v4, with no breaking changes to forms/tables/actions/resources. So v4/v5 guidance is nearly identical; when on v5, apply v4 rules plus the Livewire-4 notes.

Read the full file on GitHub · 72 lines

Files

What ships with it

9 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. 12d ago First seen · 72 lines · 129 tokens per session scan A 2898479b71ea

Subscribe to this mod's changes

laravel-filament is a skill published in the GitHub repository majdghithan/agent-skills (7 stars, last pushed 1mo ago), licensed MIT. It adds 129 tokens to every session and 1,366 once invoked, about $0.0006 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

olakunlevpn-filament-skills

Use when writing, reviewing, or refactoring Filament PHP v5 code -- resources, forms, tables, infolists, actions, widgets, panels, relation managers, multi-tenancy, testing, or plugin development. Always apply these standards to all Filament work.

olakunlevpn/olakunlevpn-filament-skills · 64 tokens

powergrid-theme

Create or update a PowerGrid v7 theme using the Theme abstract class, per-section token methods (layout/header/table/footer/cols/tabs plus filter/editable/toggleable), config themeoverrides, or ArrayTheme.

Power-Components/livewire-powergrid · 49 tokens

upgrade-theme-v6-to-v7

Migrates a v6 Theme class to the v7 architecture: a tiny struct() plus per-section token methods (layout/header/table/footer/cols/tabs + filter/editable/toggleable) with parentTheme inheritance.

Power-Components/livewire-powergrid · 52 tokens

laravel-livewire

Build dynamic, reactive Laravel applications using Livewire. Create real-time interfaces without writing JavaScript for SPA-like experiences.

AtulPurohit/Antigravity-Awesome-Skills · 28 tokens

angular-architect

Generates Angular 17+ standalone components, configures advanced routing with lazy loading and guards, implements NgRx state management, applies RxJS patterns, and optimizes bundle performance. Use when building Angular 17+ applications with standalone components or signals, setting up NgRx stores, establishing RxJS…

Jeffallan/claude-skills · 77 tokens

accessibility

Audit and improve web accessibility following WCAG 2.2 guidelines. Use when asked to "improve accessibility", "a11y audit", "WCAG compliance", "screen reader support", "keyboard navigation", or "make accessible".

addyosmani/web-quality-skills · 51 tokens