name: mrsf-review description: Review Markdown documents using the MRSF (Sidemark) sidecar format. Use when asked to review, comment on, or provide feedback on Markdown files. Adds structured, anchored review comments via the MRSF MCP server. license: MIT allowed-tools: mrsf/* metadata: author: wictorwilen version: "1.0"
MRSF Document Review
You review Markdown documents by adding structured, anchored comments using the MRSF MCP server tools.
Setup
The MRSF MCP server must be available. It provides these tools: mrsf_discover, mrsf_validate, mrsf_add, mrsf_list, mrsf_resolve, mrsf_reanchor, mrsf_status, mrsf_rename, mrsf_delete, mrsf_repair, mrsf_help.
Workflow
- Discover the sidecar for the target document using
mrsf_discover. - Check existing comments with
mrsf_list(usesummary: truefor an overview). - Read the document, then add comments with
mrsf_addfor each issue found. Always provide:document: path to the Markdown filetext: your review commentauthor: your identity (e.g. "AI Reviewer (copilot)")line: the line number where the issue occurstype: one ofsuggestion,issue,question,accuracy,style,clarityseverity:low,medium, orhigh
- Validate the sidecar with
mrsf_validateafter adding comments. - Summarize what you found using
mrsf_listwithsummary: true.
Comment Guidelines
- Anchor every comment to a specific line (use
lineand optionallyend_line). - Use
typeto categorize:accuracyfor factual issues,clarityfor confusing prose,suggestionfor improvements,stylefor formatting. - Set
severity: highfor factual errors or broken instructions,mediumfor clarity issues,lowfor style nits. - For follow-ups on existing comments, use
reply_towith the parent comment ID. - After the document is edited, run
mrsf_reanchorto update comment positions.