Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
28b7b39
refactor: streamline InstallCommand structure and improve method visi…
pushpak1300 Aug 11, 2025
22babc2
refactor: replace ApplicationDetector with CodeEnvironementsDetector …
pushpak1300 Aug 11, 2025
ae44de4
Fix code styling
pushpak1300 Aug 11, 2025
a87596c
refactor: rename appDetector to codeEnvironmentsDetector in InstallCo…
pushpak1300 Aug 11, 2025
3330a76
refactor: rename development environment variables and methods to cod…
pushpak1300 Aug 11, 2025
bf5df50
refactor: update command for Windows detection and remove unused Code…
pushpak1300 Aug 11, 2025
dac17b3
refactor: remove unused CodeEnvironment contract imports and fix proj…
pushpak1300 Aug 11, 2025
7501fda
refactor: update DetectionStrategy interface to use Platform enum and…
pushpak1300 Aug 11, 2025
a330a78
refactor: remove DetectionType enum and update detection strategies t…
pushpak1300 Aug 11, 2025
76494dd
refactor: replace string literals with constants for detection types …
pushpak1300 Aug 11, 2025
644d2c5
Fix code styling
pushpak1300 Aug 11, 2025
62c79f1
refactor: update CodeEnvironementsDetector and related tests to use C…
pushpak1300 Aug 11, 2025
d00abdb
fix: initialize agentsToInstallTo and idesToInstallTo collections in …
pushpak1300 Aug 11, 2025
79c8ec3
fix: correct spelling of CodeEnvironments in InstallCommand and updat…
pushpak1300 Aug 11, 2025
649aa4c
refactor: streamline CodeEnvironmentsDetector logic and enhance relat…
pushpak1300 Aug 11, 2025
7fcdf31
feat: remove windsurf implementation
pushpak1300 Aug 11, 2025
3b97a9b
chore: remove .vscode/settings.json as it's no longer needed
pushpak1300 Aug 11, 2025
82229e2
Merge branch 'main' into cleanup_install_comamnd
pushpak1300 Aug 11, 2025
6e4c45d
Merge branch 'cleanup_install_comamnd' into cleanup_application_detector
pushpak1300 Aug 11, 2025
668af38
refactor: simplify InstallCommand by renaming methods and cleaning un…
pushpak1300 Aug 11, 2025
87bd1ab
fix: correct method call for discovering project agents in InstallCom…
pushpak1300 Aug 11, 2025
d3da2b2
Merge branch 'cleanup_application_detector' into cleanup_query_methos
pushpak1300 Aug 11, 2025
ce2d8e4
refactor: rename collections in InstallCommand for clarity and consis…
pushpak1300 Aug 11, 2025
b0a963e
Merge pull request #15 from laravel/cleanup_query_methos
ashleyhindle Aug 11, 2025
d955639
refactor: rename methods in InstallCommand for improved clarity and c…
pushpak1300 Aug 11, 2025
a25ebf5
refactor: remove unused Roster dependency from InstallCommand
pushpak1300 Aug 11, 2025
ccbfddf
Merge pull request #13 from laravel/cleanup_application_detector
ashleyhindle Aug 11, 2025
9aa8521
dx: improve install command & relative paths
ashleyhindle Aug 11, 2025
91599ac
style: rename confusing variable
ashleyhindle Aug 11, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .ai/laravel/core.blade.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## Do Things the Laravel Way
- Use `./artisan make:` commands to create new files (i.e. migrations, controllers, models, etc.).
- Use `php artisan make:` commands to create new files (i.e. migrations, controllers, models, etc.).
- If you're creating a generic PHP class, use `artisan make:class`.

## Database
Expand All @@ -11,7 +11,7 @@
- Use Laravel's query builder for very complex database operations.

## Model Creation
- When creating new models, create factories and seeders for them too. Ask the user if they need any other things, use `list-artisan-commands` to check the available options to `./artisan make:model`
- When creating new models, create factories and seeders for them too. Ask the user if they need any other things, use `list-artisan-commands` to check the available options to `php artisan make:model`

## APIs and Eloquent Resources
- For APIs, use Eloquent API Resources and API versioning
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ composer require laravel/boost --dev

Install the MCP server & guidelines
```bash
./artisan boost:install
php artisan boost:install
```

You're ready to go!
Expand Down
Loading
Loading