UNPKG

mcp-ai-agent-guidelines

Version:

A comprehensive Model Context Protocol server providing advanced tools, resources, and prompts for implementing AI agent best practices

14 lines 573 B
/** * Agent orchestration module - barrel export * * @module agents */ // Export execution graph and singleton export { ExecutionGraph, executionGraph, } from "./execution-graph.js"; // Export orchestrator and singleton export { AgentOrchestrator, agentOrchestrator, } from "./orchestrator.js"; // Export registry and singleton export { AgentRegistry, agentRegistry } from "./registry.js"; // Export workflows export { codeReviewChainWorkflow, designToSpecWorkflow, getWorkflow, listWorkflows, workflows, } from "./workflows/index.js"; //# sourceMappingURL=index.js.map