laravel-filament-lord

laravel-filament-lord is a skill for Claude Code, Codex from m3taz-ahmed/ai-globals. It costs 38 tokens per session (1,247 once invoked), scanned A, original, MIT.

A full-stack development guide for Laravel 13 and Filament 5, combining PHP application code, admin panels, APIs, databases, and interface work. It includes version checks, project structure, resource patterns, and plugin organization.

In plain words
What is it for?
Use it for everyday Laravel and Filament work such as creating admin resources, APIs, database-backed features, panels, and reusable plugins.
Why use it?
It gives a consistent approach to building and extending Laravel applications instead of treating each layer as an unrelated task.

Skill for Claude CodeCodex

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

Good fit Use it for everyday Laravel and Filament work such as creating admin resources, APIs, database-backed features, panels, and reusable plugins.

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

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

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/m3taz-ahmed/ai-globals/laravel-filament-lord"><img src="https://agentmods.dev/badge/skills/m3taz-ahmed/ai-globals/laravel-filament-lord.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 38 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,247 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.00038 $0.01247
Opus 5 $0.00019 $0.00624
Sonnet 5 $0.00008 $0.00249
Haiku 4.5 $0.00004 $0.00125

Measured today against content hash 310861dbaf12, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

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

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-lord/SKILL.md · 59 lines

What it actually says

Laravel + Filament Lord

[OBJ] Full-stack mastery of Laravel 13 + Filament v5 — admin panels, resources, API, database design, and UI in one cohesive workflow. This is the primary skill for daily Laravel/Filament development.

[RULES]

  1. [CMD] Query Context7 MCP for Laravel 13 and Filament v5 docs before implementation. Use /laravel/framework and /filament/filament library IDs.
  2. [REQ] Version Detection: Read composer.lock for exact Laravel + Filament versions before loading tech-stack files. NEVER assume versions.
  3. [REQ] Stack Loading: Load tech-stack/laravel-13.md, tech-stack/filament-5.md, tech-stack/php-8-5.md, tech-stack/tailwind-4-3.md at start.
  4. [REQ] Filament Resource Pattern: Use Filament\Schemas\Components (NOT Filament\Forms\...). Schema is the unified composition system in v5. Schema::make()->components([...]) for both forms and infolists.
  5. [REQ] Cluster Pattern: Organize related pages via Cluster base class. ->discoverClusters(in:, for:) for auto-discovery. NEVER put all resources flat in one panel.
  6. [REQ] Plugin Architecture: Every feature as a plugin (Plugin interface: getId(), register(Panel), boot(Panel)). Register via ->plugins([Plugin::make()]). Use configureUsing() for global defaults.
  7. [REQ] Policy + Shield: Use FilamentShield for RBAC. ->shield() on resources. NEVER use $guarded = [] or bypass policy gates. Every resource action must have a corresponding policy method.
  8. [REQ] Eloquent Strict Mode: Model::shouldBeStrict() enabled. Use data_get($this->getAttributes(), 'column') for optional columns to avoid MissingAttributeException. NEVER access $this->optional_column directly.
  9. [REQ] API Resources: JsonResource with JSON_STRUCTURE constants. ->assertJsonStructure(Resource::JSON_STRUCTURE) in tests. NEVER inline response shapes in controllers.
  10. [REQ] Vector Search (13.31+): Use AsVector cast for embeddings. whereVectorSimilarTo() for semantic search. Use MariaDB 11.7+ or PostgreSQL with pgvector. NEVER use array cast for vector columns.
  11. [REQ] Database Design: Use migrations with Schema::create(). Index foreign keys and frequently queried columns. Use cursor pagination for >10k rows. NEVER use SELECT * in production queries.
  12. [REQ] Testing: Pest 3+ for backend. artisan test --filter=<test> for FAST tier. artisan test for FULL tier. Factories + seeders, no hardcoded IDs. 80% logic, 90% API coverage.
  13. [REQ] Tailwind v4.3: Use @theme in CSS (not tailwind.config.js). Logical properties (ms-*, me-*) for RTL/Arabic. motion-reduce: for a11y. Filament requires Tailwind v4.1+.
  14. [REQ] Security: FormRequest for inputs. Parameterized queries. Whitelist $fillable. No PII in logs. JWT in HttpOnly cookies. API throttling. Sanitize HTML (DOMPurify).
  15. [REQ] Performance: ->deferLoading() on heavy schemas. Reverb SSE for real-time (NEVER polling). ->persistGroupingInSession() for table grouping. Octane for long-running with state flushing.
  16. [REQ] RTL/Arabic: dir="rtl" on <html>. Tailwind logical properties auto-flip. Filament SlideOver ->position('left') for RTL. Store translations in lang/ar/.

