@ralph-orchestrator/ralph-cli 2.0.10 → 2.1.1
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 +6 -5
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -10,10 +10,12 @@ A hat-based orchestration framework that keeps Ralph in a loop until the task is
|
|
|
10
10
|
|
|
11
11
|
> "Me fail English? That's unpossible!" - Ralph Wiggum
|
|
12
12
|
|
|
13
|
-
**
|
|
13
|
+
**Notice:** Ralph Orchestrator is under active development. It works today, but expect rough edges and breaking changes between releases.
|
|
14
14
|
|
|
15
15
|
v1.0.0 was ralphed into existence with little oversight and guidance. v2.0.0 is a simpler, more-structured implementation. Looking for the old version? See [v1.2.3](https://github.com/mikeyobrien/ralph-orchestrator/tree/v1.2.3).
|
|
16
16
|
|
|
17
|
+
<img width="912" height="712" alt="Screenshot 2026-01-20 at 10 27 57 AM" src="https://github.com/user-attachments/assets/91b08b47-8b0a-4e2c-b66e-88551c2c5cc6" />
|
|
18
|
+
|
|
17
19
|
## Table of Contents
|
|
18
20
|
|
|
19
21
|
- [What is Ralph?](#what-is-ralph)
|
|
@@ -199,8 +201,8 @@ ralph run
|
|
|
199
201
|
# With inline prompt
|
|
200
202
|
ralph run -p "Implement the login endpoint with JWT authentication"
|
|
201
203
|
|
|
202
|
-
#
|
|
203
|
-
ralph run
|
|
204
|
+
# TUI mode (experimental)
|
|
205
|
+
ralph run --tui
|
|
204
206
|
|
|
205
207
|
# Resume interrupted session
|
|
206
208
|
ralph resume
|
|
@@ -291,7 +293,6 @@ event_loop:
|
|
|
291
293
|
cli:
|
|
292
294
|
backend: "claude" # claude, kiro, gemini, codex, amp, copilot, opencode, custom
|
|
293
295
|
prompt_mode: "arg" # arg (CLI argument) or stdin
|
|
294
|
-
experimental_tui: false # Enable TUI mode support
|
|
295
296
|
|
|
296
297
|
# Core behaviors (always injected into prompts)
|
|
297
298
|
core:
|
|
@@ -444,7 +445,7 @@ tests: pass, lint: pass, typecheck: pass
|
|
|
444
445
|
| `--max-iterations <N>` | Override max iterations |
|
|
445
446
|
| `--completion-promise <TEXT>` | Override completion trigger |
|
|
446
447
|
| `--dry-run` | Show what would execute |
|
|
447
|
-
|
|
|
448
|
+
| `--tui` | Enable TUI mode (experimental) |
|
|
448
449
|
| `-a, --autonomous` | Force headless mode |
|
|
449
450
|
| `--idle-timeout <SECS>` | TUI idle timeout (default: 30) |
|
|
450
451
|
| `--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.
|
|
26
|
+
"version": "2.1.1"
|
|
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.
|
|
518
|
+
"version": "2.1.1"
|
|
519
519
|
}
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"artifactDownloadUrl": "https://github.com/mikeyobrien/ralph-orchestrator/releases/download/v2.
|
|
2
|
+
"artifactDownloadUrl": "https://github.com/mikeyobrien/ralph-orchestrator/releases/download/v2.1.1",
|
|
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.
|
|
65
|
+
"version": "2.1.1",
|
|
66
66
|
"volta": {
|
|
67
67
|
"node": "18.14.1",
|
|
68
68
|
"npm": "9.5.0"
|