@ralph-orchestrator/ralph-cli 2.3.0 → 2.4.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/README.md +27 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -102,6 +102,33 @@ Ralph implements the [Ralph Wiggum technique](https://ghuntley.com/ralph/) — a
|
|
|
102
102
|
- **Memories & Tasks** — Persistent learning and runtime work tracking
|
|
103
103
|
- **31 Presets** — TDD, spec-driven, debugging, and more
|
|
104
104
|
|
|
105
|
+
## RObot (Human-in-the-Loop)
|
|
106
|
+
|
|
107
|
+
Ralph supports human interaction during orchestration via Telegram. Agents can ask questions and block until answered; humans can send proactive guidance at any time.
|
|
108
|
+
|
|
109
|
+
Quick onboarding (Telegram):
|
|
110
|
+
|
|
111
|
+
```bash
|
|
112
|
+
ralph bot onboard --telegram # guided setup (token + chat id)
|
|
113
|
+
ralph bot status # verify config
|
|
114
|
+
ralph bot test # send a test message
|
|
115
|
+
```
|
|
116
|
+
|
|
117
|
+
```yaml
|
|
118
|
+
# ralph.yml
|
|
119
|
+
RObot:
|
|
120
|
+
enabled: true
|
|
121
|
+
telegram:
|
|
122
|
+
bot_token: "your-token" # Or RALPH_TELEGRAM_BOT_TOKEN env var
|
|
123
|
+
```
|
|
124
|
+
|
|
125
|
+
- **Agent questions** — Agents emit `interact.human` events; the loop blocks until a response arrives or times out
|
|
126
|
+
- **Proactive guidance** — Send messages anytime to steer the agent mid-loop
|
|
127
|
+
- **Parallel loop routing** — Messages route via reply-to, `@loop-id` prefix, or default to primary
|
|
128
|
+
- **Telegram commands** — `/status`, `/tasks`, `/restart` for real-time loop visibility
|
|
129
|
+
|
|
130
|
+
See the [Telegram guide](https://mikeyobrien.github.io/ralph-orchestrator/guide/telegram/) for setup instructions.
|
|
131
|
+
|
|
105
132
|
## Documentation
|
|
106
133
|
|
|
107
134
|
Full documentation is available at **[mikeyobrien.github.io/ralph-orchestrator](https://mikeyobrien.github.io/ralph-orchestrator/)**:
|
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.4.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.4.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.4.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.4.0",
|
|
66
66
|
"volta": {
|
|
67
67
|
"node": "18.14.1",
|
|
68
68
|
"npm": "9.5.0"
|