[WORKFLOWS]

  1. Creating a Filament Resource: php artisan make:filament-resource User → define schema in getFormSchema() → add table columns → define pages → register policy → test with Pest.
  2. API + Admin Coexistence: API resources in app/Http/Resources/, Filament resources in app/Filament/Resources/. Share models + scopes. Version API via X-Api-Version header.
  3. Vector Search Setup: CREATE EXTENSION vector (PG) or MariaDB 11.7+ → migration with vectorColumnAsVector cast on model → whereVectorSimilarTo() in controller → Filament filter for semantic search.
  4. Multi-tenant Panel: ->tenant(Team::class) on panel → ->scopeTenancy() → FilamentShield per-tenant roles → globalScope on models → database row-level security.
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. today First seen · 59 lines · 38 tokens per session scan A 310861dbaf12

Subscribe to this mod's changes

laravel-filament-lord is a skill published in the GitHub repository m3taz-ahmed/ai-globals (5 stars, last pushed yesterday), licensed MIT. It adds 38 tokens to every session and 1,247 once invoked, about $0.0002 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-09-12.

Related

Other skills, from other repositories

nextjs-pages-router

Set up tRPC in Next.js Pages Router with createNextApiHandler, createTRPCNext, withTRPC HOC, SSR via ssr option and ssrPrepass, SSG via createServerSideHelpers with getStaticProps, and server-side helpers for getServerSideProps prefetching.

trpc/trpc · 67 tokens

with-tanstack-query

Compose Angular Query with signal-owned Table filtering, sorting, and pagination state using reactive query options, manual row-model boundaries, direct query data, server counts, and valid injection context.

TanStack/table · 42 tokens

auth-web-cloudbase

CloudBase Web Authentication Quick Guide for frontend integration after auth-tool has already been checked. Provides concise and practical Web authentication solutions with multiple login methods and complete user management.

TencentCloudBase/CloudBase-AI-Toolkit · 38 tokens

service-digital-engagement-channel-configure

Configures and deploys enhanced chat Messaging Channels for Messaging for In-App and Web (MIAW). Use when the user needs to create, deploy, and activate a messaging channel configured with Omni-Channel Flow, Omni-Channel Queue, User, or Agentforce Service Agent routing. Generates MessagingChannel metadata, deploys it…

forcedotcom/sf-skills · 173 tokens

om-system-extension

Extend installed Open Mercato modules through UMES enrichers, interceptors, mutation guards, widgets, menus, entity extensions, events, component/page replacements, and overrides. Use for "extend core", "add field/column/action", "hide page", "intercept API", "UMES", or "rozszerz moduł".

open-mercato/open-mercato · 73 tokens

selenide-skill

Generates Selenide tests in Java. Concise UI testing framework built on Selenium with automatic waits and fluent API. Use when user mentions "Selenide", "$(selector)", "shouldBe(visible)", "Selenide Java". Triggers on: "Selenide", "$() selector", "shouldBe", "shouldHave", "Selenide test".

LambdaTest/agent-skills · 80 tokens