seo-headings-structure — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited seo-headings-structure (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.
A clean, single-rooted heading tree and proper semantic landmarks make a page's outline machine-readable — the same structure that AI engines use to extract answer blocks and that search engines use to understand content scope. Schema/entity context: references/schema-tier1.md.
Working from the PageSnapshot (rendered_dom if present, else raw_html):
<h1> per page. Zero H1s, or multiple H1s, are both findings.<h2> may be followed by <h3>, not directly by <h4>). Build the outline and flag any jump.<main>, <article>, <section>, <nav>, <header>, <footer>; flag when headings live inside non-semantic <div> soup or when more than one <main> exists.Good heading structure feeds AI answer-block extraction: clear H2/H3 boundaries map to candidate quotable passages.
fix_preview diff, never an auto-write.<title>/og:title or the obvious page-title element (fixable: proposed, per-item accept — adding a visible heading is editorial). Never fabricate H1 text from thin content; ask the user if the source is ambiguous.<main>/<article> adoption is advisory (structural refactor the tool does not write).Mark each finding's fixable field consistent with schema/finding.schema.json (auto / proposed / advisory). Never fabricate a heading's text or invent an H1 from thin content — ask the user or leave a clearly-marked TODO placeholder.
dom_assert. Re-parse the snapshot, rebuild the outline, and assert the specific condition (one H1, no level skip, landmark present).node ${CLAUDE_SKILL_DIR}/../../scripts/parse-html.mjs --url <u> (or --file <path>) — returns the headings block (counts per level, h1_count, and skipped_levels), which counts H1s and walks the H1-H6 tree for skipped levels.raw_html is present), status is needs_api, never a false pass.Emit findings per schema/finding.schema.json. Examples:
M7c.h1.multiple — more than one <h1> on the page (status fail, severity 3, fixable: proposed, axis search, confidence established). evidence.observed quotes each H1's text and selector; verification.reproduce is the parse-html.mjs command above (inspect h1_count).M7c.outline.skipped_level — an <h2> followed directly by an <h4> (status fail, severity 3, fixable: proposed, axis search, confidence directional). evidence.observed quotes the two adjacent headings and their levels.M7c.landmark.no_main — no <main> element; primary content sits in <div>s (status warn, severity 3, fixable: advisory, axis search, confidence directional).Each finding carries evidence.observed quoting the page verbatim and a runnable verification.reproduce; expected_impact is banded + confidence-tagged (no naked percentages).
directional, not a critical failure. Skipped heading levels are primarily an accessibility/structure concern — frame impact honestly (directional) rather than promising a ranking lift.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.