@regression-io/claude-config 0.14.21 → 0.14.23

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/cli.js CHANGED
@@ -107,8 +107,8 @@ function startDaemon(flags) {
107
107
  // Log file for daemon output
108
108
  const logFile = path.join(pidDir, 'ui.log');
109
109
 
110
- // Build args for spawned process (without --daemon flag)
111
- const spawnArgs = ['ui'];
110
+ // Build args for spawned process - must use --foreground since daemon is now default
111
+ const spawnArgs = ['ui', '--foreground'];
112
112
  if (flags.port !== 3333) {
113
113
  spawnArgs.push('--port', String(flags.port));
114
114
  }
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.14.21';
22
+ const VERSION = '0.14.23';
23
23
 
24
24
  class ClaudeConfigManager {
25
25
  constructor() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@regression-io/claude-config",
3
- "version": "0.14.21",
3
+ "version": "0.14.23",
4
4
  "description": "Configuration management UI for Claude Code - manage MCPs, rules, commands, memory, and .claude folders",
5
5
  "author": "regression.io",
6
6
  "main": "config-loader.js",