()
| 79 | } |
| 80 | |
| 81 | function getClaudeConfigPath(): string { |
| 82 | if (process.platform === "darwin") { |
| 83 | return join( |
| 84 | homedir(), |
| 85 | "Library", |
| 86 | "Application Support", |
| 87 | "Claude", |
| 88 | "claude_desktop_config.json" |
| 89 | ); |
| 90 | } |
| 91 | if (process.platform === "win32") { |
| 92 | return join(homedir(), "AppData", "Roaming", "Claude", "claude_desktop_config.json"); |
| 93 | } |
| 94 | return join(homedir(), ".config", "Claude", "claude_desktop_config.json"); |
| 95 | } |
| 96 | |
| 97 | function getCodexConfigPath(): string { |
| 98 | return join(homedir(), ".codex", "config.toml"); |
no outgoing calls
no test coverage detected