import type { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; /** * resolve-pr-comments — Review Response Workflow * * Guides the LLM through addressing all active comment threads on a PR: * 1. Fetch PR details + all threads * 2. For each active/pending thread, classify the comment * 3. Take the right action: * - Code change request → edit file, commit, reply "Fixed", mark as "fixed" * - Explanation request → reply with reasoning, mark as "by design" or "won't fix" * - Question/clarification → reply with answer * - Nitpick/style → fix it or explain, resolve * 4. Push all changes at once * 5. Summarize what was done */ export declare function registerResolvePrCommentsPrompt(server: McpServer): void; //# sourceMappingURL=resolve-pr-comments.d.ts.map