What problem does it solve? Building admin panels and CRUD interfaces with Filament v5 requires knowing the correct primitives, namespaces, and API changes from earlier versions, and mistakes like using deprecated methods or skipping authorization checks lead to broken or insecure code. ## Core Features & Use Cases - Idiomatic Code Generation: Produces Filament v5 Resources, Forms, Tables, Infolists, Actions, Widgets, and Schema Layouts using correct v5 namespaces and APIs such as recordActions() and ->schema(). - Code Review and Debugging: Reviews Filament code for correctness, authorization gaps, and unidiomatic patterns, and diagnoses issues with structured root-cause workflows. - Panel Configuration Guidance: Covers authentication, theming, plugins, multi-tenancy, SPA mode, notifications, and deployment optimization. - Use Case: You need a Customer resource with soft deletes, filters, and an export action. The Skill scaffolds the resource, configures the table with TrashedFilter and ExportAction, and reminds you to run the queue batches and notifications table migrations. ## Quick Start Ask the assistant to create a Filament v5 resource with a form, table filters, and an export action for your Laravel model.