Skip to content

Commit 1384d88

Browse files
committed
Fix Readme
Signed-off-by: Pushpak Chhajed <[email protected]>
1 parent 589076e commit 1384d88

File tree

1 file changed

+2
-10
lines changed

1 file changed

+2
-10
lines changed

README.md

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -172,13 +172,7 @@ JSON Example:
172172

173173
## Adding Support for Custom IDE/AI Agents
174174

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`
182176

183177
### Example Implementation
184178

@@ -201,8 +195,7 @@ class OpenCode extends CodeEnvironment implements Agent, McpClient
201195

202196
### Registering the Custom Code Environment
203197

204-
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:
206199

207200
```php
208201
use Laravel\Boost\Boost;
@@ -213,7 +206,6 @@ public function boot(): void
213206
}
214207
```
215208

216-
217209
## Contributing
218210

219211
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

Comments
 (0)