mcp-ai-agent-guidelines
Version:
A comprehensive Model Context Protocol server providing professional tools, resources, and prompts for implementing AI agent best practices
13 lines • 704 B
TypeScript
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<{
content: {
type: "text";
text: string;
}[];
}>;
//# sourceMappingURL=prompting-hierarchy-evaluator.d.ts.map