ruflo 3.1.0-alpha.14
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 +45 -0
- package/bin/ruflo.js +16 -0
- package/package.json +64 -0
package/README.md
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
# Ruflo
|
|
2
|
+
|
|
3
|
+
Enterprise AI agent orchestration platform. Deploy 60+ specialized agents in coordinated swarms with self-learning, fault-tolerant consensus, vector memory, and MCP integration.
|
|
4
|
+
|
|
5
|
+
**Ruflo** is the new name for [claude-flow](https://www.npmjs.com/package/claude-flow). Both packages are fully supported.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
# Quick start
|
|
11
|
+
npx ruflo@latest init --wizard
|
|
12
|
+
|
|
13
|
+
# Global install
|
|
14
|
+
npm install -g ruflo
|
|
15
|
+
|
|
16
|
+
# Add as MCP server
|
|
17
|
+
claude mcp add ruflo -- npx -y ruflo@latest mcp start
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Usage
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
ruflo init --wizard # Initialize project
|
|
24
|
+
ruflo agent spawn -t coder # Spawn an agent
|
|
25
|
+
ruflo swarm init # Start a swarm
|
|
26
|
+
ruflo memory search -q "..." # Search vector memory
|
|
27
|
+
ruflo doctor # System diagnostics
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
## Relationship to claude-flow
|
|
31
|
+
|
|
32
|
+
| Package | npm | CLI Command |
|
|
33
|
+
|---------|-----|-------------|
|
|
34
|
+
| `ruflo` | [npmjs.com/package/ruflo](https://www.npmjs.com/package/ruflo) | `ruflo` |
|
|
35
|
+
| `claude-flow` | [npmjs.com/package/claude-flow](https://www.npmjs.com/package/claude-flow) | `claude-flow` |
|
|
36
|
+
|
|
37
|
+
Both packages use `@claude-flow/cli` under the hood. Choose whichever you prefer.
|
|
38
|
+
|
|
39
|
+
## Documentation
|
|
40
|
+
|
|
41
|
+
Full documentation: [github.com/ruvnet/claude-flow](https://github.com/ruvnet/claude-flow)
|
|
42
|
+
|
|
43
|
+
## License
|
|
44
|
+
|
|
45
|
+
MIT
|
package/bin/ruflo.js
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
// Ruflo CLI - thin wrapper around @claude-flow/cli
|
|
3
|
+
import { createRequire } from 'node:module';
|
|
4
|
+
import { fileURLToPath } from 'node:url';
|
|
5
|
+
import { dirname, resolve } from 'node:path';
|
|
6
|
+
|
|
7
|
+
const __dirname = dirname(fileURLToPath(import.meta.url));
|
|
8
|
+
|
|
9
|
+
// Try loading from @claude-flow/cli dependency first, fall back to bundled
|
|
10
|
+
try {
|
|
11
|
+
const cliPath = createRequire(import.meta.url).resolve('@claude-flow/cli/bin/cli.js');
|
|
12
|
+
await import(cliPath);
|
|
13
|
+
} catch {
|
|
14
|
+
// Fallback: try relative path (for development / linked installs)
|
|
15
|
+
await import(resolve(__dirname, '../../v3/@claude-flow/cli/bin/cli.js'));
|
|
16
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "ruflo",
|
|
3
|
+
"version": "3.1.0-alpha.14",
|
|
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
|
+
"main": "bin/ruflo.js",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"bin": {
|
|
8
|
+
"ruflo": "./bin/ruflo.js"
|
|
9
|
+
},
|
|
10
|
+
"homepage": "https://github.com/ruvnet/claude-flow#readme",
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/ruvnet/claude-flow/issues",
|
|
13
|
+
"email": "support@ruv.io"
|
|
14
|
+
},
|
|
15
|
+
"funding": {
|
|
16
|
+
"type": "github",
|
|
17
|
+
"url": "https://github.com/sponsors/ruvnet"
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"bin/**",
|
|
21
|
+
"README.md",
|
|
22
|
+
"LICENSE"
|
|
23
|
+
],
|
|
24
|
+
"dependencies": {
|
|
25
|
+
"@claude-flow/cli": ">=3.0.0-alpha.1"
|
|
26
|
+
},
|
|
27
|
+
"engines": {
|
|
28
|
+
"node": ">=20.0.0"
|
|
29
|
+
},
|
|
30
|
+
"repository": {
|
|
31
|
+
"type": "git",
|
|
32
|
+
"url": "https://github.com/ruvnet/claude-flow.git",
|
|
33
|
+
"directory": "ruflo"
|
|
34
|
+
},
|
|
35
|
+
"keywords": [
|
|
36
|
+
"ruflo",
|
|
37
|
+
"claude-flow",
|
|
38
|
+
"claude",
|
|
39
|
+
"claude-code",
|
|
40
|
+
"anthropic",
|
|
41
|
+
"ai",
|
|
42
|
+
"ai-agents",
|
|
43
|
+
"multi-agent",
|
|
44
|
+
"agent-orchestration",
|
|
45
|
+
"swarm-intelligence",
|
|
46
|
+
"swarm",
|
|
47
|
+
"mcp",
|
|
48
|
+
"model-context-protocol",
|
|
49
|
+
"cli",
|
|
50
|
+
"developer-tools",
|
|
51
|
+
"enterprise",
|
|
52
|
+
"self-learning"
|
|
53
|
+
],
|
|
54
|
+
"author": {
|
|
55
|
+
"name": "RuvNet",
|
|
56
|
+
"email": "ruv@ruv.io",
|
|
57
|
+
"url": "https://ruv.io"
|
|
58
|
+
},
|
|
59
|
+
"license": "MIT",
|
|
60
|
+
"publishConfig": {
|
|
61
|
+
"access": "public",
|
|
62
|
+
"tag": "alpha"
|
|
63
|
+
}
|
|
64
|
+
}
|