ruflo 3.7.0-alpha.35 → 3.7.0-alpha.36
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 +10 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -156,11 +156,17 @@ This adds slash commands and agent definitions only. The Ruflo MCP server is NOT
|
|
|
156
156
|
|
|
157
157
|
### CLI Install
|
|
158
158
|
|
|
159
|
+
**macOS / Linux / WSL / Git-Bash:**
|
|
160
|
+
|
|
159
161
|
```bash
|
|
160
|
-
# One-line install
|
|
162
|
+
# One-line install (POSIX shells only — see Windows note below)
|
|
161
163
|
curl -fsSL https://cdn.jsdelivr.net/gh/ruvnet/ruflo@main/scripts/install.sh | bash
|
|
164
|
+
```
|
|
165
|
+
|
|
166
|
+
**All platforms (including native Windows PowerShell / cmd):**
|
|
162
167
|
|
|
163
|
-
|
|
168
|
+
```bash
|
|
169
|
+
# Interactive setup wizard — runs identically on every platform
|
|
164
170
|
npx ruflo@latest init wizard
|
|
165
171
|
|
|
166
172
|
# Quick non-interactive init
|
|
@@ -170,6 +176,8 @@ npx ruflo@latest init wizard
|
|
|
170
176
|
npm install -g ruflo@latest
|
|
171
177
|
```
|
|
172
178
|
|
|
179
|
+
> 💡 **Windows users:** the `curl ... | bash` form needs a POSIX shell (Git-Bash, WSL, MSYS). The `npx ruflo@latest init wizard` line works natively in PowerShell and cmd. If you hit an `'bash' is not recognized` error, use the `npx` line instead — both end up running the same init flow.
|
|
180
|
+
|
|
173
181
|
### MCP Server
|
|
174
182
|
|
|
175
183
|
```bash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ruflo",
|
|
3
|
-
"version": "3.7.0-alpha.
|
|
3
|
+
"version": "3.7.0-alpha.36",
|
|
4
4
|
"description": "Ruflo - Enterprise AI agent orchestration platform. Deploy 60+ specialized agents in coordinated swarms with self-learning, fault-tolerant consensus, vector memory, and MCP integration",
|
|
5
5
|
"main": "bin/ruflo.js",
|
|
6
6
|
"type": "module",
|