coder-config 0.42.22 → 0.42.24

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
@@ -211,7 +211,9 @@ coder-config workstream auto-activate "My Work" off # Never auto-activate
211
211
  coder-config workstream auto-activate "My Work" default # Use global setting
212
212
  ```
213
213
 
214
- ### Loop Commands (Ralph Loop)
214
+ ### Loop Commands (Ralph Loop) - Experimental
215
+
216
+ > **Note:** Ralph Loops is an experimental feature, disabled by default. Enable it in the Web UI under **Preferences > Experimental Features**.
215
217
 
216
218
  Ralph Loops enable autonomous development - Claude Code runs continuously until a task is completed.
217
219
 
@@ -268,7 +270,7 @@ coder-config update --check # Check for updates without installing
268
270
  coder-config update /path/src # Update from local development source
269
271
  ```
270
272
 
271
- The UI also checks for updates automatically and shows a notification when a new version is available.
273
+ The UI checks for updates automatically and auto-updates when enabled in Preferences. After server updates, the UI auto-refreshes to load the new version.
272
274
 
273
275
  ### Web UI
274
276
 
package/lib/constants.js CHANGED
@@ -2,7 +2,7 @@
2
2
  * Constants and tool path configurations
3
3
  */
4
4
 
5
- const VERSION = '0.42.22';
5
+ const VERSION = '0.42.24';
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.42.22",
3
+ "version": "0.42.24",
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",