@regression-io/claude-config 0.15.1 → 0.15.2

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/README.md CHANGED
@@ -13,6 +13,14 @@ Or from GitHub:
13
13
  npm install -g github:regression-io/claude-config
14
14
  ```
15
15
 
16
+ ## Updating
17
+
18
+ ```bash
19
+ npm update -g @regression-io/claude-config
20
+ ```
21
+
22
+ The Web UI automatically detects when updates are available and shows a notification in the Preferences page.
23
+
16
24
  ## Quick Start
17
25
 
18
26
  ```bash
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.15.1';
22
+ const VERSION = '0.15.2';
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.15.1",
3
+ "version": "0.15.2",
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",