Skip to content

Commit ce37522

Browse files
chore: refine Boost README and run boost:update on composer update
1 parent f52103e commit ce37522

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,9 @@ npm run build
5050
php artisan serve
5151
```
5252

53-
After `composer install`, run **`php artisan boost:install`** once per project. [Laravel Boost](https://github.com/laravel/boost) publishes IDE and tooling files (for example Cursor rules and MCP configuration) that embed your app’s real paths and local setup, so they are not committed from the starter kit and must be generated on your machine.
53+
After `composer install`, run **`php artisan boost:install`** once per project. [Laravel Boost](https://github.com/laravel/boost) writes the editor and assistant integrations this stack expects—guidance rules, MCP configuration, and the rest—already scoped to your paths and environment. Those files are intentionally omitted from the starter kit, so you generate them locally after install.
54+
55+
If you use an AI-powered editor or coding assistant, enable **MCP** (Model Context Protocol) for this project in that tool’s settings, then turn on the Laravel Boost MCP server. Your assistant can then reach Boost’s Laravel-aware tools instead of working without project context.
5456

5557
## Features
5658

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@
5454
"@php artisan filament:upgrade"
5555
],
5656
"post-update-cmd": [
57-
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
57+
"@php artisan vendor:publish --tag=laravel-assets --ansi --force",
58+
"@php artisan boost:update --ansi"
5859
],
5960
"post-root-package-install": [
6061
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""

0 commit comments

Comments
 (0)