@ralph-orchestrator/ralph-cli 2.5.1 → 2.7.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/CHANGELOG.md +49 -0
- package/README.md +14 -7
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,52 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to ralph-orchestrator are documented here.
|
|
4
4
|
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
|
+
|
|
7
|
+
## [Unreleased]
|
|
8
|
+
|
|
9
|
+
## [2.7.0] - 2026-03-06
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
|
|
13
|
+
- Per-project orchestrator lifecycle hooks v1.
|
|
14
|
+
- `kiro-acp` backend with ACP executor support.
|
|
15
|
+
- Subprocess TUI over JSON-RPC stdin/stdout.
|
|
16
|
+
- Improved TUI tool rendering for ACP-backed flows.
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
|
|
20
|
+
- Simplified internal code paths by removing redundant clones and deduplicating `now_ts`.
|
|
21
|
+
- Replaced deprecated `Duration` method usage with `from_secs`.
|
|
22
|
+
- `ralph plan` PDD SOP now syncs from the canonical `strands-agents/agent-sop` upstream source, with a small Ralph-specific loop handoff addendum.
|
|
23
|
+
- Added embedded asset sync, check, and upstream refresh helpers for SOP maintenance.
|
|
24
|
+
- Unified and modernized preset documentation.
|
|
25
|
+
- Added `llms.txt` map generation and CI validation.
|
|
26
|
+
- Hardened web `tsx` preflight behavior and added funding metadata.
|
|
27
|
+
|
|
28
|
+
### Fixed
|
|
29
|
+
|
|
30
|
+
- Avoid self-lock contention in subprocess TUI mode.
|
|
31
|
+
- Accumulate Pi text deltas into flowing paragraphs in the TUI.
|
|
32
|
+
- Clean up zombie worktree loops more reliably.
|
|
33
|
+
- Fix ACP orphaned processes, garbled TUI output, and missing tool details.
|
|
34
|
+
- Resolve clippy issues and missing struct fields.
|
|
35
|
+
|
|
36
|
+
## [2.6.0] - 2026-02-25
|
|
37
|
+
|
|
38
|
+
### Added
|
|
39
|
+
|
|
40
|
+
- Rust RPC v1 control plane and web client migration to the new RPC contract.
|
|
41
|
+
- Shell completions support for `ralph` CLI.
|
|
42
|
+
- `fresh-eyes` preset with enforced review passes.
|
|
43
|
+
|
|
44
|
+
### Fixed
|
|
45
|
+
|
|
46
|
+
- Hat display no longer gets stuck on the previous iteration's hat.
|
|
47
|
+
- UTF-8 safe truncation to prevent panics on multi-byte characters.
|
|
48
|
+
- Hat-level backend shorthand `args` is honored for custom hats (including OpenCode).
|
|
49
|
+
- Deprecated `project.*` config keys now fail fast with a clear migration hint to `core.*`.
|
|
50
|
+
|
|
5
51
|
## [2.5.1] - 2026-02-14
|
|
6
52
|
|
|
7
53
|
### Changed
|
|
@@ -91,6 +137,9 @@ All notable changes to ralph-orchestrator are documented here.
|
|
|
91
137
|
|
|
92
138
|
- Modularized codebase and fixed TUI mode
|
|
93
139
|
|
|
140
|
+
[Unreleased]: https://github.com/mikeyobrien/ralph-orchestrator/compare/v2.7.0...HEAD
|
|
141
|
+
[2.7.0]: https://github.com/mikeyobrien/ralph-orchestrator/compare/v2.6.0...v2.7.0
|
|
142
|
+
[2.6.0]: https://github.com/mikeyobrien/ralph-orchestrator/compare/v2.5.1...v2.6.0
|
|
94
143
|
[2.5.1]: https://github.com/mikeyobrien/ralph-orchestrator/compare/v2.5.0...v2.5.1
|
|
95
144
|
[2.3.0]: https://github.com/mikeyobrien/ralph-orchestrator/compare/v2.2.5...v2.3.0
|
|
96
145
|
[2.2.5]: https://github.com/mikeyobrien/ralph-orchestrator/compare/v2.2.4...v2.2.5
|
package/README.md
CHANGED
|
@@ -65,13 +65,18 @@ ralph run -p "Add input validation to the /users endpoint"
|
|
|
65
65
|
Ralph includes a web dashboard for monitoring and managing orchestration loops.
|
|
66
66
|
|
|
67
67
|
```bash
|
|
68
|
-
ralph web # starts
|
|
68
|
+
ralph web # starts Rust RPC API + frontend + opens browser
|
|
69
69
|
ralph web --no-open # skip browser auto-open
|
|
70
|
-
ralph web --backend-port 4000 # custom
|
|
70
|
+
ralph web --backend-port 4000 # custom RPC API port
|
|
71
71
|
ralph web --frontend-port 8080 # custom frontend port
|
|
72
|
+
ralph web --legacy-node-api # opt into deprecated Node tRPC backend
|
|
72
73
|
```
|
|
73
74
|
|
|
74
|
-
**Requirements:**
|
|
75
|
+
**Requirements:**
|
|
76
|
+
- Rust toolchain (for `ralph-api`)
|
|
77
|
+
- Node.js >= 18 + npm (for the frontend)
|
|
78
|
+
|
|
79
|
+
On first run, `ralph web` auto-detects missing `node_modules` and runs `npm install`.
|
|
75
80
|
|
|
76
81
|
To set up Node.js:
|
|
77
82
|
|
|
@@ -86,10 +91,12 @@ nvm install # reads .nvmrc
|
|
|
86
91
|
For development:
|
|
87
92
|
|
|
88
93
|
```bash
|
|
89
|
-
npm install
|
|
90
|
-
npm run dev #
|
|
91
|
-
npm run
|
|
92
|
-
npm run
|
|
94
|
+
npm install # install frontend + legacy backend deps
|
|
95
|
+
npm run dev:api # Rust RPC API (port 3000)
|
|
96
|
+
npm run dev:web # frontend (port 5173)
|
|
97
|
+
npm run dev # frontend only (default)
|
|
98
|
+
npm run dev:legacy-server # deprecated Node backend (optional)
|
|
99
|
+
npm run test # all frontend/backend workspace tests
|
|
93
100
|
```
|
|
94
101
|
|
|
95
102
|
## What is Ralph?
|
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.7.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.
|
|
518
|
+
"version": "2.7.0"
|
|
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.7.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.
|
|
65
|
+
"version": "2.7.0",
|
|
66
66
|
"volta": {
|
|
67
67
|
"node": "18.14.1",
|
|
68
68
|
"npm": "9.5.0"
|