UNPKG

mcp-ai-agent-guidelines

Version:

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

8 lines 681 B
import { z } from "zod"; import { type HierarchyLevelDefinition, type NumericEvaluation, type PromptingHierarchyLevelType } from "./types/index.js"; export declare const PromptingHierarchyLevel: z.ZodEnum<["independent", "indirect", "direct", "modeling", "scaffolding", "full-physical"]>; export type PromptingHierarchyLevel = PromptingHierarchyLevelType; export type { NumericEvaluation, HierarchyLevelDefinition }; export declare const HIERARCHY_LEVEL_DEFINITIONS: HierarchyLevelDefinition[]; export declare function promptingHierarchyEvaluator(args: unknown): Promise<import("../shared/error-handler.js").McpResponse>; //# sourceMappingURL=prompting-hierarchy-evaluator.d.ts.map