@ralph-orchestrator/ralph-cli 2.9.1 → 2.9.3

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,22 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ### Fixed
10
+
11
+ - Claude child sessions now default to `--setting-sources project,local`, preventing host user-level `~/.claude/settings.json` hooks, plugins, and MCP servers from leaking into Ralph orchestration runs. Users who want the old behavior can opt back in with `cli.args: ["--setting-sources", "user,project,local"]`.
12
+
13
+ ## [2.9.2] - 2026-04-10
14
+
15
+ ### Changed
16
+
17
+ - Added a post-publish `cargo install` smoke test to the release workflow for faster detection of broken release artifacts.
18
+ - Expanded `ralph doctor` auth environment variable detection for the Pi and Roo backends.
19
+ - Documented the Pi backend in the backend guide.
20
+
21
+ ### Fixed
22
+
23
+ - Fixed Claude + TUI blank/stuck output on large prompts by avoiding the PTY stdin deadlock in non-interactive PTY execution.
24
+
9
25
  ## [2.9.1] - 2026-04-04
10
26
 
11
27
  ### Fixed
package/README.md CHANGED
@@ -181,6 +181,88 @@ Full documentation is available at **[mikeyobrien.github.io/ralph-orchestrator](
181
181
  - [Concepts: Hats & Events](https://mikeyobrien.github.io/ralph-orchestrator/concepts/hats-and-events/)
182
182
  - [Architecture](https://mikeyobrien.github.io/ralph-orchestrator/advanced/architecture/)
183
183
 
184
+
185
+ ## FAQ
186
+
187
+ ### General
188
+
189
+ **What is Ralph Orchestrator?**
190
+ Ralph is a hat-based orchestration framework that implements the Ralph Wiggum technique — autonomous task completion through continuous iteration. It keeps AI agents in a loop until the task is done, supporting multiple backends like Claude Code, Gemini CLI, Codex, and more.
191
+
192
+ **How is Ralph different from other AI coding tools?**
193
+ Unlike single-shot AI assistants, Ralph iterates until completion using a "hat system" with specialized personas. It includes backpressure gates (tests, lint, typecheck) that reject incomplete work, plus persistent memories and tasks for continuous learning.
194
+
195
+ ### Installation & Setup
196
+
197
+ **What are the system requirements?**
198
+ - Rust 1.75+ (for the `ralph-api` component)
199
+ - Node.js >= 18 + npm (for the web dashboard frontend)
200
+ - An AI coding assistant CLI (Claude Code, Codex, Gemini CLI, etc.)
201
+
202
+ **Which installation method should I use?**
203
+ - **npm** (recommended for most users): `npm install -g @ralph-orchestrator/ralph-cli`
204
+ - **Cargo**: `cargo install ralph-cli` (best for Rust developers)
205
+ - **GitHub Releases installer**: One-link install with `curl ... | sh`
206
+
207
+ **Is Homebrew supported?**
208
+ Homebrew is not currently published from this repository's automated release flow. Prefer npm, Cargo, or the GitHub Releases installer.
209
+
210
+ ### Usage
211
+
212
+ **How do I start a new project with Ralph?**
213
+ ```bash
214
+ ralph init --backend claude
215
+ ralph plan "Add user authentication with JWT"
216
+ ralph run -p "Implement the feature in specs/user-authentication/"
217
+ ```
218
+
219
+ **What backends does Ralph support?**
220
+ Claude Code, Kiro, Gemini CLI, Codex, Amp, Copilot CLI, and OpenCode.
221
+
222
+ **What is the "hat system"?**
223
+ Ralph uses specialized personas (hats) that coordinate through events. Each hat has a specific role — code-assist, debug, research, review, and pdd-to-code-assist — enabling structured multi-step task execution.
224
+
225
+ ### RObot (Human-in-the-Loop)
226
+
227
+ **What is RObot?**
228
+ RObot enables human interaction during orchestration via Telegram. Agents can ask questions and block until answered; humans can send proactive guidance mid-loop.
229
+
230
+ **How do I set up Telegram integration?**
231
+ ```bash
232
+ ralph bot onboard --telegram # guided setup
233
+ ralph bot status # verify config
234
+ ralph bot test # send a test message
235
+ ```
236
+
237
+ ### Web Dashboard
238
+
239
+ **How do I access the web dashboard?**
240
+ Run `ralph web` to start the Rust RPC API + frontend and open your browser. The dashboard is currently in Alpha — expect rough edges and breaking changes.
241
+
242
+ **Can I customize the dashboard ports?**
243
+ Yes: `ralph web --backend-port 4000 --frontend-port 8080`
244
+
245
+ ### MCP Server
246
+
247
+ **How do I run Ralph as an MCP server?**
248
+ ```bash
249
+ ralph mcp serve --workspace-root /path/to/repo
250
+ ```
251
+ Each MCP server instance is scoped to a single workspace root. For multi-repo use, run one instance per workspace.
252
+
253
+ ### Troubleshooting
254
+
255
+ **Ralph fails to start with "node_modules not found"**
256
+ Run `npm install` in the project directory, or let `ralph web` auto-detect and install on first run.
257
+
258
+ **How do I set up Node.js if not installed?**
259
+ Use nvm (recommended): `nvm install` (reads `.nvmrc`), or install directly from https://nodejs.org/
260
+
261
+ **Where can I get help?**
262
+ - Join our [Discord server](https://discord.gg/XWUyeUNffh)
263
+ - Report bugs on the [Issue Tracker](https://github.com/mikeyobrien/ralph-orchestrator/issues)
264
+ - Read full documentation at [mikeyobrien.github.io/ralph-orchestrator](https://mikeyobrien.github.io/ralph-orchestrator/)
265
+
184
266
  ## Contributing
185
267
 
186
268
  Contributions are welcome! See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines and [CODE_OF_CONDUCT.md](CODE_OF_CONDUCT.md) for community standards.
@@ -23,7 +23,7 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "MIT",
25
25
  "name": "@ralph-orchestrator/ralph-cli",
26
- "version": "2.9.1"
26
+ "version": "2.9.3"
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.9.1"
518
+ "version": "2.9.3"
519
519
  }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "artifactDownloadUrl": "https://github.com/mikeyobrien/ralph-orchestrator/releases/download/v2.9.1",
2
+ "artifactDownloadUrl": "https://github.com/mikeyobrien/ralph-orchestrator/releases/download/v2.9.3",
3
3
  "bin": {
4
4
  "ralph": "run-ralph.js"
5
5
  },
@@ -20,7 +20,7 @@
20
20
  },
21
21
  "glibcMinimum": {
22
22
  "major": 2,
23
- "series": 35
23
+ "series": 31
24
24
  },
25
25
  "homepage": "https://github.com/mikeyobrien/ralph-orchestrator",
26
26
  "license": "MIT",
@@ -41,7 +41,21 @@
41
41
  "zipExt": ".tar.xz"
42
42
  },
43
43
  "aarch64-unknown-linux-gnu": {
44
- "artifactName": "ralph-cli-aarch64-unknown-linux-gnu.tar.xz",
44
+ "artifactName": "ralph-cli-aarch64-unknown-linux-musl.tar.xz",
45
+ "bins": {
46
+ "ralph": "ralph"
47
+ },
48
+ "zipExt": ".tar.xz"
49
+ },
50
+ "aarch64-unknown-linux-musl-dynamic": {
51
+ "artifactName": "ralph-cli-aarch64-unknown-linux-musl.tar.xz",
52
+ "bins": {
53
+ "ralph": "ralph"
54
+ },
55
+ "zipExt": ".tar.xz"
56
+ },
57
+ "aarch64-unknown-linux-musl-static": {
58
+ "artifactName": "ralph-cli-aarch64-unknown-linux-musl.tar.xz",
45
59
  "bins": {
46
60
  "ralph": "ralph"
47
61
  },
@@ -55,14 +69,28 @@
55
69
  "zipExt": ".tar.xz"
56
70
  },
57
71
  "x86_64-unknown-linux-gnu": {
58
- "artifactName": "ralph-cli-x86_64-unknown-linux-gnu.tar.xz",
72
+ "artifactName": "ralph-cli-x86_64-unknown-linux-musl.tar.xz",
73
+ "bins": {
74
+ "ralph": "ralph"
75
+ },
76
+ "zipExt": ".tar.xz"
77
+ },
78
+ "x86_64-unknown-linux-musl-dynamic": {
79
+ "artifactName": "ralph-cli-x86_64-unknown-linux-musl.tar.xz",
80
+ "bins": {
81
+ "ralph": "ralph"
82
+ },
83
+ "zipExt": ".tar.xz"
84
+ },
85
+ "x86_64-unknown-linux-musl-static": {
86
+ "artifactName": "ralph-cli-x86_64-unknown-linux-musl.tar.xz",
59
87
  "bins": {
60
88
  "ralph": "ralph"
61
89
  },
62
90
  "zipExt": ".tar.xz"
63
91
  }
64
92
  },
65
- "version": "2.9.1",
93
+ "version": "2.9.3",
66
94
  "volta": {
67
95
  "node": "18.14.1",
68
96
  "npm": "9.5.0"