coder-config 0.43.24 → 0.43.25

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,48 +211,6 @@ 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) - Experimental
215
-
216
- > **Note:** Ralph Loops is an experimental feature, disabled by default. Enable it in the Web UI under **Preferences > Experimental Features**.
217
-
218
- Ralph Loops enable autonomous development - Claude Code runs continuously until a task is completed.
219
-
220
- ```bash
221
- coder-config loop # List all loops
222
- coder-config loop create "Task description" # Create new loop
223
- coder-config loop create "Task" --workstream <name> # Create loop in workstream context
224
- coder-config loop start <id> # Start/resume a loop
225
- coder-config loop pause <id> # Pause loop at next safe point
226
- coder-config loop resume <id> # Resume paused loop
227
- coder-config loop cancel <id> # Cancel loop
228
- coder-config loop delete <id> # Delete loop and its data
229
- coder-config loop approve <id> # Approve plan (when in plan phase)
230
- coder-config loop complete <id> # Mark loop as complete
231
- coder-config loop status [id] # Show status (active loop if no id)
232
- coder-config loop active # Show current active loop
233
- coder-config loop history # Show completed loops
234
- coder-config loop config # Show loop configuration
235
- coder-config loop config --max-iterations 50 # Set max iterations
236
- coder-config loop config --auto-approve-plan # Skip manual plan approval
237
- ```
238
-
239
- **Three-Phase Workflow**:
240
- 1. **Clarify** - Claude asks questions to understand requirements
241
- 2. **Plan** - Claude creates an implementation plan (requires approval)
242
- 3. **Execute** - Claude implements the plan until complete
243
-
244
- **Running a loop**:
245
- ```bash
246
- export CODER_LOOP_ID=<id>
247
- claude --continue "Your task description"
248
- ```
249
-
250
- **Safety mechanisms**:
251
- - Iteration limits (default: 50)
252
- - Cost budget caps (default: $10)
253
- - Phase gates (manual plan approval)
254
- - Graceful pause on budget exceeded
255
-
256
214
  ### Registry Commands
257
215
 
258
216
  ```bash
@@ -660,6 +618,47 @@ User settings stored in `~/.claude-config/config.json`:
660
618
  | `ui.port` | Default port for web UI |
661
619
  | `ui.openBrowser` | Auto-open browser on `coder-config ui` |
662
620
 
621
+ ## Ralph Loops (Experimental)
622
+
623
+ > **Note:** Ralph Loops is an experimental feature, disabled by default. Enable it in the Web UI under **Preferences > Experimental Features**.
624
+
625
+ Ralph Loops enable autonomous development - Claude Code runs continuously until a task is completed.
626
+
627
+ ```bash
628
+ coder-config loop # List all loops
629
+ coder-config loop create "Task description" # Create new loop
630
+ coder-config loop create "Task" --workstream <name> # Create loop in workstream context
631
+ coder-config loop start <id> # Start/resume a loop
632
+ coder-config loop pause <id> # Pause loop at next safe point
633
+ coder-config loop resume <id> # Resume paused loop
634
+ coder-config loop cancel <id> # Cancel loop
635
+ coder-config loop delete <id> # Delete loop and its data
636
+ coder-config loop approve <id> # Approve plan (when in plan phase)
637
+ coder-config loop complete <id> # Mark loop as complete
638
+ coder-config loop status [id] # Show status (active loop if no id)
639
+ coder-config loop active # Show current active loop
640
+ coder-config loop history # Show completed loops
641
+ coder-config loop config # Show loop configuration
642
+ coder-config loop config --max-iterations 50 # Set max iterations
643
+ coder-config loop config --auto-approve-plan # Skip manual plan approval
644
+ ```
645
+
646
+ **Three-Phase Workflow**:
647
+ 1. **Clarify** - Claude asks questions to understand requirements
648
+ 2. **Plan** - Claude creates an implementation plan (requires approval)
649
+ 3. **Execute** - Claude implements the plan until complete
650
+
651
+ **Running a loop**:
652
+ ```bash
653
+ export CODER_LOOP_ID=<id>
654
+ claude --continue "Your task description"
655
+ ```
656
+
657
+ **Safety mechanisms**:
658
+ - Iteration limits (default: 50)
659
+ - Phase gates (manual plan approval)
660
+ - Graceful pause on limit exceeded
661
+
663
662
  ## Requirements
664
663
 
665
664
  - Node.js 18+
package/lib/constants.js CHANGED
@@ -2,7 +2,7 @@
2
2
  * Constants and tool path configurations
3
3
  */
4
4
 
5
- const VERSION = '0.43.24';
5
+ const VERSION = '0.43.25';
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.43.24",
3
+ "version": "0.43.25",
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",