/** * MCP resources for the recipe kinds that have non-trivial runtime * behavior (currently: workflow + webhook-authorization). Agents call * `resources/read` to fetch these when composing or troubleshooting a * recipe. * * Hand-authored summaries — kept in sync with `docs/recipes/workflow.md` * which is the source of truth for repo readers. Why duplicate: the * `docs/` tree isn't shipped in the npm package, so reading it from * disk at fetch time doesn't work in production installs. */ import type { McpRegistry } from "../registry.js"; export declare const registerRecipeResources: (registry: McpRegistry) => void;