coder-config 0.47.9 → 0.47.10-beta

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/lib/constants.js CHANGED
@@ -2,7 +2,7 @@
2
2
  * Constants and tool path configurations
3
3
  */
4
4
 
5
- const VERSION = '0.47.9';
5
+ const VERSION = '0.47.10-beta';
6
6
 
7
7
  // Tool-specific path configurations
8
8
  const TOOL_PATHS = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "coder-config",
3
- "version": "0.47.9",
3
+ "version": "0.47.10-beta",
4
4
  "description": "Configuration manager for AI coding tools - Claude Code, Gemini CLI, Codex CLI, Antigravity. Manage MCPs, rules, permissions, memory, and workstreams.",
5
5
  "author": "regression.io",
6
6
  "main": "config-loader.js",
package/ui/server.cjs CHANGED
@@ -211,6 +211,7 @@ class ConfigUIServer {
211
211
  const folders = [];
212
212
 
213
213
  for (const c of configs) {
214
+ if (folders.some(f => f.dir === c.dir)) continue; // deduplicate (home dir has both .claude.json and .claude/mcps.json)
214
215
  const folder = routes.fileExplorer.scanFolderForExplorer(c.dir, this.manager);
215
216
  if (folder) folders.push(folder);
216
217
  }