With the release of Laravel Boost v2 you can easily install community skills in your project with the boost:add-skill command. Boost also syncs these skills across all your agents automatically:
# Short format (owner/repo)php artisan boost:add-skill vercel-labs/agent-skills # Full GitHub URLphp artisan boost:add-skill https://github.com/vercel-labs/agent-skills # With specific subdirectory pathphp artisan boost:add-skill owner/repo/.ai/skills
Another amazing improvement is Laravel's automatic discovery of guidelines and skills within Laravel packages! Maintainers can easily add AI guidelines to their packages and Boost will automatically load package guidelines when users run boost:install after installing a package:

As a package maintainer, you can add skills in the resources/boost/skills/ folder using the following pattern:
resources/boost/skills/{skill-name}/SKILL.md
See the official documentation for more details.