[ 'command' => 'command -v amp', 'paths' => ['~/.amp', '~/.config/amp'], ], Platform::Windows => [ 'command' => 'cmd /c where amp 2>nul', 'paths' => ['%USERPROFILE%\\.amp', '%USERPROFILE%\\.config\\amp'], ], }; } public function projectDetectionConfig(): array { return [ 'paths' => ['.amp'], ]; } public function mcpConfigPath(): string { return config('boost.agents.amp.mcp_config_path', base_path('.amp/settings.json')); } public function mcpConfigKey(): string { return 'amp.mcpServers'; } /** {@inheritDoc} */ public function httpMcpServerConfig(string $url): array { return ['url' => $url]; } public function guidelinesPath(): string { return config('boost.agents.amp.guidelines_path', 'AGENTS.md'); } public function skillsPath(): string { return config('boost.agents.amp.skills_path', '.agents/skills'); } }