open-markdown — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited open-markdown (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
After writing a markdown document that's meant to be read as a standalone document, offer to open it in mdreader so the user can read it comfortably in a rendered view.
This skill applies to markdown files that are substantive, standalone documents someone would want to sit down and read. Think:
This skill does NOT apply to:
The distinction is simple: if you just wrote something the user will want to read through, offer to open it. If it's a quick edit they already know about, don't.
Before offering to open anything, verify mdreader is installed:
which mdreaderIf mdreader is not found, install it:
brew install rvanbaalen/tap/mdreaderIf brew is not available or the install fails, tell the user mdreader couldn't be installed and provide the GitHub link: https://github.com/rvanbaalen/mdreader
After writing or creating a qualifying markdown document, use AskUserQuestion to ask:
Question: "I've written <filename> — would you like to open it in mdreader?"
Options:
Keep it lightweight. One question, two options. Don't over-explain what mdreader is.
If the user says yes, run:
mdreader <absolute-path-to-file>mdreader runs as a background process (it opens in the user's default browser), so this won't block the session. After opening, continue with whatever comes next — don't wait for confirmation that it opened.
If you write several qualifying documents in quick succession (e.g., a plan and a spec), batch them into a single question rather than asking repeatedly:
Question: "I've written these documents — want to open any in mdreader?"
Options:
If the user explicitly asks to "open", "view", or "preview" a markdown file, skip the question and open it directly with mdreader. They already told you what they want.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.