Back to Ruflo

ruflo-federation

plugins/ruflo-federation/README.md

3.6.304.9 KB
Original Source

ruflo-federation

The comms layer for multi-agent AI. Cross-installation agent federation with zero-trust security, PII-gated data flow, and compliance-grade audit trails.

Install

/plugin marketplace add ruvnet/ruflo
/plugin install ruflo-federation@ruflo

What's Included

  • Zero-Trust Federation: Agents discover peers and prove identity via mTLS + ed25519 before any data moves
  • PII Pipeline: 14-type detection with per-trust-level policies (BLOCK/REDACT/HASH/PASS) and adaptive confidence calibration
  • 5-Tier Trust Model: UNTRUSTED → VERIFIED → ATTESTED → TRUSTED → PRIVILEGED with behavioral scoring
  • Compliance Modes: HIPAA, SOC2, GDPR audit trails as first-class primitives
  • Secure Messaging: HMAC-signed envelopes with dual AI Defence gates (outbound + inbound)
  • Byzantine Consensus: BFT for state mutations across untrusted federation peers
  • Budget Circuit Breaker (ADR-097): per-call maxHops (default 8), optional maxTokens / maxUsd caps, and constant-string HOP_LIMIT_EXCEEDED / BUDGET_EXCEEDED errors that defang recursive delegation loops and runaway cost cascades

Budget & Circuit Breaker

/federation send accepts optional cumulative-spend caps so a single delegation cannot spawn an unbounded fan-out:

bash
/federation send <node-id> task-assignment '{"task":"…"}' \
  --max-hops 4 \
  --max-tokens 50000 \
  --max-usd 0.25
FieldDefault when omittedNotes
maxHops80 disallows remote delegation entirely. Hard ceiling 64.
maxTokensunboundedΣ tokens across the whole hop chain. Hard ceiling 1B.
maxUsdunboundedΣ USD across hops. Hard ceiling $1M.
hopCount0Pass-through for messages being re-forwarded.
spent.{tokens,usd}0Caller-reported usage from previous legs. Negatives clamped to 0.

Validation rejects NaN, ±Infinity, negative numbers, and non-integer hop counts up front. Errors surface as constant strings with no remaining-budget echo, so a malicious caller cannot use response codes as an oracle to probe configured thresholds.

Phase 1 enforces at the send side. Phase 2 (peer state machine: ACTIVE / SUSPENDED / EVICTED) and Phase 3 (ruflo-cost-tracker integration for unified spend reporting) ship in follow-up releases.

Commands

CommandDescription
/federation-initGenerate keypair and initialize federation on this node
/federation-statusShow peers, sessions, trust levels, and health
/federation-auditQuery structured audit logs with compliance filtering

Agents

AgentDescription
federation-coordinatorOrchestrates discovery, handshake, trust evaluation, and secure message routing

Requires

  • ruflo-core plugin (provides MCP server)
  • @claude-flow/security (cryptographic primitives)

Compatibility

  • CLI: pinned to @claude-flow/cli v3.6 major+minor.
  • Federation runtime: @claude-flow/plugin-agent-federation (resolved via npx -y -p).
  • Verification: bash plugins/ruflo-federation/scripts/smoke.sh is the contract.

Alignment with the canonical 3-gate pattern

Federation's "PII Pipeline" feature is a richer specialization of the canonical 3-gate pattern owned by ruflo-aidefence ADR-0001. The mapping:

Canonical gateFederation specialization
Pre-storage PII (aidefence_has_pii)14-type PII detection with per-trust-level policies (BLOCK / REDACT / HASH / PASS)
Sanitization (aidefence_scan)Outbound HMAC-signed envelope + dual AI Defence gates
Prompt-injection (aidefence_is_safe)Inbound message verification before delivery to local agents

Federation extends the canonical gates with adaptive confidence calibration and trust-level-aware policies, but the gate ordering and intent are identical. New federated content paths should reference the canonical 3-gate pattern by name.

Namespace coordination

This plugin owns the federation AgentDB namespace. This is the documented exception to the kebab-case <plugin-stem>-<intent> rule: when a plugin's name is the intent, the namespace can match the plugin stem. See ruflo-agentdb ADR-0001 §"Namespace convention". Reserved namespaces (pattern, claude-memories, default) MUST NOT be shadowed.

federation is accessed via memory_* tools (namespace-routed). Used for: peer registry, trust score history, audit log indices, message envelope receipts.

Verification

bash
bash plugins/ruflo-federation/scripts/smoke.sh
# Expected: "10 passed, 0 failed"

Architecture Decisions