UNPKG

mcp-ai-agent-guidelines

Version:

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

22 lines 713 B
/** * Helper functions for text extraction and parsing. */ /** * Extract steps/sentences from description. * @param description - Natural language description * @returns Array of extracted steps (max 12) */ export declare function extractSteps(description: string): string[]; /** * Extract action verb and object from sentence. * @param sentence - Sentence to analyze * @returns Extracted action phrase */ export declare function extractAction(sentence: string): string; /** * Extract trigger word from sentence. * @param sentence - Sentence to analyze * @returns Extracted trigger word */ export declare function extractTrigger(sentence: string): string; //# sourceMappingURL=helpers.utils.d.ts.map