mcp-ai-agent-guidelines
Version:
A comprehensive Model Context Protocol server providing advanced tools, resources, and prompts for implementing AI agent best practices
11 lines • 659 B
TypeScript
/**
* Agent orchestration module - barrel export
*
* @module agents
*/
export { ExecutionGraph, type ExecutionGraphOptions, executionGraph, type HandoffRecord, } from "./execution-graph.js";
export { AgentOrchestrator, agentOrchestrator, type StepResult, type Workflow, type WorkflowResult, type WorkflowStep, } from "./orchestrator.js";
export { AgentRegistry, agentRegistry } from "./registry.js";
export type { AgentDefinition, AgentInfo, HandoffRequest, HandoffResult, } from "./types.js";
export { codeReviewChainWorkflow, designToSpecWorkflow, getWorkflow, listWorkflows, workflows, } from "./workflows/index.js";
//# sourceMappingURL=index.d.ts.map