@ralph-orchestrator/ralph-cli 2.0.10 → 2.1.0
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 +3 -4
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -199,8 +199,8 @@ ralph run
|
|
|
199
199
|
# With inline prompt
|
|
200
200
|
ralph run -p "Implement the login endpoint with JWT authentication"
|
|
201
201
|
|
|
202
|
-
#
|
|
203
|
-
ralph run
|
|
202
|
+
# TUI mode (experimental)
|
|
203
|
+
ralph run --tui
|
|
204
204
|
|
|
205
205
|
# Resume interrupted session
|
|
206
206
|
ralph resume
|
|
@@ -291,7 +291,6 @@ event_loop:
|
|
|
291
291
|
cli:
|
|
292
292
|
backend: "claude" # claude, kiro, gemini, codex, amp, copilot, opencode, custom
|
|
293
293
|
prompt_mode: "arg" # arg (CLI argument) or stdin
|
|
294
|
-
experimental_tui: false # Enable TUI mode support
|
|
295
294
|
|
|
296
295
|
# Core behaviors (always injected into prompts)
|
|
297
296
|
core:
|
|
@@ -444,7 +443,7 @@ tests: pass, lint: pass, typecheck: pass
|
|
|
444
443
|
| `--max-iterations <N>` | Override max iterations |
|
|
445
444
|
| `--completion-promise <TEXT>` | Override completion trigger |
|
|
446
445
|
| `--dry-run` | Show what would execute |
|
|
447
|
-
|
|
|
446
|
+
| `--tui` | Enable TUI mode (experimental) |
|
|
448
447
|
| `-a, --autonomous` | Force headless mode |
|
|
449
448
|
| `--idle-timeout <SECS>` | TUI idle timeout (default: 30) |
|
|
450
449
|
| `--record-session <FILE>` | Record session to JSONL |
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"hasInstallScript": true,
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"name": "@ralph-orchestrator/ralph-cli",
|
|
26
|
-
"version": "2.0
|
|
26
|
+
"version": "2.1.0"
|
|
27
27
|
},
|
|
28
28
|
"node_modules/@isaacs/balanced-match": {
|
|
29
29
|
"engines": {
|
|
@@ -515,5 +515,5 @@
|
|
|
515
515
|
}
|
|
516
516
|
},
|
|
517
517
|
"requires": true,
|
|
518
|
-
"version": "2.0
|
|
518
|
+
"version": "2.1.0"
|
|
519
519
|
}
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"artifactDownloadUrl": "https://github.com/mikeyobrien/ralph-orchestrator/releases/download/v2.0
|
|
2
|
+
"artifactDownloadUrl": "https://github.com/mikeyobrien/ralph-orchestrator/releases/download/v2.1.0",
|
|
3
3
|
"bin": {
|
|
4
4
|
"ralph": "run-ralph.js"
|
|
5
5
|
},
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"zipExt": ".tar.xz"
|
|
63
63
|
}
|
|
64
64
|
},
|
|
65
|
-
"version": "2.0
|
|
65
|
+
"version": "2.1.0",
|
|
66
66
|
"volta": {
|
|
67
67
|
"node": "18.14.1",
|
|
68
68
|
"npm": "9.5.0"
|