claude-flow
Version:
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
117 lines (113 loc) • 3.24 kB
text/typescript
export { AgentFederationPlugin } from './plugin.js';
export { FederationNode, type FederationNodeProps, type FederationNodeCapabilities, type FederationNodeMetadata, type FederationNodeStateRecord } from './domain/entities/federation-node.js';
export {
FederationNodeState,
type SuspensionReason,
type TransitionReason,
canTransition,
isCooldownElapsed,
shouldAutoEvict,
DEFAULT_SUSPENSION_COOLDOWN_MS,
DEFAULT_AUTO_EVICTION_AGE_MS,
} from './domain/value-objects/federation-node-state.js';
export {
FederationBreakerService,
evaluatePolicy,
DEFAULT_BREAKER_POLICY,
DEFAULT_MAX_SAMPLES_PER_PEER,
type BreakerPolicy,
type BreakerDecision,
type SendOutcome,
} from './application/federation-breaker-service.js';
export {
InMemorySpendReporter,
MemorySpendReporter,
DEFAULT_FEDERATION_SPEND_NAMESPACE,
DEFAULT_FEDERATION_SPEND_TTL_SECONDS,
type SpendReporter,
type MemoryStore,
type MemorySpendReporterConfig,
type FederationSpendEvent,
} from './application/spend-reporter.js';
export { FederationSession, type FederationSessionProps, type SessionMetrics } from './domain/entities/federation-session.js';
export {
FederationEnvelope,
type FederationEnvelopeProps,
type FederationMessageType,
type PIIScanResult,
type PIIScanDetection,
type PIIScanAction,
CONSENSUS_REQUIRED_TYPES,
} from './domain/entities/federation-envelope.js';
export {
TrustLevel,
TRUST_TRANSITION_THRESHOLDS,
CAPABILITY_GATES,
isOperationAllowed,
getTrustLevelLabel,
type TrustTransitionThreshold,
} from './domain/entities/trust-level.js';
export {
PIIPipelineService,
type PIIType,
type PIIAction,
type PIIDetection,
type PIIPolicyConfig,
type PIICalibration,
type PIITransformResult,
type PIIConfidenceThresholds,
type PIIPipelineServiceDeps,
} from './domain/services/pii-pipeline-service.js';
export {
DiscoveryService,
type DiscoveryMechanism,
type FederationManifest,
type DiscoveryServiceDeps,
type DiscoveryConfig,
} from './domain/services/discovery-service.js';
export {
HandshakeService,
type HandshakeChallenge,
type HandshakeChallengeResponse,
type HandshakeResult,
type HandshakeServiceDeps,
type HandshakeConfig,
} from './domain/services/handshake-service.js';
export {
RoutingService,
type RoutingMode,
type RoutingResult,
type ConsensusProposal,
type RoutingServiceDeps,
} from './domain/services/routing-service.js';
export {
AuditService,
type FederationAuditEvent,
type FederationAuditEventType,
type AuditSeverity,
type AuditCategory,
type ComplianceMode,
type AuditQuery,
type AuditExportFormat,
type AuditServiceDeps,
type AuditServiceConfig,
} from './domain/services/audit-service.js';
export {
TrustEvaluator,
type TrustScoreComponents,
type TrustTransitionResult,
type ImmediateDowngradeReason,
type TrustEvaluatorDeps,
} from './application/trust-evaluator.js';
export {
FederationCoordinator,
type FederationCoordinatorConfig,
type FederationStatus,
} from './application/federation-coordinator.js';
export {
PolicyEngine,
type FederationClaimType,
type SecurityPolicy,
type PolicyEvaluationResult,
type PolicyEngineDeps,
} from './application/policy-engine.js';