/** * Content Audit Prompt * * A workflow prompt that guides Claude through a site content audit: * 1. Start a site audit * 2. Analyze the results * 3. Prioritize improvements */ import type { McpPromptDefinition } from "../types.js"; export declare const contentAuditPrompt: McpPromptDefinition; export declare function getContentAuditMessages(args: Record): Array<{ role: "user" | "assistant"; content: { type: "text"; text: string; }; }>; //# sourceMappingURL=content-audit.d.ts.map