mcp-ai-agent-guidelines
Version:
A comprehensive Model Context Protocol server providing advanced tools, resources, and prompts for implementing AI agent best practices
18 lines • 606 B
TypeScript
/**
* Default agent definitions - barrel export and registration
*
* @module agents/definitions
*/
/**
* Array of all default agent definitions to be registered.
*/
export declare const defaultAgents: import("../types.js").AgentDefinition[];
/**
* Registers all default agents with the agent registry.
* Should be called during server startup.
*/
export declare function registerDefaultAgents(): void;
export { codeScorerAgent } from "./code-scorer-agent.js";
export { designAgent } from "./design-agent.js";
export { securityAgent } from "./security-agent.js";
//# sourceMappingURL=index.d.ts.map