Adam Coddington75 downloadsGoogle Docs-style comments and suggested edits, kept in Sidemark (MRSF) .review.yaml sidecars so your Markdown stays clean.
Comments and edit suggestions for Obsidian notes, stored next to each note instead of inside it.
Select text and add a comment or suggest an edit. The passage is highlighted in the editor, and the discussion lives in a sidebar. Everything is saved to a sidecar file, Your Note.md.review.yaml, in the MRSF / Sidemark format. Your notes stay plain Markdown, and other tools see nothing unusual in them.
Most ways of commenting on Obsidian notes put the comments in the note: as hidden HTML, as CriticMarkup, or as a block at the end. Sidemark keeps them out of the note entirely, in a sidecar file that follows an open specification other tools already read and write. The same comments work with the Sidemark VS Code extension, the mrsf command-line tool, and the @mrsf/mcp server for AI assistants.
| Sidemark | Tandem Comments | Commentator (CriticMarkup) | Redline | SideNote | |
|---|---|---|---|---|---|
| Where comments live | .review.yaml sidecar |
Block at the end of the note | Inline in the note | .review.md sidecar |
Plugin data (data.json) |
| Note file untouched | ✅ | ⚠️ block appended | ❌ | ⚠️ adds ^block IDs |
✅ |
| Format shared with other tools | ✅ MRSF: VS Code, CLI, MCP | ⚠️ plain JSON | ✅ CriticMarkup | ⚠️ documented, Redline only | ❌ |
| Anchored to | Text range | Text range | Text range | Whole block | Text range |
| Follows edits | ✅ | ✅ | n/a | ✅ | ✅ |
| Replies | ✅ | ✅ | ✅ | ❌ | ? |
| Resolve / reopen | ✅ | ✅ | ? | ✅ | ⚠️ |
| Suggested edits | ✅ | ✅ | ✅ | ❌ | ❌ |
| Follows renames | ✅ | n/a | n/a | ✅ | ✅ |
Based on each project's documentation as of September 2026; "?" means it isn't documented. "n/a" means the comments are inside the note, so they move with the text anyway. Corrections are welcome.
[!NOTE] Sidemark is an unofficial fork of Leon Pawelzik's Tandem Comments, and would not have been possible without it. The difference is where comments are stored: Tandem keeps them in a block inside each note, and Sidemark uses MRSF sidecar files. If you're happy with comments stored inside your notes, use Tandem Comments.
selected_text and the current text in anchored_text.mrsf tool) are picked up live.document field; renaming a folder is handled too. Deleting a note moves its sidecar to the trash with it.[[wikilinks]] work and show hover previews.<Note> – Comments.md next to it. The export opens in a new tab; exporting again replaces the previous export.tandem-comments block into a sidecar.Sidemark is in the Obsidian community plugin directory: open Settings → Community plugins → Browse in Obsidian, search for Sidemark, then install and enable it.
To install it by hand instead, download main.js, manifest.json and styles.css from the latest release into <your vault>/.obsidian/plugins/sidemark/, then enable Sidemark under Settings → Community plugins.
If you use Obsidian Sync, turn on syncing of "other file types" so the .review.yaml files are synced.
… menu copies or deletes a comment.Sidecars follow MRSF v1.0. Sidemark adds a few extension fields, which MRSF tools keep intact:
| Field | Meaning |
|---|---|
x_prefix / x_suffix |
Up to 20 characters before and after the quote, used to tell identical quotes apart. Together with selected_text, these match the prefix, exact and suffix of a W3C TextQuoteSelector, the quote anchoring Tandem Comments uses. |
x_suggestion |
{ replacement, result? } on a root comment with type: suggestion. An empty replacement suggests deleting the passage. The root's text is the optional explanation; result is accepted or declined once decided. |
x_tandem_id |
The original ID of a comment converted from Tandem Comments. |
An example:
mrsf_version: "1.0"
document: Projects/Plan.md
comments:
- id: 0818f29c-400a-4124-8420-185d6fdc18fa
author: Adam
timestamp: 2026-09-16T08:53:51.151Z
text: Is this too cliché? See [[Style guide]]
resolved: false
line: 7
end_line: 7
start_column: 4
end_column: 15
selected_text: quick brown
anchored_text: QUICK brown
x_prefix: "The "
x_suffix: " fox jumps over the "
- id: 27f0f28c-0559-4c46-8951-5d2359b8bb6c
author: Claude
timestamp: 2026-09-16T08:54:12.000Z
text: Agreed, rewording.
resolved: false
reply_to: 0818f29c-400a-4124-8420-185d6fdc18fa
Where Sidemark deliberately differs from the spec:
resolved on each comment separately; the spec allows resolving them together.The plugin never rewrites a sidecar it can't fully parse. It shows the error in the sidebar and leaves the file alone. When it does write, unchanged parts keep their formatting and YAML comments.
Run MRSF tools from the vault root so document paths match:
npx @mrsf/cli list "Projects/Plan.md"
npx @mrsf/cli add "Projects/Plan.md" -a "Claude" -t "Consider a table here" -l 12 --selected-text "the three options"
npx @mrsf/cli reanchor "Projects/Plan.md"
Anything these tools write shows up in Obsidian immediately.
For Claude Code, open Settings → Sidemark → Claude Code and use Install skill. It writes a ready-made skill to ~/.claude/skills/sidemark-comments/SKILL.md that teaches Claude the sidecar format and this plugin's conventions — anchoring, threads, suggestions, and what to leave alone. Desktop only, since the skill is written outside the vault, and it replaces whatever is already at that path.
mrsf validate for strict checks.sidecar_root setting isn't supported yet.npm install
npm run build # type-check and bundle to main.js
npm run dev # rebuild on change
npm test # vitest
@mrsf/cli) come from MRSF by Wictor Wilén (MIT).