@ralph-orchestrator/ralph-cli 2.0.8 → 2.0.9

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 CHANGED
@@ -62,7 +62,7 @@ See [AGENTS.md](AGENTS.md) for the full philosophy.
62
62
 
63
63
  ## Features
64
64
 
65
- - **Multi-Backend Support** — Works with Claude Code, Kiro, Gemini CLI, Codex, Amp, and Copilot CLI
65
+ - **Multi-Backend Support** — Works with Claude Code, Kiro, Gemini CLI, Codex, Amp, Copilot CLI, and OpenCode
66
66
  - **Hat System** — Specialized Ralph personas with distinct behaviors
67
67
  - **Event-Driven Coordination** — Hats communicate through typed events with glob pattern matching
68
68
  - **Backpressure Enforcement** — Gates that reject incomplete work (tests, lint, typecheck)
@@ -82,6 +82,7 @@ See [AGENTS.md](AGENTS.md) for the full philosophy.
82
82
  - [Codex](https://github.com/openai/codex)
83
83
  - [Amp](https://github.com/sourcegraph/amp)
84
84
  - [Copilot CLI](https://docs.github.com/copilot) (`npm install -g @github/copilot`)
85
+ - [OpenCode](https://opencode.ai/) (`curl -fsSL https://opencode.ai/install | bash`)
85
86
 
86
87
  ### Via npm (Recommended)
87
88
 
@@ -93,6 +94,12 @@ npm install -g @ralph-orchestrator/ralph-cli
93
94
  npx @ralph-orchestrator/ralph-cli --version
94
95
  ```
95
96
 
97
+ ### Via Homebrew (macOS)
98
+
99
+ ```bash
100
+ brew install ralph-orchestrator
101
+ ```
102
+
96
103
  ### Via Cargo
97
104
 
98
105
  ```bash
@@ -282,7 +289,7 @@ event_loop:
282
289
 
283
290
  # CLI backend settings
284
291
  cli:
285
- backend: "claude" # claude, kiro, gemini, codex, amp, copilot, custom
292
+ backend: "claude" # claude, kiro, gemini, codex, amp, copilot, opencode, custom
286
293
  prompt_mode: "arg" # arg (CLI argument) or stdin
287
294
  experimental_tui: false # Enable TUI mode support
288
295
 
@@ -447,7 +454,7 @@ tests: pass, lint: pass, typecheck: pass
447
454
 
448
455
  | Option | Description |
449
456
  |--------|-------------|
450
- | `--backend <NAME>` | Backend: `claude`, `kiro`, `gemini`, `codex`, `amp`, `copilot` |
457
+ | `--backend <NAME>` | Backend: `claude`, `kiro`, `gemini`, `codex`, `amp`, `copilot`, `opencode` |
451
458
  | `--preset <NAME>` | Use preset configuration |
452
459
  | `--list-presets` | List available presets |
453
460
  | `--force` | Overwrite existing config |
@@ -23,7 +23,7 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "MIT",
25
25
  "name": "@ralph-orchestrator/ralph-cli",
26
- "version": "2.0.8"
26
+ "version": "2.0.9"
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.0.8"
518
+ "version": "2.0.9"
519
519
  }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "artifactDownloadUrl": "https://github.com/mikeyobrien/ralph-orchestrator/releases/download/v2.0.8",
2
+ "artifactDownloadUrl": "https://github.com/mikeyobrien/ralph-orchestrator/releases/download/v2.0.9",
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.0.8",
65
+ "version": "2.0.9",
66
66
  "volta": {
67
67
  "node": "18.14.1",
68
68
  "npm": "9.5.0"