mcp-ai-agent-guidelines
Version:
A comprehensive Model Context Protocol server providing professional tools, resources, and prompts for implementing AI agent best practices
21 lines • 726 B
TypeScript
import { z } from "zod";
declare const AgentModeSchema: z.ZodEnum<["planning", "editing", "analysis", "interactive", "one-shot", "debugging", "refactoring", "documentation"]>;
type AgentMode = z.infer<typeof AgentModeSchema>;
interface ModeProfile {
name: string;
description: string;
focus: string[];
enabledTools: string[];
disabledTools: string[];
promptingStrategy: string;
bestFor: string[];
}
declare const MODE_PROFILES: Record<AgentMode, ModeProfile>;
export declare function modeSwitcher(args: unknown): Promise<{
content: {
type: string;
text: string;
}[];
}>;
export { MODE_PROFILES, type AgentMode, type ModeProfile };
//# sourceMappingURL=mode-switcher.d.ts.map