Abdulkader Safi11 downloadsRun website audits (SEO, content, links, images, security, crawlability and more) and save each one as a Markdown note.
An Obsidian plugin that runs website audits from inside your vault and saves each one as a Markdown note. It wraps the Safi-Studio-Scanner engine, which scores a site across SEO, content, links, images, structured data, security, crawlability and more.

To add Core Web Vitals and accessibility checks, paste a Google PageSpeed Insights API key in settings. Local-browser auditing (Playwright) is not supported inside Obsidian; PSI is the enrichment path.
The scanner calls fetch directly with manual redirects, which Obsidian's renderer blocks
under CORS. During an audit the plugin swaps globalThis.fetch for a shim backed by
Obsidian's requestUrl(), which bypasses CORS, then restores it. One known trade-off:
redirects are auto-followed, so the redirect-chain rule reports 0.
npm install # pulls the scanner SDK (pinned git dependency)
npm run build # esbuild -> main.js
npm run dev # watch build for the bundle
npm test # report-file round-trip self-check
Styling lives in styles.css (hand-written, scoped under .safi-site-audit, built on
Obsidian's own theme variables). It is not generated, so edits to it only need a plugin
reload, not a rebuild.