site-capture-audit — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited site-capture-audit (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.
Captures a website to local files, then turns that capture into a prioritized, 90-day quick-win audit. The capture step saves raw HTML, a cleaned text/markdown version of each page, and the site's sitemap.xml + robots.txt. The audit step grades the site against a P0/P1/P2 rubric covering technical SEO (indexability, canonicals, redirects), on-page (titles, meta, headings, schema, internal links), content depth, Core Web Vitals, and conversion — and emits a ranked fix list with effort/impact.
python scripts/capture.py https://example.com --max 25 --out ./capture It fetches the homepage, discovers more URLs via sitemap.xml / robots.txt, saves raw HTML to <out>/raw-html/, cleaned markdown to <out>/clean-md/, and <out>/sitemaps/ (sitemaps + robots.txt). See the script --help.
<out>/clean-md/ and skim the raw HTML <head>blocks for titles, meta, canonical, robots directives, and JSON-LD.
references/audit-checklist.mdin priority order — P0 indexability first, then P1 on-page, then P2 depth + CWV + conversion. Record evidence (the actual title, the missing canonical, the redirect chain) for each finding.
effort (S/M/L), and the concrete fix.
executive summary and a 90-day sequencing (do P0 in weeks 1–2, etc.).
schema-org-sprint skill;for content gaps, hand off to a content-brief skill.
--max) and output dir (--out).audit works from the capture alone, but real query/traffic data sharpens it).
raw-html/, clean-md/, sitemaps/.P0/P1/P2 findings with evidence + fix + effort/impact, and a week-by-week plan.
urllib) plusoptional BeautifulSoup; if BeautifulSoup is absent it falls back to a regex tag-strip, so it runs on a stock Python 3. It sets a descriptive User-Agent and adds a small delay between requests to be polite.
robots.txt,rate limits, and the site owner's terms; capture sites you're authorized to.
Core Web Vitals field data or full crawl tooling — call those out where they'd change a conclusion.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.