@ralph-orchestrator/ralph-cli 2.8.0 → 2.9.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 CHANGED
@@ -6,6 +6,34 @@ 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.0] - 2026-04-03
10
+
11
+ ### Added
12
+
13
+ - Agent waves for intra-loop parallel hat execution.
14
+ - Current branch display in the TUI header.
15
+ - Richer Copilot JSON stream event handling.
16
+
17
+ ### Changed
18
+
19
+ - Improved rich TUI tool output and the end-to-end harness.
20
+ - Shifted coverage and Rust gate validation earlier in CI, with aligned local/GitHub checks.
21
+ - Refreshed documentation links and coverage publishing plumbing.
22
+
23
+ ### Fixed
24
+
25
+ - TUI mouse toggle behavior.
26
+ - Scratchpad path resolution for loop state.
27
+ - Large prompt handoff for arg-based backends by routing through temp files.
28
+ - CLI executor streaming and inactivity-timeout handling.
29
+ - Self-loop event publishing guidance and backend contract validation coverage.
30
+
31
+ ## [2.8.1] - 2026-03-16
32
+
33
+ ### Changed
34
+
35
+ - Version bump for 2.8.1 release.
36
+
9
37
  ## [2.8.0] - 2026-03-10
10
38
 
11
39
  ### Added
package/README.md CHANGED
@@ -4,9 +4,10 @@
4
4
  [![License](https://img.shields.io/badge/license-MIT-blue)](LICENSE)
5
5
  [![Rust](https://img.shields.io/badge/rust-1.75+-orange)](https://www.rust-lang.org/)
6
6
  [![Build](https://img.shields.io/github/actions/workflow/status/mikeyobrien/ralph-orchestrator/ci.yml?branch=main&label=CI)](https://github.com/mikeyobrien/ralph-orchestrator/actions)
7
- [![Coverage](https://img.shields.io/badge/coverage-65%25-yellowgreen)](coverage/index.html)
7
+ [![Coverage](https://img.shields.io/endpoint?url=https://mikeyobrien.github.io/ralph-orchestrator/badges/coverage.json)](CONTRIBUTING.md#coverage)
8
8
  [![Mentioned in Awesome Claude Code](https://awesome.re/mentioned-badge.svg)](https://github.com/hesreallyhim/awesome-claude-code)
9
9
  [![Docs](https://img.shields.io/badge/docs-mkdocs-blue)](https://mikeyobrien.github.io/ralph-orchestrator/)
10
+ [![Discord](https://img.shields.io/discord/1482421188700667906?label=Discord&logo=discord&logoColor=white)](https://discord.gg/XWUyeUNffh)
10
11
 
11
12
  A hat-based orchestration framework that keeps AI agents in a loop until the task is done.
12
13
 
@@ -22,10 +23,11 @@ A hat-based orchestration framework that keeps AI agents in a loop until the tas
22
23
  npm install -g @ralph-orchestrator/ralph-cli
23
24
  ```
24
25
 
25
- ### Via Homebrew (macOS/Linux)
26
+ ### Via GitHub Releases installer
26
27
 
27
28
  ```bash
28
- brew install ralph-orchestrator
29
+ curl --proto '=https' --tlsv1.2 -LsSf \
30
+ https://github.com/mikeyobrien/ralph-orchestrator/releases/latest/download/ralph-cli-installer.sh | sh
29
31
  ```
30
32
 
31
33
  ### Via Cargo
@@ -34,6 +36,8 @@ brew install ralph-orchestrator
34
36
  cargo install ralph-cli
35
37
  ```
36
38
 
39
+ > Homebrew is not currently published from this repository's automated release flow. Prefer npm, Cargo, or the GitHub Releases installer.
40
+
37
41
  ## Quick Start
38
42
 
39
43
  ```bash
@@ -185,6 +189,13 @@ Contributions are welcome! See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines
185
189
 
186
190
  MIT License — See [LICENSE](LICENSE) for details.
187
191
 
192
+ ## 💬 Community & Support
193
+
194
+ Join the **ralph-orchestrator** community to discuss AI agent patterns, get help with your implementation, or contribute to the roadmap.
195
+
196
+ * **Discord**: [Join our server](https://discord.gg/XWUyeUNffh) to chat with the maintainers and other users in real-time.
197
+ * **GitHub Issues**: For bug reports and formal feature requests, please use the [Issue Tracker](https://github.com/mikeyobrien/ralph-orchestrator/issues).
198
+
188
199
  ## Acknowledgments
189
200
 
190
201
  - **[Geoffrey Huntley](https://ghuntley.com/ralph/)** — Creator of the Ralph Wiggum technique
@@ -23,7 +23,7 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "MIT",
25
25
  "name": "@ralph-orchestrator/ralph-cli",
26
- "version": "2.8.0"
26
+ "version": "2.9.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.8.0"
518
+ "version": "2.9.0"
519
519
  }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "artifactDownloadUrl": "https://github.com/mikeyobrien/ralph-orchestrator/releases/download/v2.8.0",
2
+ "artifactDownloadUrl": "https://github.com/mikeyobrien/ralph-orchestrator/releases/download/v2.9.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.8.0",
65
+ "version": "2.9.0",
66
66
  "volta": {
67
67
  "node": "18.14.1",
68
68
  "npm": "9.5.0"