@agentdesk/workflows-mcp
Version:
MCP workflow orchestration tool with presets for thinking, coding and more
9 lines (8 loc) • 435 B
TypeScript
import { DevToolsConfig } from "./config.js";
declare const promptFunctions: Record<string, (config?: DevToolsConfig) => string>;
/**
* Initializes prompt functions by processing all discovered preset configurations
* @returns Record of prompt functions indexed by mode name
*/
declare function initializePromptFunctions(): Record<string, (config?: DevToolsConfig) => string>;
export { promptFunctions, initializePromptFunctions };