UNPKG

superaugment

Version:

Enterprise-grade MCP server with world-class C++ analysis, robust error handling, and production-ready architecture for VS Code Augment

35 lines 934 B
import type { Prompt } from '@modelcontextprotocol/sdk/types.js'; import { ConfigManager } from '../config/ConfigManager.js'; /** * Manages prompts for SuperAugment MCP server */ export declare class PromptManager { private configManager; private prompts; constructor(configManager: ConfigManager); /** * Initialize the prompt manager */ initialize(): Promise<void>; /** * List all available prompts */ listPrompts(): Promise<Prompt[]>; /** * Get a specific prompt */ getPrompt(name: string, args: Record<string, any>): Promise<any>; /** * Register development-related prompts */ private registerDevelopmentPrompts; /** * Register analysis-related prompts */ private registerAnalysisPrompts; /** * Register persona-specific prompts */ private registerPersonaPrompts; } //# sourceMappingURL=PromptManager.d.ts.map