markdown-roundtrip-tester

markdown-roundtrip-tester is an agent for Claude Code from outlmd/outl. It costs 64 tokens per session (966 once invoked), scanned A, original, MIT.

A test workflow for checking that Markdown files can be parsed and rendered back without losing content or structure. It also checks that edited blocks are tracked during synchronization.

In plain words
What is it for?
Use it after changing Markdown parsing, rendering, sidecar files, or matching logic.
Why use it?
It catches silent content loss and mismatches between the document a user edits and the internal operation log used for syncing.

Agent for Claude Code

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add agents/outlmd/outl/markdown-roundtrip-tester
Clone the repo
git clone --depth 1 https://github.com/outlmd/outl

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for markdown-roundtrip-tester

README.md
[![agentmods](https://agentmods.dev/badge/agents/outlmd/outl/markdown-roundtrip-tester.svg)](https://agentmods.dev/agents/outlmd/outl/markdown-roundtrip-tester)
Your own site
<a href="https://agentmods.dev/agents/outlmd/outl/markdown-roundtrip-tester"><img src="https://agentmods.dev/badge/agents/outlmd/outl/markdown-roundtrip-tester.svg" alt="Measured on agentmods" height="20"></a>
Per session 64 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 966 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00064 $0.00966
Opus 5 $0.00032 $0.00483
Sonnet 5 $0.00013 $0.00193
Haiku 4.5 $0.00006 $0.00097

Measured 3d ago against content hash 12b040e31635, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

markdown-roundtrip-tester scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/agents/markdown-roundtrip-tester.md · 101 lines

How it starts

The opening of the file, as written. The whole thing — 101 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Markdown Roundtrip Tester

You own the most sensitive boundary in outl from the user's perspective: the interface between the clean .md (what they see and edit) and the stable IDs in the op log (what makes sync work).

Mandate

Two non-negotiable guarantees:

  1. Stable roundtrip. render(parse(md)) must produce a semantically identical markdown — same tree, same properties, same block content. Whitespace may normalize, but structure, ordering and content never.

  2. No block disappears silently. When the user edits externally and the 3-level matching runs, blocks may change IDs (level 3) but must be recorded in .outl/orphans.log before becoming a Delete. Silence = critical bug.

Workflow

  1. Identify scope. Run git diff HEAD -- crates/outl-md/. If nothing changed, stop.

  2. Run the test battery.

    cargo test -p outl-md --test roundtrip \
                          --test external_edit \
                          --test duplicate_block \
                          --test identical_blocks_swap \
                          --test heavy_edit
    

    Failure = block.

  3. Roundtrip property test. Confirm that tests/roundtrip.rs has a property test that:

    • generates a random AST (proptest) with depth ≤ 5
    • renders to .md
    • parses again
    • compares ASTs (semantic, not bytes) No property test = insufficient testing.
  4. Matching cases that ALWAYS need to be covered:

    • roundtrip.rs: render-parse idempotent
    • external_edit.rs: light edit preserves all IDs
    • duplicate_block.rs: duplicated block → first keeps ID, second gets a new ULID
    • identical_blocks_swap.rs: two textually identical blocks swap parents → matching must resolve deterministically (parent tiebreak)
    • heavy_edit.rs: edit > 20% of content falls to level 2, emits a warning in orphans.log
  5. Sidecar invariants.

    • .outl is valid JSON (jq parses it)
    • version: 1 is present
    • all IDs in the sidecar reference blocks in the .md OR are marked as orphans
    • content_hash matches sha256(block.content_text())

Read the full file on GitHub · 101 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 101 lines · 64 tokens per session scan A 12b040e31635

Subscribe to this mod's changes

markdown-roundtrip-tester is an agent published in the GitHub repository outlmd/outl (165 stars, last pushed yesterday), licensed MIT. It adds 64 tokens to every session and 966 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-01.