claude-flow 3.5.83 → 3.6.1
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/.claude-plugin/marketplace.json +97 -88
- package/README.md +126 -7474
- package/package.json +1 -1
- package/v3/@claude-flow/cli/README.md +126 -7474
- package/v3/@claude-flow/cli/dist/src/commands/daemon.js +5 -59
- package/v3/@claude-flow/cli/dist/src/commands/swarm.js +4 -101
- package/v3/@claude-flow/cli/dist/src/init/claudemd-generator.js +0 -21
- package/v3/@claude-flow/cli/dist/src/mcp-tools/agent-tools.js +0 -11
- package/v3/@claude-flow/cli/dist/src/mcp-tools/agentdb-tools.js +1 -1
- package/v3/@claude-flow/cli/dist/src/mcp-tools/analyze-tools.js +6 -6
- package/v3/@claude-flow/cli/dist/src/mcp-tools/hooks-tools.js +0 -12
- package/v3/@claude-flow/cli/dist/src/mcp-tools/swarm-tools.js +0 -10
- package/v3/@claude-flow/cli/dist/src/mcp-tools/task-tools.js +0 -8
- package/v3/@claude-flow/cli/dist/src/mcp-tools/transfer-tools.js +2 -2
- package/v3/@claude-flow/cli/dist/src/mcp-tools/validate-input.d.ts +9 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/validate-input.js +39 -0
- package/v3/@claude-flow/cli/dist/src/memory/memory-bridge.js +12 -2
- package/v3/@claude-flow/cli/dist/src/ruvector/ruvllm-wasm.js +16 -4
- package/v3/@claude-flow/cli/dist/src/services/index.d.ts +0 -3
- package/v3/@claude-flow/cli/dist/src/services/index.js +0 -6
- package/v3/@claude-flow/cli/package.json +1 -1
|
@@ -1,96 +1,105 @@
|
|
|
1
1
|
{
|
|
2
|
-
"name": "
|
|
2
|
+
"name": "ruflo",
|
|
3
|
+
"description": "RuFlo Marketplace: Claude Code native agents, swarms, workers, and MCP tools for continuous software engineering",
|
|
3
4
|
"owner": {
|
|
4
|
-
"name": "
|
|
5
|
-
"
|
|
6
|
-
},
|
|
7
|
-
"metadata": {
|
|
8
|
-
"description": "Enterprise AI agent orchestration marketplace for Claude Code",
|
|
9
|
-
"version": "2.5.0",
|
|
10
|
-
"homepage": "https://github.com/ruvnet/claude-flow",
|
|
11
|
-
"repository": "https://github.com/ruvnet/claude-flow"
|
|
5
|
+
"name": "ruvnet",
|
|
6
|
+
"url": "https://github.com/ruvnet"
|
|
12
7
|
},
|
|
13
8
|
"plugins": [
|
|
14
9
|
{
|
|
15
|
-
"name": "
|
|
16
|
-
"source": "./",
|
|
17
|
-
"description": "
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
"
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
"
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
10
|
+
"name": "ruflo-core",
|
|
11
|
+
"source": "./plugins/ruflo-core",
|
|
12
|
+
"description": "Core Ruflo MCP tools, commands, and Claude Code orchestration patterns"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"name": "ruflo-swarm",
|
|
16
|
+
"source": "./plugins/ruflo-swarm",
|
|
17
|
+
"description": "Agent teams, swarm coordination, Monitor streams, and worktree isolation"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"name": "ruflo-loop-workers",
|
|
21
|
+
"source": "./plugins/ruflo-loop-workers",
|
|
22
|
+
"description": "Cache-aware /loop workers and CronCreate background automation"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"name": "ruflo-security-audit",
|
|
26
|
+
"source": "./plugins/ruflo-security-audit",
|
|
27
|
+
"description": "Security review, dependency scanning, policy gates, and CVE monitoring"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"name": "ruflo-rag-memory",
|
|
31
|
+
"source": "./plugins/ruflo-rag-memory",
|
|
32
|
+
"description": "RuVector memory with HNSW search, AgentDB, and semantic retrieval"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"name": "ruflo-testgen",
|
|
36
|
+
"source": "./plugins/ruflo-testgen",
|
|
37
|
+
"description": "Test gap detection, coverage analysis, and automated test generation"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"name": "ruflo-docs",
|
|
41
|
+
"source": "./plugins/ruflo-docs",
|
|
42
|
+
"description": "Documentation generation, drift detection, and API docs automation"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"name": "ruflo-autopilot",
|
|
46
|
+
"source": "./plugins/ruflo-autopilot",
|
|
47
|
+
"description": "Autonomous /loop-driven task completion with learning, prediction, and progress tracking"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"name": "ruflo-intelligence",
|
|
51
|
+
"source": "./plugins/ruflo-intelligence",
|
|
52
|
+
"description": "Self-learning neural intelligence with SONA patterns, trajectory learning, and model routing"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"name": "ruflo-agentdb",
|
|
56
|
+
"source": "./plugins/ruflo-agentdb",
|
|
57
|
+
"description": "AgentDB memory controllers with HNSW vector search, RuVector embeddings, and causal graphs"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"name": "ruflo-aidefence",
|
|
61
|
+
"source": "./plugins/ruflo-aidefence",
|
|
62
|
+
"description": "AI safety scanning, PII detection, prompt injection defense, and adaptive threat learning"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"name": "ruflo-browser",
|
|
66
|
+
"source": "./plugins/ruflo-browser",
|
|
67
|
+
"description": "Agentic browser automation with Playwright for testing, scraping, and UI interaction"
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"name": "ruflo-jujutsu",
|
|
71
|
+
"source": "./plugins/ruflo-jujutsu",
|
|
72
|
+
"description": "Advanced git workflows with diff analysis, risk scoring, and reviewer recommendations"
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"name": "ruflo-wasm",
|
|
76
|
+
"source": "./plugins/ruflo-wasm",
|
|
77
|
+
"description": "Sandboxed WASM agent creation, execution, and gallery sharing"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"name": "ruflo-workflows",
|
|
81
|
+
"source": "./plugins/ruflo-workflows",
|
|
82
|
+
"description": "Visual workflow automation with templates, orchestration, and lifecycle management"
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"name": "ruflo-daa",
|
|
86
|
+
"source": "./plugins/ruflo-daa",
|
|
87
|
+
"description": "Dynamic Agentic Architecture with cognitive patterns, knowledge sharing, and adaptive agents"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"name": "ruflo-ruvllm",
|
|
91
|
+
"source": "./plugins/ruflo-ruvllm",
|
|
92
|
+
"description": "RuVLLM local inference with chat formatting, MicroLoRA fine-tuning, and SONA adaptation"
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"name": "ruflo-rvf",
|
|
96
|
+
"source": "./plugins/ruflo-rvf",
|
|
97
|
+
"description": "RVF format for portable agent memory, session persistence, and cross-platform transfer"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"name": "ruflo-plugin-creator",
|
|
101
|
+
"source": "./plugins/ruflo-plugin-creator",
|
|
102
|
+
"description": "Scaffold, validate, and publish new Claude Code plugins with proper structure"
|
|
94
103
|
}
|
|
95
104
|
]
|
|
96
105
|
}
|