coder-config 0.43.23 → 0.43.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
|
@@ -233,7 +233,6 @@ coder-config loop active # Show current active loop
|
|
|
233
233
|
coder-config loop history # Show completed loops
|
|
234
234
|
coder-config loop config # Show loop configuration
|
|
235
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
236
|
coder-config loop config --auto-approve-plan # Skip manual plan approval
|
|
238
237
|
```
|
|
239
238
|
|
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.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",
|
|
@@ -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>
|