What problem does it solve? Filament v5 introduced breaking namespace and API changes (unified Filament\Actions, Schemas layout components, removed BadgeColumn) that cause fatal errors when code follows older v3 patterns. This Skill routes Filament admin-panel work through the correct v5 conventions so generated or edited code uses valid APIs. ## Core Features & Use Cases - Namespace enforcement: Always loads the v5 namespace/import map first to prevent fatal errors from deprecated v3 imports like Filament\Tables\Actions. - Task-routed references: Loads only the relevant reference file (resources, forms, tables, actions, filters, relationships, widgets, panels, notifications, infolists, testing) instead of the entire Filament handbook. - Architectural guardrails: Keeps business logic out of Resource classes and delegates real work to application Actions. - Use Case: When asked to "add a suspend action to the Agent table", the Skill loads the namespaces and actions references, then implements the record action with Filament\Actions\Action, confirmation modal, and a success notification. ## Quick Start Ask the assistant to create or fix a Filament resource, form, table, action, filter, relation manager, widget, or panel configuration using Filament v5 conventions.