@regression-io/claude-config 0.23.4 → 0.23.6

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/config-loader.js CHANGED
@@ -19,7 +19,7 @@ const fs = require('fs');
19
19
  const path = require('path');
20
20
  const { execSync } = require('child_process');
21
21
 
22
- const VERSION = '0.23.4';
22
+ const VERSION = '0.23.6';
23
23
 
24
24
  // Tool-specific path configurations
25
25
  const TOOL_PATHS = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@regression-io/claude-config",
3
- "version": "0.23.4",
3
+ "version": "0.23.6",
4
4
  "description": "Configuration management UI for Claude Code and Antigravity - manage MCPs, rules, commands, memory, and project folders",
5
5
  "author": "regression.io",
6
6
  "main": "config-loader.js",
package/ui/server.cjs CHANGED
@@ -2107,6 +2107,7 @@ class ConfigUIServer {
2107
2107
  subFolder.isSubproject = true;
2108
2108
  subFolder.hasConfig = sub.hasConfig;
2109
2109
  subFolder.mcpCount = sub.mcpCount || 0;
2110
+ subFolder.isManual = sub.isManual || false;
2110
2111
  folders.push(subFolder);
2111
2112
  }
2112
2113