ruflo 3.7.0-alpha.71 → 3.7.0-alpha.72
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 +6 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -7,9 +7,8 @@
|
|
|
7
7
|
[](https://goal.ruv.io/agents)
|
|
8
8
|
|
|
9
9
|
[](https://www.npmjs.com/package/ruflo)
|
|
10
|
-
[](https://www.npmjs.com/package/claude-flow)
|
|
10
|
+
[](https://github.com/ruvnet/ruflo/blob/main/data/clone-data.proof.json)
|
|
11
|
+
[](https://github.com/ruvnet/ruflo/blob/main/data/clone-data.ledger.json)
|
|
13
12
|
|
|
14
13
|
[](https://github.com/ruvnet/claude-flow)
|
|
15
14
|
[](https://opensource.org/licenses/MIT)
|
|
@@ -71,14 +70,14 @@ There are **two different install paths** with very different surface areas. Pic
|
|
|
71
70
|
# Install core + any plugins you need
|
|
72
71
|
/plugin install ruflo-core@ruflo
|
|
73
72
|
/plugin install ruflo-swarm@ruflo
|
|
74
|
-
/plugin install ruflo-
|
|
75
|
-
/plugin install ruflo-
|
|
73
|
+
/plugin install ruflo-rag-memory@ruflo
|
|
74
|
+
/plugin install ruflo-neural-trader@ruflo
|
|
76
75
|
```
|
|
77
76
|
|
|
78
77
|
This adds slash commands and agent definitions only. The Ruflo MCP server is NOT registered, so `memory_store`, `swarm_init`, `agent_spawn`, etc. won't be callable from Claude. For the full loop, use Path B below.
|
|
79
78
|
|
|
80
79
|
<details>
|
|
81
|
-
<summary><strong>🔌 All
|
|
80
|
+
<summary><strong>🔌 All 33 plugins</strong></summary>
|
|
82
81
|
|
|
83
82
|
#### Core & Orchestration
|
|
84
83
|
|
|
@@ -106,6 +105,7 @@ This adds slash commands and agent definitions only. The Ruflo MCP server is NOT
|
|
|
106
105
|
| Plugin | What it does |
|
|
107
106
|
|--------|-------------|
|
|
108
107
|
| [**ruflo-intelligence**](plugins/ruflo-intelligence/README.md) | Agents learn from past successes and get smarter |
|
|
108
|
+
| [**ruflo-graph-intelligence**](plugins/ruflo-graph-intelligence/) | Sublinear graph reasoning — PageRank, delta updates, complexity-aware execution (ADR-123) |
|
|
109
109
|
| [**ruflo-daa**](plugins/ruflo-daa/README.md) | Dynamic agent behavior and cognitive patterns |
|
|
110
110
|
| [**ruflo-ruvllm**](plugins/ruflo-ruvllm/README.md) | Run local LLMs (Ollama, etc.) with smart routing |
|
|
111
111
|
| [**ruflo-goals**](plugins/ruflo-goals/README.md) | Break big goals into plans and track progress |
|
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.72",
|
|
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",
|