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

31 lines 731 B
/** * V3 MCP Agent Tools * * MCP tools for agent lifecycle operations: * - agent/spawn - Spawn a new agent * - agent/list - List all agents * - agent/terminate - Terminate an agent * - agent/status - Get agent status * * Implements ADR-005: MCP-First API Design */ import { MCPTool } from '../types.js'; /** * agent/spawn tool */ export declare const spawnAgentTool: MCPTool; /** * agent/list tool */ export declare const listAgentsTool: MCPTool; /** * agent/terminate tool */ export declare const terminateAgentTool: MCPTool; /** * agent/status tool */ export declare const agentStatusTool: MCPTool; export declare const agentTools: MCPTool[]; export default agentTools; //# sourceMappingURL=agent-tools.d.ts.map