ruflo 3.25.2 → 3.25.4
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 +17 -0
- package/package.json +2 -8
package/README.md
CHANGED
|
@@ -191,6 +191,23 @@ npm install -g ruflo@latest
|
|
|
191
191
|
claude mcp add ruflo -- npx ruflo@latest mcp start
|
|
192
192
|
```
|
|
193
193
|
|
|
194
|
+
### Start the Background Daemon (enables self-learning + workers)
|
|
195
|
+
|
|
196
|
+
The 12 background workers (audit, optimize, testgaps, map, document, …) run under
|
|
197
|
+
the daemon. `init` sets everything up but does **not** start it — run this once so
|
|
198
|
+
learning and the workers are actually live:
|
|
199
|
+
|
|
200
|
+
```bash
|
|
201
|
+
# Start the background worker daemon
|
|
202
|
+
npx ruflo@latest daemon start
|
|
203
|
+
|
|
204
|
+
# Verify everything is wired (learning bridge, daemon, memory, MCP)
|
|
205
|
+
npx ruflo@latest doctor --fix
|
|
206
|
+
```
|
|
207
|
+
|
|
208
|
+
> 💡 `doctor --fix` also repairs the self-learning bridge if `@claude-flow/memory`
|
|
209
|
+
> could not be resolved on the `npx` install path (#2545).
|
|
210
|
+
|
|
194
211
|
---
|
|
195
212
|
|
|
196
213
|
## What You Get
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ruflo",
|
|
3
|
-
"version": "3.25.
|
|
3
|
+
"version": "3.25.4",
|
|
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",
|
|
@@ -42,13 +42,7 @@
|
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"@claude-flow/cli": "^3.23.0"
|
|
44
44
|
},
|
|
45
|
-
"optionalDependencies": {
|
|
46
|
-
"metaharness": "~0.2.8",
|
|
47
|
-
"@metaharness/router": "~0.3.2",
|
|
48
|
-
"@metaharness/kernel": "~0.1.2",
|
|
49
|
-
"@metaharness/darwin": "~0.8.0",
|
|
50
|
-
"@metaharness/redblue": "~0.1.4"
|
|
51
|
-
},
|
|
45
|
+
"optionalDependencies": {},
|
|
52
46
|
"overrides": {
|
|
53
47
|
"ruvector": "^0.2.27",
|
|
54
48
|
"better-sqlite3": ">=12.8.0",
|