scaffold-filament-page
Installation
SKILL.md
Scaffold Filament Page
Use this skill when you need a dashboard, settings page, or report view that is NOT attached to a specific Model Resource.
Context
Custom pages are useful for "dashboard" like views, settings, or tools that don't map 1:1 to a database record.
Tools
scaffold-filament-resource: Use that skill if the page IS attached to a model.
Rules
1. Navigation Grouping
- Always define
protected static ?string $navigationGroup = 'Settings';(or appropriate group). - Use
protected static ?int $navigationSortto order items.