You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-10Lines changed: 2 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -172,13 +172,7 @@ JSON Example:
172
172
173
173
## Adding Support for Custom IDE/AI Agents
174
174
175
-
### Writing the Code Environment for an IDE/AI Agent
176
-
177
-
To create a custom code environment for an IDE, you first need to define a class that extends
178
-
`\Laravel\Boost\Install\CodeEnvironment\CodeEnvironment` and implements the appropriate contracts:
179
-
180
-
-`Laravel\Boost\Contracts\Agent`
181
-
-`Laravel\Boost\Contracts\McpClient`
175
+
To create a custom code environment for an IDE, you first need to define a class that extends `\Laravel\Boost\Install\CodeEnvironment\CodeEnvironment` and implements the contracts: `Laravel\Boost\Contracts\Agent` and `Laravel\Boost\Contracts\McpClient`
Once your implementation is complete, register the custom environment using the `Boost` facade’s
205
-
`registerCodeEnvironment` method:
198
+
Once your implementation is complete, register the custom environment using the `Boost` facade’s `registerCodeEnvironment` method:
206
199
207
200
```php
208
201
use Laravel\Boost\Boost;
@@ -213,7 +206,6 @@ public function boot(): void
213
206
}
214
207
```
215
208
216
-
217
209
## Contributing
218
210
219
211
Thank you for considering contributing to Boost! The contribution guide can be found in the [Laravel documentation](https://laravel.com/docs/contributions).
0 commit comments