@ralph-orchestrator/ralph-cli 2.8.1 → 2.9.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/CHANGELOG.md +34 -0
- package/README.md +6 -3
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,40 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [2.9.1] - 2026-04-04
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
|
|
13
|
+
- `cargo install ralph-cli` fails due to cross-crate `#[path]` include of `tool_preview.rs` from `ralph-adapters` into `ralph-tui`. Moved `tool_preview` to a public module in `ralph-adapters` and added it as a proper dependency.
|
|
14
|
+
|
|
15
|
+
## [2.9.0] - 2026-04-03
|
|
16
|
+
|
|
17
|
+
### Added
|
|
18
|
+
|
|
19
|
+
- Agent waves for intra-loop parallel hat execution.
|
|
20
|
+
- Current branch display in the TUI header.
|
|
21
|
+
- Richer Copilot JSON stream event handling.
|
|
22
|
+
|
|
23
|
+
### Changed
|
|
24
|
+
|
|
25
|
+
- Improved rich TUI tool output and the end-to-end harness.
|
|
26
|
+
- Shifted coverage and Rust gate validation earlier in CI, with aligned local/GitHub checks.
|
|
27
|
+
- Refreshed documentation links and coverage publishing plumbing.
|
|
28
|
+
|
|
29
|
+
### Fixed
|
|
30
|
+
|
|
31
|
+
- TUI mouse toggle behavior.
|
|
32
|
+
- Scratchpad path resolution for loop state.
|
|
33
|
+
- Large prompt handoff for arg-based backends by routing through temp files.
|
|
34
|
+
- CLI executor streaming and inactivity-timeout handling.
|
|
35
|
+
- Self-loop event publishing guidance and backend contract validation coverage.
|
|
36
|
+
|
|
37
|
+
## [2.8.1] - 2026-03-16
|
|
38
|
+
|
|
39
|
+
### Changed
|
|
40
|
+
|
|
41
|
+
- Version bump for 2.8.1 release.
|
|
42
|
+
|
|
9
43
|
## [2.8.0] - 2026-03-10
|
|
10
44
|
|
|
11
45
|
### Added
|
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
[](LICENSE)
|
|
5
5
|
[](https://www.rust-lang.org/)
|
|
6
6
|
[](https://github.com/mikeyobrien/ralph-orchestrator/actions)
|
|
7
|
-
[](CONTRIBUTING.md#coverage)
|
|
8
8
|
[](https://github.com/hesreallyhim/awesome-claude-code)
|
|
9
9
|
[](https://mikeyobrien.github.io/ralph-orchestrator/)
|
|
10
10
|
[](https://discord.gg/XWUyeUNffh)
|
|
@@ -23,10 +23,11 @@ A hat-based orchestration framework that keeps AI agents in a loop until the tas
|
|
|
23
23
|
npm install -g @ralph-orchestrator/ralph-cli
|
|
24
24
|
```
|
|
25
25
|
|
|
26
|
-
### Via
|
|
26
|
+
### Via GitHub Releases installer
|
|
27
27
|
|
|
28
28
|
```bash
|
|
29
|
-
|
|
29
|
+
curl --proto '=https' --tlsv1.2 -LsSf \
|
|
30
|
+
https://github.com/mikeyobrien/ralph-orchestrator/releases/latest/download/ralph-cli-installer.sh | sh
|
|
30
31
|
```
|
|
31
32
|
|
|
32
33
|
### Via Cargo
|
|
@@ -35,6 +36,8 @@ brew install ralph-orchestrator
|
|
|
35
36
|
cargo install ralph-cli
|
|
36
37
|
```
|
|
37
38
|
|
|
39
|
+
> Homebrew is not currently published from this repository's automated release flow. Prefer npm, Cargo, or the GitHub Releases installer.
|
|
40
|
+
|
|
38
41
|
## Quick Start
|
|
39
42
|
|
|
40
43
|
```bash
|
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.9.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.9.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.9.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.9.1",
|
|
66
66
|
"volta": {
|
|
67
67
|
"node": "18.14.1",
|
|
68
68
|
"npm": "9.5.0"
|