claude-flow 3.6.9 → 3.6.10
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
CHANGED
|
@@ -12,15 +12,15 @@
|
|
|
12
12
|
|
|
13
13
|
</div>
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
Orchestrate 100+ specialized AI agents across machines, teams, and trust boundaries. Ruflo adds coordinated swarms, self-learning memory, federated comms, and enterprise security to Claude Code — so agents don't just run, they collaborate.
|
|
16
16
|
|
|
17
17
|
### Why Ruflo?
|
|
18
18
|
|
|
19
|
-
>
|
|
19
|
+
> Claude Flow is now Ruflo — named by Ruv, who loves Rust, flow states, and building things that feel inevitable. The "Ru" is the Ruv. The "flo" is the flow. Underneath, WASM kernels written in Rust power the policy engine, embeddings, and proof system.
|
|
20
20
|
|
|
21
|
-
###
|
|
21
|
+
### What Ruflo Does
|
|
22
22
|
|
|
23
|
-
|
|
23
|
+
One `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.
|
|
24
24
|
|
|
25
25
|
```
|
|
26
26
|
Self-Learning / Self-Optimizing Agent Architecture
|
|
@@ -48,10 +48,11 @@ Install Ruflo as a native Claude Code plugin -- adds skills, commands, agents, a
|
|
|
48
48
|
/plugin install ruflo-core@ruflo
|
|
49
49
|
/plugin install ruflo-swarm@ruflo
|
|
50
50
|
/plugin install ruflo-autopilot@ruflo
|
|
51
|
+
/plugin install ruflo-federation@ruflo
|
|
51
52
|
```
|
|
52
53
|
|
|
53
54
|
<details>
|
|
54
|
-
<summary><strong>All
|
|
55
|
+
<summary><strong>All 21 plugins</strong></summary>
|
|
55
56
|
|
|
56
57
|
| Plugin | What it adds |
|
|
57
58
|
|--------|-------------|
|
|
@@ -74,6 +75,7 @@ Install Ruflo as a native Claude Code plugin -- adds skills, commands, agents, a
|
|
|
74
75
|
| **ruflo-testgen** | Test gap detection, TDD workflow, tester agent |
|
|
75
76
|
| **ruflo-docs** | Doc generation, drift detection, docs-writer agent |
|
|
76
77
|
| **ruflo-plugin-creator** | Scaffold, validate, and publish new plugins |
|
|
78
|
+
| **ruflo-federation** | Zero-trust agent federation, PII pipeline, cross-installation comms |
|
|
77
79
|
| **ruflo-goals** | GOAP planning, deep research, long-horizon tracking |
|
|
78
80
|
|
|
79
81
|
</details>
|
|
@@ -105,13 +107,80 @@ claude mcp add ruflo -- npx -y @claude-flow/cli@latest
|
|
|
105
107
|
| Capability | Description |
|
|
106
108
|
|------------|-------------|
|
|
107
109
|
| 🤖 **100+ Agents** | Specialized agents for coding, testing, security, docs, architecture |
|
|
110
|
+
| 📡 **Comms Layer** | Zero-trust federation — agents across machines/orgs discover, authenticate, and exchange work securely |
|
|
108
111
|
| 🐝 **Swarm Coordination** | Hierarchical, mesh, and adaptive topologies with consensus |
|
|
109
112
|
| 🧠 **Self-Learning** | SONA neural patterns, ReasoningBank, trajectory learning |
|
|
110
113
|
| 💾 **Vector Memory** | HNSW-indexed AgentDB with 150x-12,500x faster search |
|
|
111
114
|
| ⚡ **Background Workers** | 12 auto-triggered workers (audit, optimize, testgaps, etc.) |
|
|
112
|
-
| 🧩 **Plugin Marketplace** |
|
|
115
|
+
| 🧩 **Plugin Marketplace** | 21 native Claude Code plugins + 21 npm plugins |
|
|
113
116
|
| 🔌 **Multi-Provider** | Claude, GPT, Gemini, Cohere, Ollama with smart routing |
|
|
114
117
|
| 🛡️ **Security** | AIDefence, input validation, CVE remediation, path traversal prevention |
|
|
118
|
+
| 🌐 **Agent Federation** | Cross-installation agent collaboration with zero-trust security
|
|
119
|
+
|
|
120
|
+
### Agent Federation — Slack for Agents
|
|
121
|
+
|
|
122
|
+
```
|
|
123
|
+
Your Agent --> [ Remove secrets ] --> [ Sign message ] --> [ Encrypted channel ]
|
|
124
|
+
Emails, SSNs, Proves it came No one reads it
|
|
125
|
+
keys stripped from you in transit
|
|
126
|
+
|
|
|
127
|
+
v
|
|
128
|
+
Their Agent <-- [ Block attacks ] <-- [ Check identity ] <------+
|
|
129
|
+
Stops prompt Rejects forgeries
|
|
130
|
+
injection
|
|
131
|
+
|
|
132
|
+
Audit trail on both sides.
|
|
133
|
+
Trust builds over time. Bad behavior = instant downgrade.
|
|
134
|
+
```
|
|
135
|
+
|
|
136
|
+
Slack gave teams channels. Federation gives agents the same thing — **shared workspaces across trust boundaries**, where agents on different machines, orgs, or cloud regions can discover each other, prove who they are, and collaborate on tasks.
|
|
137
|
+
|
|
138
|
+
The difference: some channels are trusted, some aren't. [`@claude-flow/plugin-agent-federation`](https://github.com/ruvnet/ruflo/issues/1669) handles that automatically. Your agents join a federation, get verified via mTLS + ed25519, and start exchanging work — with PII stripped before anything leaves your node and every message auditable. Untrusted agents can still participate at lower privilege: they see discovery info, not your memory. As they prove reliable, trust upgrades. If they misbehave, they get downgraded instantly — no human in the loop required.
|
|
139
|
+
|
|
140
|
+
You don't configure handshakes or manage certificates. You `federation init`, `federation join`, and your agents start talking. The protocol handles identity, the PII pipeline handles data safety, and the audit trail handles compliance.
|
|
141
|
+
|
|
142
|
+
<details>
|
|
143
|
+
<summary><strong>Federation capabilities</strong></summary>
|
|
144
|
+
|
|
145
|
+
| | Capability | How it works |
|
|
146
|
+
|---|---|---|
|
|
147
|
+
| 🔒 | **Zero-trust federation** | Remote agents start untrusted. Identity proven via mTLS + ed25519 challenge-response. No API keys, no shared secrets. |
|
|
148
|
+
| 🛡️ | **PII-gated data flow** | 14-type detection pipeline scans every outbound message. Per-trust-level policies: BLOCK, REDACT, HASH, or PASS. Adaptive calibration reduces false positives. |
|
|
149
|
+
| 📊 | **Behavioral trust scoring** | Formula (`0.4×success + 0.2×uptime + 0.2×threat + 0.2×integrity`) continuously evaluates peers. Upgrades require history; downgrades are instant. |
|
|
150
|
+
| 📋 | **Compliance built-in** | HIPAA, SOC2, GDPR audit trails as compliance modes. Every federation event produces a structured record searchable via HNSW. |
|
|
151
|
+
| 🤝 | **9 MCP tools + 10 CLI commands** | Full lifecycle: `federation_init`, `federation_send`, `federation_trust`, `federation_audit`, and more. |
|
|
152
|
+
|
|
153
|
+
</details>
|
|
154
|
+
|
|
155
|
+
<details>
|
|
156
|
+
<summary><strong>Example: two teams sharing fraud signals without sharing customer data</strong></summary>
|
|
157
|
+
|
|
158
|
+
```bash
|
|
159
|
+
# Team A: initialize federation and generate keypair
|
|
160
|
+
npx claude-flow@latest federation init
|
|
161
|
+
|
|
162
|
+
# Team A: join Team B's federation endpoint
|
|
163
|
+
npx claude-flow@latest federation join wss://team-b.example.com:8443
|
|
164
|
+
|
|
165
|
+
# Team A: send a task — PII is stripped automatically before it leaves
|
|
166
|
+
npx claude-flow@latest federation send --to team-b --type task-request \
|
|
167
|
+
--message "Analyze transaction patterns for account anomalies"
|
|
168
|
+
|
|
169
|
+
# Team A: check peer trust levels and session health
|
|
170
|
+
npx claude-flow@latest federation status
|
|
171
|
+
```
|
|
172
|
+
|
|
173
|
+
</details>
|
|
174
|
+
|
|
175
|
+
See [issue #1669](https://github.com/ruvnet/ruflo/issues/1669) for the complete architecture, trust model, and implementation roadmap.
|
|
176
|
+
|
|
177
|
+
```bash
|
|
178
|
+
# Claude Code plugin
|
|
179
|
+
/plugin install ruflo-federation@ruflo
|
|
180
|
+
|
|
181
|
+
# Or via CLI
|
|
182
|
+
npx claude-flow@latest plugins install @claude-flow/plugin-agent-federation
|
|
183
|
+
```
|
|
115
184
|
|
|
116
185
|
<details>
|
|
117
186
|
<summary><strong>Claude Code: With vs Without Ruflo</strong></summary>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-flow",
|
|
3
|
-
"version": "3.6.
|
|
3
|
+
"version": "3.6.10",
|
|
4
4
|
"description": "Ruflo - Enterprise AI agent orchestration for Claude Code. Deploy 60+ specialized agents in coordinated swarms with self-learning, fault-tolerant consensus, vector memory, and MCP integration",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -12,15 +12,15 @@
|
|
|
12
12
|
|
|
13
13
|
</div>
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
Orchestrate 100+ specialized AI agents across machines, teams, and trust boundaries. Ruflo adds coordinated swarms, self-learning memory, federated comms, and enterprise security to Claude Code — so agents don't just run, they collaborate.
|
|
16
16
|
|
|
17
17
|
### Why Ruflo?
|
|
18
18
|
|
|
19
|
-
>
|
|
19
|
+
> Claude Flow is now Ruflo — named by Ruv, who loves Rust, flow states, and building things that feel inevitable. The "Ru" is the Ruv. The "flo" is the flow. Underneath, WASM kernels written in Rust power the policy engine, embeddings, and proof system.
|
|
20
20
|
|
|
21
|
-
###
|
|
21
|
+
### What Ruflo Does
|
|
22
22
|
|
|
23
|
-
|
|
23
|
+
One `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.
|
|
24
24
|
|
|
25
25
|
```
|
|
26
26
|
Self-Learning / Self-Optimizing Agent Architecture
|
|
@@ -48,10 +48,11 @@ Install Ruflo as a native Claude Code plugin -- adds skills, commands, agents, a
|
|
|
48
48
|
/plugin install ruflo-core@ruflo
|
|
49
49
|
/plugin install ruflo-swarm@ruflo
|
|
50
50
|
/plugin install ruflo-autopilot@ruflo
|
|
51
|
+
/plugin install ruflo-federation@ruflo
|
|
51
52
|
```
|
|
52
53
|
|
|
53
54
|
<details>
|
|
54
|
-
<summary><strong>All
|
|
55
|
+
<summary><strong>All 21 plugins</strong></summary>
|
|
55
56
|
|
|
56
57
|
| Plugin | What it adds |
|
|
57
58
|
|--------|-------------|
|
|
@@ -74,6 +75,7 @@ Install Ruflo as a native Claude Code plugin -- adds skills, commands, agents, a
|
|
|
74
75
|
| **ruflo-testgen** | Test gap detection, TDD workflow, tester agent |
|
|
75
76
|
| **ruflo-docs** | Doc generation, drift detection, docs-writer agent |
|
|
76
77
|
| **ruflo-plugin-creator** | Scaffold, validate, and publish new plugins |
|
|
78
|
+
| **ruflo-federation** | Zero-trust agent federation, PII pipeline, cross-installation comms |
|
|
77
79
|
| **ruflo-goals** | GOAP planning, deep research, long-horizon tracking |
|
|
78
80
|
|
|
79
81
|
</details>
|
|
@@ -105,13 +107,80 @@ claude mcp add ruflo -- npx -y @claude-flow/cli@latest
|
|
|
105
107
|
| Capability | Description |
|
|
106
108
|
|------------|-------------|
|
|
107
109
|
| 🤖 **100+ Agents** | Specialized agents for coding, testing, security, docs, architecture |
|
|
110
|
+
| 📡 **Comms Layer** | Zero-trust federation — agents across machines/orgs discover, authenticate, and exchange work securely |
|
|
108
111
|
| 🐝 **Swarm Coordination** | Hierarchical, mesh, and adaptive topologies with consensus |
|
|
109
112
|
| 🧠 **Self-Learning** | SONA neural patterns, ReasoningBank, trajectory learning |
|
|
110
113
|
| 💾 **Vector Memory** | HNSW-indexed AgentDB with 150x-12,500x faster search |
|
|
111
114
|
| ⚡ **Background Workers** | 12 auto-triggered workers (audit, optimize, testgaps, etc.) |
|
|
112
|
-
| 🧩 **Plugin Marketplace** |
|
|
115
|
+
| 🧩 **Plugin Marketplace** | 21 native Claude Code plugins + 21 npm plugins |
|
|
113
116
|
| 🔌 **Multi-Provider** | Claude, GPT, Gemini, Cohere, Ollama with smart routing |
|
|
114
117
|
| 🛡️ **Security** | AIDefence, input validation, CVE remediation, path traversal prevention |
|
|
118
|
+
| 🌐 **Agent Federation** | Cross-installation agent collaboration with zero-trust security
|
|
119
|
+
|
|
120
|
+
### Agent Federation — Slack for Agents
|
|
121
|
+
|
|
122
|
+
```
|
|
123
|
+
Your Agent --> [ Remove secrets ] --> [ Sign message ] --> [ Encrypted channel ]
|
|
124
|
+
Emails, SSNs, Proves it came No one reads it
|
|
125
|
+
keys stripped from you in transit
|
|
126
|
+
|
|
|
127
|
+
v
|
|
128
|
+
Their Agent <-- [ Block attacks ] <-- [ Check identity ] <------+
|
|
129
|
+
Stops prompt Rejects forgeries
|
|
130
|
+
injection
|
|
131
|
+
|
|
132
|
+
Audit trail on both sides.
|
|
133
|
+
Trust builds over time. Bad behavior = instant downgrade.
|
|
134
|
+
```
|
|
135
|
+
|
|
136
|
+
Slack gave teams channels. Federation gives agents the same thing — **shared workspaces across trust boundaries**, where agents on different machines, orgs, or cloud regions can discover each other, prove who they are, and collaborate on tasks.
|
|
137
|
+
|
|
138
|
+
The difference: some channels are trusted, some aren't. [`@claude-flow/plugin-agent-federation`](https://github.com/ruvnet/ruflo/issues/1669) handles that automatically. Your agents join a federation, get verified via mTLS + ed25519, and start exchanging work — with PII stripped before anything leaves your node and every message auditable. Untrusted agents can still participate at lower privilege: they see discovery info, not your memory. As they prove reliable, trust upgrades. If they misbehave, they get downgraded instantly — no human in the loop required.
|
|
139
|
+
|
|
140
|
+
You don't configure handshakes or manage certificates. You `federation init`, `federation join`, and your agents start talking. The protocol handles identity, the PII pipeline handles data safety, and the audit trail handles compliance.
|
|
141
|
+
|
|
142
|
+
<details>
|
|
143
|
+
<summary><strong>Federation capabilities</strong></summary>
|
|
144
|
+
|
|
145
|
+
| | Capability | How it works |
|
|
146
|
+
|---|---|---|
|
|
147
|
+
| 🔒 | **Zero-trust federation** | Remote agents start untrusted. Identity proven via mTLS + ed25519 challenge-response. No API keys, no shared secrets. |
|
|
148
|
+
| 🛡️ | **PII-gated data flow** | 14-type detection pipeline scans every outbound message. Per-trust-level policies: BLOCK, REDACT, HASH, or PASS. Adaptive calibration reduces false positives. |
|
|
149
|
+
| 📊 | **Behavioral trust scoring** | Formula (`0.4×success + 0.2×uptime + 0.2×threat + 0.2×integrity`) continuously evaluates peers. Upgrades require history; downgrades are instant. |
|
|
150
|
+
| 📋 | **Compliance built-in** | HIPAA, SOC2, GDPR audit trails as compliance modes. Every federation event produces a structured record searchable via HNSW. |
|
|
151
|
+
| 🤝 | **9 MCP tools + 10 CLI commands** | Full lifecycle: `federation_init`, `federation_send`, `federation_trust`, `federation_audit`, and more. |
|
|
152
|
+
|
|
153
|
+
</details>
|
|
154
|
+
|
|
155
|
+
<details>
|
|
156
|
+
<summary><strong>Example: two teams sharing fraud signals without sharing customer data</strong></summary>
|
|
157
|
+
|
|
158
|
+
```bash
|
|
159
|
+
# Team A: initialize federation and generate keypair
|
|
160
|
+
npx claude-flow@latest federation init
|
|
161
|
+
|
|
162
|
+
# Team A: join Team B's federation endpoint
|
|
163
|
+
npx claude-flow@latest federation join wss://team-b.example.com:8443
|
|
164
|
+
|
|
165
|
+
# Team A: send a task — PII is stripped automatically before it leaves
|
|
166
|
+
npx claude-flow@latest federation send --to team-b --type task-request \
|
|
167
|
+
--message "Analyze transaction patterns for account anomalies"
|
|
168
|
+
|
|
169
|
+
# Team A: check peer trust levels and session health
|
|
170
|
+
npx claude-flow@latest federation status
|
|
171
|
+
```
|
|
172
|
+
|
|
173
|
+
</details>
|
|
174
|
+
|
|
175
|
+
See [issue #1669](https://github.com/ruvnet/ruflo/issues/1669) for the complete architecture, trust model, and implementation roadmap.
|
|
176
|
+
|
|
177
|
+
```bash
|
|
178
|
+
# Claude Code plugin
|
|
179
|
+
/plugin install ruflo-federation@ruflo
|
|
180
|
+
|
|
181
|
+
# Or via CLI
|
|
182
|
+
npx claude-flow@latest plugins install @claude-flow/plugin-agent-federation
|
|
183
|
+
```
|
|
115
184
|
|
|
116
185
|
<details>
|
|
117
186
|
<summary><strong>Claude Code: With vs Without Ruflo</strong></summary>
|
|
@@ -197,10 +197,10 @@ export class PluginDiscoveryService {
|
|
|
197
197
|
totalPlugins: plugins.length,
|
|
198
198
|
totalDownloads: plugins.reduce((sum, p) => sum + p.downloads, 0),
|
|
199
199
|
totalAuthors: 1,
|
|
200
|
-
featured: ['@claude-flow/plugin-agentic-qe', '@claude-flow/plugin-prime-radiant', '@claude-flow/security', '@claude-flow/claims', '@claude-flow/teammate-plugin'],
|
|
201
|
-
trending: ['@claude-flow/plugin-agentic-qe', '@claude-flow/plugin-prime-radiant'],
|
|
202
|
-
newest: ['@claude-flow/plugin-agentic-qe', '@claude-flow/plugin-prime-radiant'],
|
|
203
|
-
official: ['@claude-flow/plugin-agentic-qe', '@claude-flow/plugin-prime-radiant', '@claude-flow/security', '@claude-flow/claims'],
|
|
200
|
+
featured: ['@claude-flow/plugin-agent-federation', '@claude-flow/plugin-agentic-qe', '@claude-flow/plugin-prime-radiant', '@claude-flow/security', '@claude-flow/claims', '@claude-flow/teammate-plugin'],
|
|
201
|
+
trending: ['@claude-flow/plugin-agent-federation', '@claude-flow/plugin-agentic-qe', '@claude-flow/plugin-prime-radiant'],
|
|
202
|
+
newest: ['@claude-flow/plugin-agent-federation', '@claude-flow/plugin-agentic-qe', '@claude-flow/plugin-prime-radiant'],
|
|
203
|
+
official: ['@claude-flow/plugin-agent-federation', '@claude-flow/plugin-agentic-qe', '@claude-flow/plugin-prime-radiant', '@claude-flow/security', '@claude-flow/claims'],
|
|
204
204
|
compatibilityMatrix: [
|
|
205
205
|
{ pluginId: '@claude-flow/neural', pluginVersion: '3.0.0', claudeFlowVersions: ['3.x'], tested: true },
|
|
206
206
|
{ pluginId: '@claude-flow/security', pluginVersion: '3.0.0', claudeFlowVersions: ['3.x'], tested: true },
|
|
@@ -855,35 +855,6 @@ export class PluginDiscoveryService {
|
|
|
855
855
|
verified: true,
|
|
856
856
|
trustLevel: 'official',
|
|
857
857
|
},
|
|
858
|
-
{
|
|
859
|
-
id: '@claude-flow/plugin-cognitive-kernel',
|
|
860
|
-
name: '@claude-flow/plugin-cognitive-kernel',
|
|
861
|
-
displayName: 'Cognitive Kernel',
|
|
862
|
-
description: 'Core cognitive processing engine with working memory, attention mechanisms, and meta-cognitive monitoring.',
|
|
863
|
-
version: '0.1.0',
|
|
864
|
-
cid: 'bafybeicognitivekernelplugin2024',
|
|
865
|
-
size: 295000,
|
|
866
|
-
checksum: 'sha256:cognitivekernel2024xyz',
|
|
867
|
-
author: officialAuthor,
|
|
868
|
-
license: 'MIT',
|
|
869
|
-
categories: ['ai-ml'],
|
|
870
|
-
tags: ['cognitive', 'kernel', 'attention', 'memory', 'meta-cognition'],
|
|
871
|
-
keywords: ['cognitive', 'kernel', 'attention'],
|
|
872
|
-
downloads: 0,
|
|
873
|
-
rating: 0,
|
|
874
|
-
ratingCount: 0,
|
|
875
|
-
lastUpdated: baseTime,
|
|
876
|
-
createdAt: '2026-01-20T00:00:00Z',
|
|
877
|
-
minClaudeFlowVersion: '3.0.0',
|
|
878
|
-
dependencies: [{ name: '@claude-flow/core', version: '^3.0.0' }],
|
|
879
|
-
type: 'core',
|
|
880
|
-
hooks: ['cognitive:process', 'cognitive:attend'],
|
|
881
|
-
commands: ['cognitive process', 'cognitive attend', 'cognitive monitor'],
|
|
882
|
-
permissions: ['memory'],
|
|
883
|
-
exports: ['CognitiveProcessor', 'AttentionMechanism', 'MetaCognitiveMonitor'],
|
|
884
|
-
verified: true,
|
|
885
|
-
trustLevel: 'official',
|
|
886
|
-
},
|
|
887
858
|
{
|
|
888
859
|
id: '@claude-flow/plugin-quantum-optimizer',
|
|
889
860
|
name: '@claude-flow/plugin-quantum-optimizer',
|
|
@@ -979,6 +950,43 @@ export class PluginDiscoveryService {
|
|
|
979
950
|
issues: [],
|
|
980
951
|
},
|
|
981
952
|
},
|
|
953
|
+
// Agent Federation - Cross-installation agent collaboration
|
|
954
|
+
{
|
|
955
|
+
id: '@claude-flow/plugin-agent-federation',
|
|
956
|
+
name: '@claude-flow/plugin-agent-federation',
|
|
957
|
+
displayName: 'Agent Federation',
|
|
958
|
+
description: 'Cross-installation agent federation with zero-trust security, PII-gated data flow, 5-tier trust model, and HIPAA/SOC2/GDPR compliance. The comms layer for multi-agent AI.',
|
|
959
|
+
version: '1.0.0-alpha.1',
|
|
960
|
+
cid: 'bafybeifederationplugin2026',
|
|
961
|
+
size: 520000,
|
|
962
|
+
checksum: 'sha256:agentfederation2026xyz',
|
|
963
|
+
author: officialAuthor,
|
|
964
|
+
license: 'MIT',
|
|
965
|
+
categories: ['security', 'agents', 'integrations'],
|
|
966
|
+
tags: ['federation', 'trust', 'pii', 'mtls', 'zero-trust', 'compliance', 'hipaa', 'soc2', 'gdpr'],
|
|
967
|
+
keywords: ['federation', 'trust', 'security'],
|
|
968
|
+
downloads: 0,
|
|
969
|
+
rating: 0,
|
|
970
|
+
ratingCount: 0,
|
|
971
|
+
lastUpdated: baseTime,
|
|
972
|
+
createdAt: '2026-04-29T00:00:00Z',
|
|
973
|
+
minClaudeFlowVersion: '3.0.0',
|
|
974
|
+
dependencies: [{ name: '@claude-flow/security', version: '^3.0.0' }],
|
|
975
|
+
type: 'integration',
|
|
976
|
+
hooks: ['pre-federation-send', 'post-federation-receive', 'federation-audit', 'federation-trust-change'],
|
|
977
|
+
commands: ['federation init', 'federation join', 'federation leave', 'federation peers', 'federation status', 'federation audit', 'federation trust', 'federation config'],
|
|
978
|
+
permissions: ['network', 'memory', 'hooks', 'agents'],
|
|
979
|
+
exports: ['AgentFederationPlugin', 'PIIPipelineService', 'TrustEvaluator', 'FederationCoordinator', 'AuditService'],
|
|
980
|
+
verified: true,
|
|
981
|
+
trustLevel: 'official',
|
|
982
|
+
securityAudit: {
|
|
983
|
+
auditor: 'claude-flow-security-team',
|
|
984
|
+
auditDate: '2026-04-29T00:00:00Z',
|
|
985
|
+
auditVersion: '1.0.0-alpha.1',
|
|
986
|
+
passed: true,
|
|
987
|
+
issues: [],
|
|
988
|
+
},
|
|
989
|
+
},
|
|
982
990
|
// Teammate Plugin - Claude Code v2.1.19+ integration
|
|
983
991
|
{
|
|
984
992
|
id: '@claude-flow/teammate-plugin',
|
|
@@ -1047,11 +1055,12 @@ export class PluginDiscoveryService {
|
|
|
1047
1055
|
'@claude-flow/plugin-perf-optimizer',
|
|
1048
1056
|
// Advanced AI/reasoning plugins
|
|
1049
1057
|
'@claude-flow/plugin-neural-coordination',
|
|
1050
|
-
'@claude-flow/plugin-cognitive-kernel',
|
|
1051
1058
|
'@claude-flow/plugin-quantum-optimizer',
|
|
1052
1059
|
'@claude-flow/plugin-hyperbolic-reasoning',
|
|
1053
1060
|
// Gas Town Bridge
|
|
1054
1061
|
'@claude-flow/plugin-gastown-bridge',
|
|
1062
|
+
// Agent Federation
|
|
1063
|
+
'@claude-flow/plugin-agent-federation',
|
|
1055
1064
|
];
|
|
1056
1065
|
// Fetch stats in parallel
|
|
1057
1066
|
const statsPromises = realNpmPackages.map(pkg => fetchNpmStats(pkg));
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@claude-flow/cli",
|
|
3
|
-
"version": "3.6.
|
|
3
|
+
"version": "3.6.10",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Ruflo CLI - Enterprise AI agent orchestration with 60+ specialized agents, swarm coordination, MCP server, self-learning hooks, and vector memory for Claude Code",
|
|
6
6
|
"main": "dist/src/index.js",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"sessionId":"ea43bca2-cc37-44fb-97ff-f1c914a31fb1","pid":12017,"procStart":"Tue Apr 28 01:25:58 2026","acquiredAt":1777350938971}
|