/** * MCP Prompts — slash-command-style templates surfaced by compatible * clients. Each prompt returns a single user-role message that * instructs the agent how to chain the registered tools to accomplish * a higher-level workflow. * * The prompts are intentionally instruction text, not tool routing — * the agent reads the message and dispatches the tools itself. This * keeps the prompt layer transport-agnostic and easy to update without * code changes elsewhere. */ import type { McpRegistry } from "../registry.js"; export declare const registerWorkflowPrompts: (registry: McpRegistry) => void;