From a58a90edf5f7c715c75a2dd0233c4a9129644048 Mon Sep 17 00:00:00 2001 From: Caleb White Date: Wed, 13 Aug 2025 12:23:06 -0500 Subject: [PATCH] fix: use app name as project name instead of directory name --- src/Console/InstallCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Console/InstallCommand.php b/src/Console/InstallCommand.php index bcd6e8b8..1dafe746 100644 --- a/src/Console/InstallCommand.php +++ b/src/Console/InstallCommand.php @@ -86,7 +86,7 @@ private function bootstrap(CodeEnvironmentsDetector $codeEnvironmentsDetector, H $this->selectedTargetAgents = collect(); $this->selectedTargetMcpClient = collect(); - $this->projectName = basename(base_path()); + $this->projectName = config('app.name'); } private function displayBoostHeader(): void