site-auditor — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited site-auditor (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.
Comprehensive website audit for SEO, broken links, and accessibility.
CF Browser MCP server must be configured in .mcp.json (see quick start).
browser_crawl(url, limit=50)
→ browser_crawl_status(job_id, wait=True)
→ Get list of all discovered pagesThe crawl results already include per-page metadata with title, OG tags, and HTTP status. Parse these first — this covers 80% of SEO checks with zero extra API calls:
metadata.title → check for missing/duplicate titlesmetadata.og:title, og:description, og:image → check OG completenessmetadata.status → identify 4xx/5xx error pagesmetadata.url → detect redirect chains (final URL != original)For pages where crawl metadata is insufficient, use browser_scrape to extract:
h1, h2, h3 headings (hierarchy check)img tags (check alt attributes)link[rel="canonical"] canonical URLmeta[name="robots"] directivesmeta[name="description"] (if not in crawl metadata)Batch scrape in groups of 5 to respect rate limits.
Using browser_links on 3-5 key pages (homepage, major sections):
Output a markdown report with sections:
#### SEO Issues
<title> tags#### Link Health
#### Accessibility
#### Structure
Each issue includes:
Markdown report saved to audit-report-{domain}-{date}.md in the current directory.
"Audit my website for SEO issues"
→ Crawl + analyze + generate full report
"Check for broken links on docs.example.com"
→ Crawl + link check only
"Review OpenGraph tags across the site"
→ Crawl + extract OG tags + report missing ones~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.