Skip to main content

Introduction

This page is inspired by Laravel’s AI Assisted Development documentation. Laravel Boost is developed by the Laravel team, and you can find out more about it in their official docs, alongside other information about building Laravel projects with AI assistance.
AI coding agents like Claude Code, Cursor, and GitHub Copilot can significantly accelerate your Filament development. Filament includes guidelines for Laravel Boost that teach AI agents how to write idiomatic Filament code and follow framework conventions. Laravel Boost even allows your agent to search the Filament documentation for answers when it encounters unfamiliar requirements.

Installing Laravel Boost

Install Boost as a development dependency:
Then run the interactive installer and select Filament when prompted:
The installer will detect your IDE and AI agents, generating the necessary configuration files. To verify installation, check your AGENTS.md, CLAUDE.md, or similar file for a new Filament section. For more information about Laravel Boost, including available tools, documentation search, and IDE integration, see the Laravel AI documentation.

Filament Blueprint

The guidelines included with Boost are designed primarily for implementing agents: they help agents write correct Filament code once they know what to build. However, the quality of AI-generated code depends heavily on the quality of the plan. When an implementing agent has a clear, detailed specification, it can focus entirely on writing correct code rather than guessing at requirements or making assumptions about your intent. For complex features, you may find that agents struggle with the planning phase: choosing the right components, structuring relationships, and anticipating edge cases. A vague plan leads to vague code, and you end up spending more time correcting the agent than you saved by using it. Filament Blueprint is a premium extension that helps AI agents produce accurate, detailed implementation plans for Filament. It’s compatible with Filament v4 and above. Blueprint bridges the gap between what you want and what AI agents build. Instead of hoping an agent understands Filament’s conventions, Blueprint provides structured planning guidelines that produce unambiguous specification documents. A blueprint specifies everything an implementing agent needs:
  • Models: Attributes, casts, relationships, and enums with exact syntax
  • Resources: Full namespaces, scaffold commands, and configuration
  • Forms: Field components, validation rules, and layout structure
  • Tables: Columns, filters, actions, and sorting behavior
  • Authorization: Plain-English policy rules that translate directly to code
  • Testing: What to test and how to verify it works
  • More: Reactive fields, wizards, imports/exports, bulk actions, widgets, multi-tenancy, and more
The guidelines cover details that agents commonly get wrong, like namespaces, method names, component selection, and nested layout calculations, so the implementing agent can write correct code on the first try. The planning guidelines are designed for planning agents only, they shouldn’t consume the implementing agent’s context window. The planning agent copies all necessary details (namespaces, documentation URLs to fetch, exact method syntax) into the blueprint itself, so the implementing agent has everything it needs without loading the guidelines. If you’re interested in an example of a plan that Claude Opus 4.5 can write with and without Blueprint, visit the Blueprint Plan Example section.

Installing Blueprint

Blueprint is compatible with Filament v4 and above. Once you have purchased a license for Blueprint, install it via Composer:
Then run the Boost installer and select the Guidelines and Skills for both Filament and Filament Blueprint when prompted:
To verify installation, check your AGENTS.md, CLAUDE.md, or similar file for a new Filament Blueprint section.
To access your purchased license, sign in to Filament Packages with the email address used to purchase your Blueprint license.

Using Blueprint

To create a blueprint, enable planning mode in your AI agent and ask it to create a Filament Blueprint for your feature:
The agent will produce a detailed specification document ready for direct implementation.

Blueprint Plan Example

The following prompt was used with Claude Opus 4.5 in planning mode using Claude Code CLI:
You can read a plan written for this prompt without Blueprint vs. with Blueprint, and compare the level of detail and thoughtfulness. You could have a go at passing these plans to your AI agent of choice in implementation mode to see how they perform!
When using Blueprint, Using Filament Blueprint was added at the start of the prompt.

Running a security audit

Blueprint also ships a Filament Security Audit skill that scans a Filament codebase against a catalogue of known security misconfigurations (authorization, file uploads, XSS, query scoping, dependency CVEs, etc.) and writes a per-finding remediation plan. Every entry names the exact file, component namespace, documentation URL, and pasteable fix, so an implementing agent can apply it without guessing. Naming the skill explicitly in your prompt is the most reliable way to invoke it. The skill also responds to the keywords security-audit, security-review, harden, and pen-test when paired with a target like a panel, resource, page, or Livewire component:
The agent will produce a Markdown report grouped by finding category, plus a table of every check performed (Finding / Pass / N/A) and recommended tests for each confirmed issue.

Reporting issues with Blueprint

If you encounter any issues or have suggestions for improving Filament Blueprint, please open an issue or discussion on the Filament Blueprint Issues GitHub repository. If you have account or purchase-related questions, please email support@filamentphp.com.