ruflo 3.13.2 → 3.14.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 +24 -22
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,34 +2,28 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://cognitum.one/agentic-engineering)
|
|
4
4
|
|
|
5
|
+
<!-- Try Ruflo — the 4 badges first-time visitors actually act on -->
|
|
5
6
|
[](https://flo.ruv.io/)
|
|
6
|
-
[](https://goal.ruv.io/agents)
|
|
8
|
-
|
|
9
|
-
[](https://www.npmjs.com/package/ruflo)
|
|
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)
|
|
12
|
-
|
|
13
|
-
[](https://github.com/ruvnet/claude-flow)
|
|
7
|
+
[](https://www.npmjs.com/package/ruflo)
|
|
14
8
|
[](https://opensource.org/licenses/MIT)
|
|
15
|
-
[](https://github.com/ruvnet/claude-flow)
|
|
10
|
+
|
|
11
|
+
<!-- Ecosystem strip (collapsed visually with flat-square) -->
|
|
12
|
+
[](https://goal.ruv.io/)
|
|
13
|
+
[](https://goal.ruv.io/agents)
|
|
14
|
+
[](https://github.com/ruvnet/ruvector)
|
|
15
|
+
[](https://github.com/ruvnet/ruflo/blob/main/data/clone-data.proof.json)
|
|
16
|
+
[](https://github.com/ruvnet/ruflo/blob/main/data/clone-data.ledger.json)
|
|
17
|
+
[](https://github.com/ruvnet/claude-flow)
|
|
18
|
+
[](https://www.npmjs.com/package/@claude-flow/codex)
|
|
18
19
|
|
|
19
20
|
# Ruflo
|
|
20
21
|
|
|
21
|
-
**
|
|
22
|
+
**An agent meta-harness for Claude Code and Codex.**
|
|
22
23
|
|
|
23
24
|
</div>
|
|
24
25
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
### Why Ruflo?
|
|
28
|
-
|
|
29
|
-
> Claude Flow is now Ruflo — named by [`rUv`](https://ruv.io), who loves Rust, flow states, and building things that feel inevitable. The "Ru" is the rUv. The "flo" is working until 3am. Underneath, powered by [`Cognitum.One`](https://cognitum.one/?RuFlo) agentic architecture, running a supercharged Rust based AI engine, embeddings, memory, and plugin system.
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
### What Ruflo Does
|
|
26
|
+
> **Agent = Model + Harness.** The model writes; the harness gives it tools, memory, loops, sandboxes, and controls so it can actually work. **Ruflo is the harness** — the execution layer around Claude Code and Codex that adds 100+ specialized agents, coordinated swarms, self-learning memory, federated comms across machines, and enterprise security guardrails. So agents don't just run, they collaborate.
|
|
33
27
|
|
|
34
28
|
One `npx ruflo init` gives Claude Code a nervous system: agents self-organize into swarms, learn from every task, remember across sessions, and — with federation — securely talk to agents on other machines without leaking data. You keep writing code. Ruflo handles the coordination.
|
|
35
29
|
|
|
@@ -41,7 +35,14 @@ User --> Ruflo (CLI/MCP) --> Router --> Swarm --> Agents --> Memory --> LLM Prov
|
|
|
41
35
|
+---- Learning Loop <-------+
|
|
42
36
|
```
|
|
43
37
|
|
|
44
|
-
> **New to Ruflo?** You don't need to learn 314 MCP tools or 26 CLI commands. After `init`, just use Claude Code normally
|
|
38
|
+
> **New to Ruflo?** You don't need to learn 314 MCP tools or 26 CLI commands. After `init`, just use Claude Code normally — the hooks system automatically routes tasks, learns from successful patterns, and coordinates agents in the background.
|
|
39
|
+
|
|
40
|
+
<details>
|
|
41
|
+
<summary><strong>📖 Background — where the name comes from</strong></summary>
|
|
42
|
+
|
|
43
|
+
> Claude Flow is now Ruflo — named by [`rUv`](https://ruv.io), who loves Rust, flow states, and building things that feel inevitable. The "Ru" is the rUv. The "flo" is working until 3am. Underneath, powered by [`Cognitum.One`](https://cognitum.one/?RuFlo) agentic architecture, running a supercharged Rust-based AI engine, embeddings, memory, and plugin system.
|
|
44
|
+
|
|
45
|
+
</details>
|
|
45
46
|
|
|
46
47
|
---
|
|
47
48
|
|
|
@@ -75,7 +76,7 @@ There are **two different install paths** with very different surface areas. Pic
|
|
|
75
76
|
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.
|
|
76
77
|
|
|
77
78
|
<details>
|
|
78
|
-
<summary><strong>🔌 All
|
|
79
|
+
<summary><strong>🔌 All 35 plugins</strong></summary>
|
|
79
80
|
|
|
80
81
|
#### Core & Orchestration
|
|
81
82
|
|
|
@@ -132,6 +133,7 @@ This adds slash commands and agent definitions only. The Ruflo MCP server is NOT
|
|
|
132
133
|
| [**ruflo-ddd**](plugins/ruflo-ddd/README.md) | Scaffold domain-driven design — contexts, aggregates, events |
|
|
133
134
|
| [**ruflo-sparc**](plugins/ruflo-sparc/README.md) | Guided 5-phase development methodology with quality gates |
|
|
134
135
|
| [**ruflo-metaharness**](plugins/ruflo-metaharness/README.md) | Grade your agent setup, scan tool configs for security risks, and track changes over time ([guide](docs/metaharness-user-guide.md)) |
|
|
136
|
+
| [**ruflo-arena**](plugins/ruflo-arena/README.md) | Competitive ruliology — pit agent strategies against each other in tournaments, hill-climb and co-evolve the winners (ADR-147/148) |
|
|
135
137
|
|
|
136
138
|
#### DevOps & Observability
|
|
137
139
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ruflo",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.14.0",
|
|
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",
|