From filament-specialist
References FilamentPHP v4 docs for forms, tables, actions, resources, infolists, widgets, and patterns to verify methods and implementations.
How this skill is triggered — by the user, by Claude, or both
Slash command
/filament-specialist:docsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill provides access to the complete FilamentPHP v4 official documentation. Use this skill to look up exact implementations, method signatures, and patterns before generating any Filament code.
rebuildFilamentDocs.shreferences/actions/01-overview.mdreferences/actions/02-modals.mdreferences/actions/03-grouping-actions.mdreferences/actions/04-create.mdreferences/actions/05-edit.mdreferences/actions/06-view.mdreferences/actions/07-delete.mdreferences/actions/08-replicate.mdreferences/actions/09-force-delete.mdreferences/actions/10-restore.mdreferences/actions/11-import.mdreferences/actions/12-export.mdreferences/forms/01-overview.mdreferences/forms/02-text-input.mdreferences/forms/03-select.mdreferences/forms/04-checkbox.mdreferences/forms/05-toggle.mdreferences/forms/06-checkbox-list.mdreferences/forms/07-radio.mdThis skill provides access to the complete FilamentPHP v4 official documentation. Use this skill to look up exact implementations, method signatures, and patterns before generating any Filament code.
All documentation is stored in:
/home/mwguerra/projects/mwguerra/claude-code-plugins/filament-specialist/skills/docs/references/
references/
├── actions/ # Action buttons and modals
│ └── *.md # Action types and configurations
├── forms/ # Form components
│ └── *.md # All form field types
├── general/
│ ├── 01-introduction/ # Getting started, installation
│ ├── 03-resources/ # CRUD resources
│ ├── 06-navigation/ # Menu and navigation
│ ├── 07-users/ # Auth and permissions
│ ├── 08-styling/ # Themes and CSS
│ ├── 09-advanced/ # Advanced patterns
│ ├── 10-testing/ # Testing guide
│ ├── 11-plugins/ # Plugin development
│ └── 12-components/ # UI components
├── infolists/ # Infolist entries
│ └── *.md # Display components
├── notifications/ # Notification system
│ └── *.md # Toast and DB notifications
├── schemas/ # Schema validation
│ └── *.md # Schema patterns
├── tables/ # Table components
│ ├── 02-columns/ # Column types
│ └── 03-filters/ # Filter types
└── widgets/ # Dashboard widgets
└── *.md # Widget types
| Topic | Directory |
|---|---|
| Resource creation | general/03-resources/ |
| Form fields | forms/ |
| Table columns | tables/02-columns/ |
| Table filters | tables/03-filters/ |
| Actions | actions/ |
| Widgets | widgets/ |
| Infolists | infolists/ |
| Testing | general/10-testing/ |
| Styling | general/08-styling/ |
| Navigation | general/06-navigation/ |
| Auth/Permissions | general/07-users/ |
| Plugin Development | general/11-plugins/ |
When reading documentation:
forms/ directorytables/02-columns/After reading documentation, provide:
npx claudepluginhub mwguerra/claude-code-plugins --plugin filament-specialistGenerates FilamentPHP v4 infolists with text, icon, image entries, sections, and layouts for read-only data display on view pages and modals.
Livewire 3 reactive components - wire:model, actions, events, Volt, Folio. Use when building reactive UI without JavaScript.
Guides DocType creation in Frappe/ERPNext with JSON structure, field types, Python controllers, naming patterns, permissions, and relationships. Use for data modeling and document setup.