coder-config 0.43.23 → 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 +41 -43
- package/lib/cli.js +0 -3
- package/lib/constants.js +1 -1
- package/package.json +1 -1
- package/ui/dist/assets/{index-CQpmIJAj.js → index-BfJBU449.js} +0 -3
- package/ui/dist/index.html +1 -1
package/README.md
CHANGED
|
@@ -211,49 +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 --max-cost 10.00 # Set max cost budget
|
|
237
|
-
coder-config loop config --auto-approve-plan # Skip manual plan approval
|
|
238
|
-
```
|
|
239
|
-
|
|
240
|
-
**Three-Phase Workflow**:
|
|
241
|
-
1. **Clarify** - Claude asks questions to understand requirements
|
|
242
|
-
2. **Plan** - Claude creates an implementation plan (requires approval)
|
|
243
|
-
3. **Execute** - Claude implements the plan until complete
|
|
244
|
-
|
|
245
|
-
**Running a loop**:
|
|
246
|
-
```bash
|
|
247
|
-
export CODER_LOOP_ID=<id>
|
|
248
|
-
claude --continue "Your task description"
|
|
249
|
-
```
|
|
250
|
-
|
|
251
|
-
**Safety mechanisms**:
|
|
252
|
-
- Iteration limits (default: 50)
|
|
253
|
-
- Cost budget caps (default: $10)
|
|
254
|
-
- Phase gates (manual plan approval)
|
|
255
|
-
- Graceful pause on budget exceeded
|
|
256
|
-
|
|
257
214
|
### Registry Commands
|
|
258
215
|
|
|
259
216
|
```bash
|
|
@@ -661,6 +618,47 @@ User settings stored in `~/.claude-config/config.json`:
|
|
|
661
618
|
| `ui.port` | Default port for web UI |
|
|
662
619
|
| `ui.openBrowser` | Auto-open browser on `coder-config ui` |
|
|
663
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
|
+
|
|
664
662
|
## Requirements
|
|
665
663
|
|
|
666
664
|
- Node.js 18+
|
package/lib/cli.js
CHANGED
|
@@ -246,8 +246,6 @@ function runCli(manager) {
|
|
|
246
246
|
const updates = {};
|
|
247
247
|
const maxIterIdx = args.indexOf('--max-iterations');
|
|
248
248
|
if (maxIterIdx !== -1) updates.maxIterations = args[maxIterIdx + 1];
|
|
249
|
-
const maxCostIdx = args.indexOf('--max-cost');
|
|
250
|
-
if (maxCostIdx !== -1) updates.maxCost = args[maxCostIdx + 1];
|
|
251
249
|
if (args.includes('--auto-approve-plan')) updates.autoApprovePlan = true;
|
|
252
250
|
if (args.includes('--no-auto-approve-plan')) updates.autoApprovePlan = false;
|
|
253
251
|
if (Object.keys(updates).length > 0) {
|
|
@@ -333,7 +331,6 @@ Loop Commands (Ralph Loop - autonomous development):
|
|
|
333
331
|
loop history Show completed loops
|
|
334
332
|
loop config Show loop configuration
|
|
335
333
|
loop config --max-iterations 50 Set max iterations
|
|
336
|
-
loop config --max-cost 10.00 Set max cost budget
|
|
337
334
|
loop config --auto-approve-plan Skip manual plan approval
|
|
338
335
|
loop inject [--silent] Output loop context (for hooks)
|
|
339
336
|
|
package/lib/constants.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "coder-config",
|
|
3
|
-
"version": "0.43.
|
|
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",
|
|
@@ -1454,9 +1454,6 @@ coder-config loop config
|
|
|
1454
1454
|
# Set max iterations (default: 50)
|
|
1455
1455
|
coder-config loop config --max-iterations 100
|
|
1456
1456
|
|
|
1457
|
-
# Set max cost budget (default: $10)
|
|
1458
|
-
coder-config loop config --max-cost 25.00
|
|
1459
|
-
|
|
1460
1457
|
# Enable auto-approve for plans
|
|
1461
1458
|
coder-config loop config --auto-approve-plan
|
|
1462
1459
|
|
package/ui/dist/index.html
CHANGED
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
|
|
20
20
|
<!-- PWA Manifest -->
|
|
21
21
|
<link rel="manifest" href="/manifest.json">
|
|
22
|
-
<script type="module" crossorigin src="/assets/index-
|
|
22
|
+
<script type="module" crossorigin src="/assets/index-BfJBU449.js"></script>
|
|
23
23
|
<link rel="stylesheet" crossorigin href="/assets/index-CiegY6vS.css">
|
|
24
24
|
</head>
|
|
25
25
|
<body>
|