1use std::path::PathBuf;
2
3struct EditorTarget {
4 name: &'static str,
5 agent_key: &'static str,
6 config_path: PathBuf,
7 detect_path: PathBuf,
8 config_type: ConfigType,
9}
10
11enum ConfigType {
12 McpJson,
13 Zed,
14 Codex,
15 VsCodeMcp,
16 OpenCode,
17}
18
19pub fn run_setup() {
20 use crate::terminal_ui;
21
22 let home = match dirs::home_dir() {
23 Some(h) => h,
24 None => {
25 eprintln!("Cannot determine home directory");
26 std::process::exit(1);
27 }
28 };
29
30 let binary = std::env::current_exe()
31 .map(|p| p.to_string_lossy().to_string())
32 .unwrap_or_else(|_| "lean-ctx".to_string());
33
34 let home_str = home.to_string_lossy().to_string();
35
36 terminal_ui::print_setup_header();
37
38 terminal_ui::print_step_header(1, 5, "Shell Hook");
40 crate::cli::cmd_init(&["--global".to_string()]);
41
42 terminal_ui::print_step_header(2, 5, "AI Tool Detection");
44
45 let targets = build_targets(&home, &binary);
46 let mut newly_configured: Vec<&str> = Vec::new();
47 let mut already_configured: Vec<&str> = Vec::new();
48 let mut not_installed: Vec<&str> = Vec::new();
49 let mut errors: Vec<&str> = Vec::new();
50
51 for target in &targets {
52 let short_path = shorten_path(&target.config_path.to_string_lossy(), &home_str);
53
54 if !target.detect_path.exists() {
55 not_installed.push(target.name);
56 continue;
57 }
58
59 let has_config = target.config_path.exists()
60 && std::fs::read_to_string(&target.config_path)
61 .map(|c| c.contains("lean-ctx"))
62 .unwrap_or(false);
63
64 if has_config {
65 terminal_ui::print_status_ok(&format!(
66 "{:<20} \x1b[2m{short_path}\x1b[0m",
67 target.name
68 ));
69 already_configured.push(target.name);
70 continue;
71 }
72
73 match write_config(target, &binary) {
74 Ok(()) => {
75 terminal_ui::print_status_new(&format!(
76 "{:<20} \x1b[2m{short_path}\x1b[0m",
77 target.name
78 ));
79 newly_configured.push(target.name);
80 }
81 Err(e) => {
82 terminal_ui::print_status_warn(&format!("{}: {e}", target.name));
83 errors.push(target.name);
84 }
85 }
86 }
87
88 let total_ok = newly_configured.len() + already_configured.len();
89 if total_ok == 0 && errors.is_empty() {
90 terminal_ui::print_status_warn(
91 "No AI tools detected. Install one and re-run: lean-ctx setup",
92 );
93 }
94
95 if !not_installed.is_empty() {
96 println!(
97 " \x1b[2m○ {} not detected: {}\x1b[0m",
98 not_installed.len(),
99 not_installed.join(", ")
100 );
101 }
102
103 terminal_ui::print_step_header(3, 5, "Agent Rules");
105 let rules_result = crate::rules_inject::inject_all_rules(&home);
106 for name in &rules_result.injected {
107 terminal_ui::print_status_new(&format!("{name:<20} \x1b[2mrules injected\x1b[0m"));
108 }
109 for name in &rules_result.updated {
110 terminal_ui::print_status_new(&format!("{name:<20} \x1b[2mrules updated\x1b[0m"));
111 }
112 for name in &rules_result.already {
113 terminal_ui::print_status_ok(&format!("{name:<20} \x1b[2mrules up-to-date\x1b[0m"));
114 }
115 for err in &rules_result.errors {
116 terminal_ui::print_status_warn(err);
117 }
118 if rules_result.injected.is_empty()
119 && rules_result.updated.is_empty()
120 && rules_result.already.is_empty()
121 && rules_result.errors.is_empty()
122 {
123 terminal_ui::print_status_skip("No agent rules needed");
124 }
125
126 for target in &targets {
128 if !target.detect_path.exists() || target.agent_key.is_empty() {
129 continue;
130 }
131 crate::hooks::install_agent_hook(target.agent_key, true);
132 }
133
134 terminal_ui::print_step_header(4, 5, "Environment Check");
136 let lean_dir = home.join(".lean-ctx");
137 if !lean_dir.exists() {
138 let _ = std::fs::create_dir_all(&lean_dir);
139 terminal_ui::print_status_new("Created ~/.lean-ctx/");
140 } else {
141 terminal_ui::print_status_ok("~/.lean-ctx/ ready");
142 }
143 crate::doctor::run();
144
145 terminal_ui::print_step_header(5, 5, "Help Improve lean-ctx");
147 println!(" Share anonymous compression stats to make lean-ctx better.");
148 println!(" \x1b[1mNo code, no file names, no personal data — ever.\x1b[0m");
149 println!();
150 print!(" Enable anonymous data sharing? \x1b[1m[Y/n]\x1b[0m ");
151 use std::io::Write;
152 std::io::stdout().flush().ok();
153
154 let mut input = String::new();
155 let contribute = if std::io::stdin().read_line(&mut input).is_ok() {
156 let answer = input.trim().to_lowercase();
157 answer.is_empty() || answer == "y" || answer == "yes"
158 } else {
159 false
160 };
161
162 if contribute {
163 let config_dir = home.join(".lean-ctx");
164 let _ = std::fs::create_dir_all(&config_dir);
165 let config_path = config_dir.join("config.toml");
166 let mut config_content = std::fs::read_to_string(&config_path).unwrap_or_default();
167 if !config_content.contains("[cloud]") {
168 if !config_content.is_empty() && !config_content.ends_with('\n') {
169 config_content.push('\n');
170 }
171 config_content.push_str("\n[cloud]\ncontribute_enabled = true\n");
172 let _ = std::fs::write(&config_path, config_content);
173 }
174 terminal_ui::print_status_ok("Enabled — thank you!");
175 } else {
176 terminal_ui::print_status_skip("Skipped — enable later with: lean-ctx config");
177 }
178
179 println!();
181 println!(
182 " \x1b[1;32m✓ Setup complete!\x1b[0m \x1b[1m{}\x1b[0m configured, \x1b[2m{} already set, {} skipped\x1b[0m",
183 newly_configured.len(),
184 already_configured.len(),
185 not_installed.len()
186 );
187
188 if !errors.is_empty() {
189 println!(
190 " \x1b[33m⚠ {} error{}: {}\x1b[0m",
191 errors.len(),
192 if errors.len() != 1 { "s" } else { "" },
193 errors.join(", ")
194 );
195 }
196
197 let shell = std::env::var("SHELL").unwrap_or_default();
199 let source_cmd = if shell.contains("zsh") {
200 "source ~/.zshrc"
201 } else if shell.contains("fish") {
202 "source ~/.config/fish/config.fish"
203 } else if shell.contains("bash") {
204 "source ~/.bashrc"
205 } else {
206 "Restart your shell"
207 };
208
209 let dim = "\x1b[2m";
210 let bold = "\x1b[1m";
211 let cyan = "\x1b[36m";
212 let yellow = "\x1b[33m";
213 let rst = "\x1b[0m";
214
215 println!();
216 println!(" {bold}Next steps:{rst}");
217 println!();
218 println!(" {cyan}1.{rst} Reload your shell:");
219 println!(" {bold}{source_cmd}{rst}");
220 println!();
221
222 let mut tools_to_restart: Vec<String> =
223 newly_configured.iter().map(|s| s.to_string()).collect();
224 for name in rules_result
225 .injected
226 .iter()
227 .chain(rules_result.updated.iter())
228 {
229 if !tools_to_restart.iter().any(|t| t == name) {
230 tools_to_restart.push(name.clone());
231 }
232 }
233
234 if !tools_to_restart.is_empty() {
235 println!(" {cyan}2.{rst} {yellow}{bold}Restart your IDE / AI tool:{rst}");
236 println!(" {bold}{}{rst}", tools_to_restart.join(", "));
237 println!(
238 " {dim}The MCP connection must be re-established for changes to take effect.{rst}"
239 );
240 println!(" {dim}Close and re-open the application completely.{rst}");
241 } else if !already_configured.is_empty() {
242 println!(
243 " {cyan}2.{rst} {dim}Your tools are already configured — no restart needed.{rst}"
244 );
245 }
246
247 println!();
248 println!(
249 " {dim}After restart, lean-ctx will automatically optimize every AI interaction.{rst}"
250 );
251 println!(" {dim}Verify with:{rst} {bold}lean-ctx gain{rst}");
252
253 println!();
255 terminal_ui::print_logo_animated();
256 terminal_ui::print_command_box();
257}
258
259fn shorten_path(path: &str, home: &str) -> String {
260 if let Some(stripped) = path.strip_prefix(home) {
261 format!("~{stripped}")
262 } else {
263 path.to_string()
264 }
265}
266
267fn build_targets(home: &std::path::Path, _binary: &str) -> Vec<EditorTarget> {
268 vec![
269 EditorTarget {
270 name: "Cursor",
271 agent_key: "cursor",
272 config_path: home.join(".cursor/mcp.json"),
273 detect_path: home.join(".cursor"),
274 config_type: ConfigType::McpJson,
275 },
276 EditorTarget {
277 name: "Claude Code",
278 agent_key: "claude",
279 config_path: home.join(".claude.json"),
280 detect_path: detect_claude_path(),
281 config_type: ConfigType::McpJson,
282 },
283 EditorTarget {
284 name: "Windsurf",
285 agent_key: "windsurf",
286 config_path: home.join(".codeium/windsurf/mcp_config.json"),
287 detect_path: home.join(".codeium/windsurf"),
288 config_type: ConfigType::McpJson,
289 },
290 EditorTarget {
291 name: "Codex CLI",
292 agent_key: "codex",
293 config_path: home.join(".codex/config.toml"),
294 detect_path: detect_codex_path(home),
295 config_type: ConfigType::Codex,
296 },
297 EditorTarget {
298 name: "Gemini CLI",
299 agent_key: "gemini",
300 config_path: home.join(".gemini/settings/mcp.json"),
301 detect_path: home.join(".gemini"),
302 config_type: ConfigType::McpJson,
303 },
304 EditorTarget {
305 name: "Antigravity",
306 agent_key: "gemini",
307 config_path: home.join(".gemini/antigravity/mcp_config.json"),
308 detect_path: home.join(".gemini/antigravity"),
309 config_type: ConfigType::McpJson,
310 },
311 EditorTarget {
312 name: "Zed",
313 agent_key: "",
314 config_path: zed_settings_path(home),
315 detect_path: zed_config_dir(home),
316 config_type: ConfigType::Zed,
317 },
318 EditorTarget {
319 name: "VS Code / Copilot",
320 agent_key: "copilot",
321 config_path: vscode_mcp_path(),
322 detect_path: detect_vscode_path(),
323 config_type: ConfigType::VsCodeMcp,
324 },
325 EditorTarget {
326 name: "OpenCode",
327 agent_key: "",
328 config_path: home.join(".config/opencode/opencode.json"),
329 detect_path: home.join(".config/opencode"),
330 config_type: ConfigType::OpenCode,
331 },
332 EditorTarget {
333 name: "Qwen Code",
334 agent_key: "qwen",
335 config_path: home.join(".qwen/mcp.json"),
336 detect_path: home.join(".qwen"),
337 config_type: ConfigType::McpJson,
338 },
339 EditorTarget {
340 name: "Trae",
341 agent_key: "trae",
342 config_path: home.join(".trae/mcp.json"),
343 detect_path: home.join(".trae"),
344 config_type: ConfigType::McpJson,
345 },
346 EditorTarget {
347 name: "Amazon Q Developer",
348 agent_key: "amazonq",
349 config_path: home.join(".aws/amazonq/mcp.json"),
350 detect_path: home.join(".aws/amazonq"),
351 config_type: ConfigType::McpJson,
352 },
353 EditorTarget {
354 name: "JetBrains IDEs",
355 agent_key: "jetbrains",
356 config_path: home.join(".jb-mcp.json"),
357 detect_path: detect_jetbrains_path(home),
358 config_type: ConfigType::McpJson,
359 },
360 EditorTarget {
361 name: "Cline",
362 agent_key: "cline",
363 config_path: cline_mcp_path(),
364 detect_path: detect_cline_path(),
365 config_type: ConfigType::McpJson,
366 },
367 EditorTarget {
368 name: "Roo Code",
369 agent_key: "roo",
370 config_path: roo_mcp_path(),
371 detect_path: detect_roo_path(),
372 config_type: ConfigType::McpJson,
373 },
374 ]
375}
376
377fn detect_claude_path() -> PathBuf {
378 if let Ok(output) = std::process::Command::new("which").arg("claude").output() {
379 if output.status.success() {
380 return PathBuf::from(String::from_utf8_lossy(&output.stdout).trim());
381 }
382 }
383 if let Some(home) = dirs::home_dir() {
384 let claude_json = home.join(".claude.json");
385 if claude_json.exists() {
386 return claude_json;
387 }
388 }
389 PathBuf::from("/nonexistent")
390}
391
392fn detect_codex_path(home: &std::path::Path) -> PathBuf {
393 let codex_dir = home.join(".codex");
394 if codex_dir.exists() {
395 return codex_dir;
396 }
397 if let Ok(output) = std::process::Command::new("which").arg("codex").output() {
398 if output.status.success() {
399 return codex_dir;
400 }
401 }
402 PathBuf::from("/nonexistent")
403}
404
405fn zed_settings_path(home: &std::path::Path) -> PathBuf {
406 home.join(".config/zed/settings.json")
407}
408
409fn zed_config_dir(home: &std::path::Path) -> PathBuf {
410 home.join(".config/zed")
411}
412
413fn write_config(target: &EditorTarget, binary: &str) -> Result<(), String> {
414 if let Some(parent) = target.config_path.parent() {
415 std::fs::create_dir_all(parent).map_err(|e| e.to_string())?;
416 }
417
418 match target.config_type {
419 ConfigType::McpJson => write_mcp_json(target, binary),
420 ConfigType::Zed => write_zed_config(target, binary),
421 ConfigType::Codex => write_codex_config(target, binary),
422 ConfigType::VsCodeMcp => write_vscode_mcp(target, binary),
423 ConfigType::OpenCode => write_opencode_config(target, binary),
424 }
425}
426
427fn write_mcp_json(target: &EditorTarget, binary: &str) -> Result<(), String> {
428 if target.config_path.exists() {
429 let content = std::fs::read_to_string(&target.config_path).map_err(|e| e.to_string())?;
430
431 if content.contains("lean-ctx") {
432 return Ok(());
433 }
434
435 if let Ok(mut json) = serde_json::from_str::<serde_json::Value>(&content) {
436 if let Some(obj) = json.as_object_mut() {
437 let servers = obj
438 .entry("mcpServers")
439 .or_insert_with(|| serde_json::json!({}));
440 if let Some(servers_obj) = servers.as_object_mut() {
441 servers_obj.insert(
442 "lean-ctx".to_string(),
443 serde_json::json!({ "command": binary }),
444 );
445 }
446 let formatted = serde_json::to_string_pretty(&json).map_err(|e| e.to_string())?;
447 std::fs::write(&target.config_path, formatted).map_err(|e| e.to_string())?;
448 return Ok(());
449 }
450 }
451 return Err(format!(
452 "Could not parse existing config at {}. Please add lean-ctx manually:\n\
453 Add to \"mcpServers\": \"lean-ctx\": {{ \"command\": \"{}\" }}",
454 target.config_path.display(),
455 binary
456 ));
457 }
458
459 let content = serde_json::to_string_pretty(&serde_json::json!({
460 "mcpServers": {
461 "lean-ctx": {
462 "command": binary
463 }
464 }
465 }))
466 .map_err(|e| e.to_string())?;
467
468 std::fs::write(&target.config_path, content).map_err(|e| e.to_string())
469}
470
471fn write_zed_config(target: &EditorTarget, binary: &str) -> Result<(), String> {
472 if target.config_path.exists() {
473 let content = std::fs::read_to_string(&target.config_path).map_err(|e| e.to_string())?;
474
475 if content.contains("lean-ctx") {
476 return Ok(());
477 }
478
479 if let Ok(mut json) = serde_json::from_str::<serde_json::Value>(&content) {
480 if let Some(obj) = json.as_object_mut() {
481 let servers = obj
482 .entry("context_servers")
483 .or_insert_with(|| serde_json::json!({}));
484 if let Some(servers_obj) = servers.as_object_mut() {
485 servers_obj.insert(
486 "lean-ctx".to_string(),
487 serde_json::json!({
488 "source": "custom",
489 "command": binary,
490 "args": [],
491 "env": {}
492 }),
493 );
494 }
495 let formatted = serde_json::to_string_pretty(&json).map_err(|e| e.to_string())?;
496 std::fs::write(&target.config_path, formatted).map_err(|e| e.to_string())?;
497 return Ok(());
498 }
499 }
500 return Err(format!(
501 "Could not parse existing config at {}. Please add lean-ctx manually to \"context_servers\".",
502 target.config_path.display()
503 ));
504 }
505
506 let content = serde_json::to_string_pretty(&serde_json::json!({
507 "context_servers": {
508 "lean-ctx": {
509 "source": "custom",
510 "command": binary,
511 "args": [],
512 "env": {}
513 }
514 }
515 }))
516 .map_err(|e| e.to_string())?;
517
518 std::fs::write(&target.config_path, content).map_err(|e| e.to_string())
519}
520
521fn write_codex_config(target: &EditorTarget, binary: &str) -> Result<(), String> {
522 if target.config_path.exists() {
523 let content = std::fs::read_to_string(&target.config_path).map_err(|e| e.to_string())?;
524
525 if content.contains("lean-ctx") {
526 return Ok(());
527 }
528
529 let mut new_content = content.clone();
530 if !new_content.ends_with('\n') {
531 new_content.push('\n');
532 }
533 new_content.push_str(&format!(
534 "\n[mcp_servers.lean-ctx]\ncommand = \"{}\"\nargs = []\n",
535 binary
536 ));
537 std::fs::write(&target.config_path, new_content).map_err(|e| e.to_string())?;
538 return Ok(());
539 }
540
541 let content = format!(
542 "[mcp_servers.lean-ctx]\ncommand = \"{}\"\nargs = []\n",
543 binary
544 );
545 std::fs::write(&target.config_path, content).map_err(|e| e.to_string())
546}
547
548fn write_vscode_mcp(target: &EditorTarget, binary: &str) -> Result<(), String> {
549 if target.config_path.exists() {
550 let content = std::fs::read_to_string(&target.config_path).map_err(|e| e.to_string())?;
551 if content.contains("lean-ctx") {
552 return Ok(());
553 }
554 if let Ok(mut json) = serde_json::from_str::<serde_json::Value>(&content) {
555 if let Some(obj) = json.as_object_mut() {
556 let servers = obj
557 .entry("servers")
558 .or_insert_with(|| serde_json::json!({}));
559 if let Some(servers_obj) = servers.as_object_mut() {
560 servers_obj.insert(
561 "lean-ctx".to_string(),
562 serde_json::json!({ "command": binary, "args": [] }),
563 );
564 }
565 let formatted = serde_json::to_string_pretty(&json).map_err(|e| e.to_string())?;
566 std::fs::write(&target.config_path, formatted).map_err(|e| e.to_string())?;
567 return Ok(());
568 }
569 }
570 return Err(format!(
571 "Could not parse existing config at {}. Please add lean-ctx manually to \"servers\".",
572 target.config_path.display()
573 ));
574 }
575
576 if let Some(parent) = target.config_path.parent() {
577 std::fs::create_dir_all(parent).map_err(|e| e.to_string())?;
578 }
579
580 let content = serde_json::to_string_pretty(&serde_json::json!({
581 "servers": {
582 "lean-ctx": {
583 "command": binary,
584 "args": []
585 }
586 }
587 }))
588 .map_err(|e| e.to_string())?;
589
590 std::fs::write(&target.config_path, content).map_err(|e| e.to_string())
591}
592
593fn write_opencode_config(target: &EditorTarget, binary: &str) -> Result<(), String> {
594 if target.config_path.exists() {
595 let content = std::fs::read_to_string(&target.config_path).map_err(|e| e.to_string())?;
596 if content.contains("lean-ctx") {
597 return Ok(());
598 }
599 if let Ok(mut json) = serde_json::from_str::<serde_json::Value>(&content) {
600 if let Some(obj) = json.as_object_mut() {
601 let mcp = obj.entry("mcp").or_insert_with(|| serde_json::json!({}));
602 if let Some(mcp_obj) = mcp.as_object_mut() {
603 mcp_obj.insert(
604 "lean-ctx".to_string(),
605 serde_json::json!({
606 "type": "local",
607 "command": [binary],
608 "enabled": true
609 }),
610 );
611 }
612 let formatted = serde_json::to_string_pretty(&json).map_err(|e| e.to_string())?;
613 std::fs::write(&target.config_path, formatted).map_err(|e| e.to_string())?;
614 return Ok(());
615 }
616 }
617 return Err(format!(
618 "Could not parse existing config at {}. Please add lean-ctx manually:\n\
619 Add to the \"mcp\" section: \"lean-ctx\": {{ \"type\": \"local\", \"command\": [\"{}\"], \"enabled\": true }}",
620 target.config_path.display(),
621 binary
622 ));
623 }
624
625 if let Some(parent) = target.config_path.parent() {
626 std::fs::create_dir_all(parent).map_err(|e| e.to_string())?;
627 }
628
629 let content = serde_json::to_string_pretty(&serde_json::json!({
630 "$schema": "https://opencode.ai/config.json",
631 "mcp": {
632 "lean-ctx": {
633 "type": "local",
634 "command": [binary],
635 "enabled": true
636 }
637 }
638 }))
639 .map_err(|e| e.to_string())?;
640
641 std::fs::write(&target.config_path, content).map_err(|e| e.to_string())
642}
643
644fn detect_vscode_path() -> PathBuf {
645 #[cfg(target_os = "macos")]
646 {
647 if let Some(home) = dirs::home_dir() {
648 let vscode = home.join("Library/Application Support/Code/User/settings.json");
649 if vscode.exists() {
650 return vscode;
651 }
652 }
653 }
654 #[cfg(target_os = "linux")]
655 {
656 if let Some(home) = dirs::home_dir() {
657 let vscode = home.join(".config/Code/User/settings.json");
658 if vscode.exists() {
659 return vscode;
660 }
661 }
662 }
663 #[cfg(target_os = "windows")]
664 {
665 if let Ok(appdata) = std::env::var("APPDATA") {
666 let vscode = PathBuf::from(appdata).join("Code/User/settings.json");
667 if vscode.exists() {
668 return vscode;
669 }
670 }
671 }
672 if let Ok(output) = std::process::Command::new("which").arg("code").output() {
673 if output.status.success() {
674 return PathBuf::from(String::from_utf8_lossy(&output.stdout).trim());
675 }
676 }
677 PathBuf::from("/nonexistent")
678}
679
680fn vscode_mcp_path() -> PathBuf {
681 if let Some(home) = dirs::home_dir() {
682 #[cfg(target_os = "macos")]
683 {
684 return home.join("Library/Application Support/Code/User/mcp.json");
685 }
686 #[cfg(target_os = "linux")]
687 {
688 return home.join(".config/Code/User/mcp.json");
689 }
690 #[cfg(target_os = "windows")]
691 {
692 if let Ok(appdata) = std::env::var("APPDATA") {
693 return PathBuf::from(appdata).join("Code/User/mcp.json");
694 }
695 }
696 #[allow(unreachable_code)]
697 home.join(".config/Code/User/mcp.json")
698 } else {
699 PathBuf::from("/nonexistent")
700 }
701}
702
703fn detect_jetbrains_path(home: &std::path::Path) -> PathBuf {
704 #[cfg(target_os = "macos")]
705 {
706 let lib = home.join("Library/Application Support/JetBrains");
707 if lib.exists() {
708 return lib;
709 }
710 }
711 #[cfg(target_os = "linux")]
712 {
713 let cfg = home.join(".config/JetBrains");
714 if cfg.exists() {
715 return cfg;
716 }
717 }
718 if home.join(".jb-mcp.json").exists() {
719 return home.join(".jb-mcp.json");
720 }
721 PathBuf::from("/nonexistent")
722}
723
724fn cline_mcp_path() -> PathBuf {
725 if let Some(home) = dirs::home_dir() {
726 #[cfg(target_os = "macos")]
727 {
728 return home.join("Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json");
729 }
730 #[cfg(target_os = "linux")]
731 {
732 return home.join(".config/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json");
733 }
734 #[cfg(target_os = "windows")]
735 {
736 if let Ok(appdata) = std::env::var("APPDATA") {
737 return PathBuf::from(appdata).join("Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json");
738 }
739 }
740 }
741 PathBuf::from("/nonexistent")
742}
743
744fn detect_cline_path() -> PathBuf {
745 if let Some(home) = dirs::home_dir() {
746 #[cfg(target_os = "macos")]
747 {
748 let p = home
749 .join("Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev");
750 if p.exists() {
751 return p;
752 }
753 }
754 #[cfg(target_os = "linux")]
755 {
756 let p = home.join(".config/Code/User/globalStorage/saoudrizwan.claude-dev");
757 if p.exists() {
758 return p;
759 }
760 }
761 }
762 PathBuf::from("/nonexistent")
763}
764
765fn roo_mcp_path() -> PathBuf {
766 if let Some(home) = dirs::home_dir() {
767 #[cfg(target_os = "macos")]
768 {
769 return home.join("Library/Application Support/Code/User/globalStorage/rooveterinaryinc.roo-cline/settings/cline_mcp_settings.json");
770 }
771 #[cfg(target_os = "linux")]
772 {
773 return home.join(".config/Code/User/globalStorage/rooveterinaryinc.roo-cline/settings/cline_mcp_settings.json");
774 }
775 #[cfg(target_os = "windows")]
776 {
777 if let Ok(appdata) = std::env::var("APPDATA") {
778 return PathBuf::from(appdata).join("Code/User/globalStorage/rooveterinaryinc.roo-cline/settings/cline_mcp_settings.json");
779 }
780 }
781 }
782 PathBuf::from("/nonexistent")
783}
784
785fn detect_roo_path() -> PathBuf {
786 if let Some(home) = dirs::home_dir() {
787 #[cfg(target_os = "macos")]
788 {
789 let p = home.join(
790 "Library/Application Support/Code/User/globalStorage/rooveterinaryinc.roo-cline",
791 );
792 if p.exists() {
793 return p;
794 }
795 }
796 #[cfg(target_os = "linux")]
797 {
798 let p = home.join(".config/Code/User/globalStorage/rooveterinaryinc.roo-cline");
799 if p.exists() {
800 return p;
801 }
802 }
803 }
804 PathBuf::from("/nonexistent")
805}