UNPKG

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

23 lines 612 B
/** * V3 Plugin Interface * Domain-Driven Design - Plugin-Based Architecture (ADR-004) * * Microkernel pattern for extensible Claude-Flow V3 * Enables modular extension points for agents, tasks, MCP tools, CLI commands, and memory backends */ /** * Plugin error types */ export class PluginError extends Error { pluginName; code; cause; constructor(message, pluginName, code, cause) { super(message); this.pluginName = pluginName; this.code = code; this.cause = cause; this.name = 'PluginError'; } } //# sourceMappingURL=plugin-interface.js.map