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 m3taz-ahmed/ai-globals --skill laravel-filament-lordgit clone --depth 1 https://github.com/m3taz-ahmed/ai-globalsWrote 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/m3taz-ahmed/ai-globals/laravel-filament-lord)<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.
<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>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.00038 | $0.01247 |
| Opus 5 | $0.00019 | $0.00624 |
| Sonnet 5 | $0.00008 | $0.00249 |
| Haiku 4.5 | $0.00004 | $0.00125 |
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.
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]
- [CMD] Query Context7 MCP for Laravel 13 and Filament v5 docs before implementation. Use
/laravel/frameworkand/filament/filamentlibrary IDs. - [REQ] Version Detection: Read
composer.lockfor exact Laravel + Filament versions before loading tech-stack files. NEVER assume versions. - [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.mdat start. - [REQ] Filament Resource Pattern: Use
Filament\Schemas\Components(NOTFilament\Forms\...). Schema is the unified composition system in v5.Schema::make()->components([...])for both forms and infolists. - [REQ] Cluster Pattern: Organize related pages via
Clusterbase class.->discoverClusters(in:, for:)for auto-discovery. NEVER put all resources flat in one panel. - [REQ] Plugin Architecture: Every feature as a plugin (
Plugininterface:getId(),register(Panel),boot(Panel)). Register via->plugins([Plugin::make()]). UseconfigureUsing()for global defaults. - [REQ] Policy + Shield: Use
FilamentShieldfor RBAC.->shield()on resources. NEVER use$guarded = []or bypass policy gates. Every resource action must have a corresponding policy method. - [REQ] Eloquent Strict Mode:
Model::shouldBeStrict()enabled. Usedata_get($this->getAttributes(), 'column')for optional columns to avoidMissingAttributeException. NEVER access$this->optional_columndirectly. - [REQ] API Resources:
JsonResourcewithJSON_STRUCTUREconstants.->assertJsonStructure(Resource::JSON_STRUCTURE)in tests. NEVER inline response shapes in controllers. - [REQ] Vector Search (13.31+): Use
AsVectorcast for embeddings.whereVectorSimilarTo()for semantic search. Use MariaDB 11.7+ or PostgreSQL with pgvector. NEVER usearraycast for vector columns. - [REQ] Database Design: Use migrations with
Schema::create(). Index foreign keys and frequently queried columns. Use cursor pagination for >10k rows. NEVER useSELECT *in production queries. - [REQ] Testing: Pest 3+ for backend.
artisan test --filter=<test>for FAST tier.artisan testfor FULL tier. Factories + seeders, no hardcoded IDs. 80% logic, 90% API coverage. - [REQ] Tailwind v4.3: Use
@themein CSS (nottailwind.config.js). Logical properties (ms-*,me-*) for RTL/Arabic.motion-reduce:for a11y. Filament requires Tailwind v4.1+. - [REQ] Security:
FormRequestfor inputs. Parameterized queries. Whitelist$fillable. No PII in logs. JWT in HttpOnly cookies. API throttling. Sanitize HTML (DOMPurify). - [REQ] Performance:
->deferLoading()on heavy schemas. Reverb SSE for real-time (NEVER polling).->persistGroupingInSession()for table grouping. Octane for long-running with state flushing. - [REQ] RTL/Arabic:
dir="rtl"on<html>. Tailwind logical properties auto-flip. Filament SlideOver->position('left')for RTL. Store translations inlang/ar/.
[WORKFLOWS]
- Creating a Filament Resource:
php artisan make:filament-resource User→ define schema ingetFormSchema()→ add table columns → define pages → register policy → test with Pest. - API + Admin Coexistence: API resources in
app/Http/Resources/, Filament resources inapp/Filament/Resources/. Share models + scopes. Version API viaX-Api-Versionheader. - Vector Search Setup:
CREATE EXTENSION vector(PG) or MariaDB 11.7+ → migration withvectorColumn→AsVectorcast on model →whereVectorSimilarTo()in controller → Filament filter for semantic search. - Multi-tenant Panel:
->tenant(Team::class)on panel →->scopeTenancy()→ FilamentShield per-tenant roles →globalScopeon models → database row-level security.
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.
- today First seen · 59 lines · 38 tokens per session scan A 310861dbaf12
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.
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.
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.
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.
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…
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ł".
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".