@smithery/cli 1.0.2 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/constants.js +1 -1
- package/dist/index.js +12 -12
- package/dist/utils/config-manager.js +2 -1
- package/package.json +1 -1
|
@@ -111,7 +111,8 @@ export class ConfigManager {
|
|
|
111
111
|
// Define client paths using the platform-specific base directories
|
|
112
112
|
const clientPaths = {
|
|
113
113
|
claude: path.join(baseDir, "Claude", "claude_desktop_config.json"),
|
|
114
|
-
cline: path.join(baseDir, vscodePath, "saoudrizwan.claude-dev", "settings", "cline_mcp_settings.json")
|
|
114
|
+
cline: path.join(baseDir, vscodePath, "saoudrizwan.claude-dev", "settings", "cline_mcp_settings.json"),
|
|
115
|
+
"roo-cline": path.join(baseDir, vscodePath, "rooveterinaryinc.roo-cline", "settings", "cline_mcp_settings.json")
|
|
115
116
|
};
|
|
116
117
|
ConfigManager.configPath = clientPaths.claude;
|
|
117
118
|
ConfigManager.clientPaths = clientPaths;
|