|
1 | 1 | # URLs |
2 | | -- Whenever you create a URL use the `get-absolute-url` tool to ensure you're using the correct scheme, domain/IP, and port. |
| 2 | +Whenever you create a URL use the `get-absolute-url` tool to ensure you're using the correct scheme, domain / IP, and port. |
3 | 3 |
|
4 | 4 | # Artisan |
5 | | -- Use the `list-artisan-commands` tool when needing to call an artisan command to triple check the available params |
| 5 | +Use the `list-artisan-commands` tool when you need to call an artisan command to triple check the available parameters. |
6 | 6 |
|
7 | 7 | # Tinker / Debugging |
8 | | -You should use the `tinker` tool from Boost MCP when you need to run PHP to debug code or query eloquent models directly. |
9 | | -Use the `database-query` tool when you only need to read from the database. |
| 8 | +You should use the `tinker` tool from Boost MCP when you need to run PHP to debug code or query Eloquent models directly. |
10 | 9 |
|
| 10 | +Use the `database-query` tool when you only need to read from the database. |
11 | 11 |
|
12 | 12 | # Reading browser logs |
13 | 13 | Only recent browser logs will be useful, discard any that are older than two hours or so. |
14 | 14 |
|
15 | 15 | # Searching documentation |
16 | | - |
17 | 16 | Check the docs before making code changes to ensure we are approaching this in the correct way. Use multiple simple topic based queries. |
18 | 17 |
|
19 | 18 | Boost comes with a powerful `search-docs` tool you should use before any other approaches. This tool automatically passes a list of installed packages and their versions to the remote Boost API, so it returns only version-specific documentation specific for the user's circumstance. You should pass an array of packages to filter docs on if you know you need docs for particular packages. |
20 | 19 |
|
21 | | -'search-docs' tool is perfect for all Laravel related packages. Laravel, inertia, pest, livewire, nova, nightwatch, and more. |
| 20 | +The 'search-docs' tool is perfect for all Laravel related packages. Laravel, Inertia, Pest, Livewire, Nova, Nightwatch, and more. |
22 | 21 |
|
23 | 22 | You must use this tool to search for Laravel-ecosystem docs before falling back to other approaches. |
24 | 23 |
|
25 | | -## Available Search Syntax |
| 24 | +## Available search syntax |
26 | 25 | You can and should pass multiple queries at once, the most relevant will be returned first. Start specific, broaden after. |
27 | 26 |
|
28 | 27 | 1. Simple Word Searches with auto-stemming - query=authentication - finds 'authenticate' and 'auth' |
29 | 28 | 2. Multiple Words (AND Logic) - query=rate limit - finds knowledge containing both "queue" AND "worker" |
30 | | -3. Quoted Phrases (Exact Position) - query="infinite scroll - Words must be adjacent in that order |
| 29 | +3. Quoted Phrases (Exact Position) - query="infinite scroll - Words must be adjacent and in that order |
31 | 30 | 4. Mixed Queries - query=middleware "rate limit" - "middleware" AND exact phrase "rate limit" |
32 | 31 | 5. Multiple Queries - queries=["authentication", "middleware"] - ANY of these terms |
33 | 32 |
|
0 commit comments