web-quality-audit

Audit HTML projects for performance, accessibility, SEO, and best-practice issues.

Updated Aug 13, 2026
One-click install
npx skills add https://github.com/Martino17x/Sentinel-Invest --skill web-quality-audit-martino17x
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: web-quality-audit
Source: https://github.com/Martino17x/Sentinel-Invest/tree/main/.agents/skills/web-quality-audit
Command: npx skills add https://github.com/Martino17x/Sentinel-Invest --skill web-quality-audit-martino17x

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve? Web projects often ship with hidden quality problems—slow Core Web Vitals, accessibility barriers, missing meta tags, and insecure configurations—that hurt rankings and user experience. This Skill systematically reviews code against 150+ Lighthouse-based checks and produces prioritized, actionable findings. ## Core Features & Use Cases - Four-Category Audit: Covers Performance (Core Web Vitals, resource optimization), Accessibility (WCAG perceivable/operable/understandable/robust), SEO (crawlability, on-page, technical), and Best Practices (security, modern standards). - Severity-Ranked Output: Classifies findings as Critical, High, Medium, or Low with file locations, impact explanations, and specific code fixes. - Automated HTML Scanning: Includes a shell script that checks HTML files for missing doctype, charset, viewport, lang attributes, alt text, title tags, and non-HTTPS URLs, outputting results as JSON. - Use Case: Before launching a marketing site, run the audit to catch a missing viewport meta tag, unoptimized LCP images, and absent alt text, then fix them in priority order. ## Quick Start Ask the assistant to audit your website's HTML files for performance, accessibility, SEO, and best-practice issues and return a prioritized list of fixes.

Frequently Asked Questions about web-quality-audit

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I audit my website for performance and accessibility issues?▼

Run a web quality audit that checks your HTML against Lighthouse-based criteria covering Core Web Vitals, WCAG accessibility rules, SEO tags, and security best practices. Findings are grouped by severity with specific code fixes for each issue.

What does the web quality audit check in HTML files?▼

The included script checks for missing HTML5 doctype, UTF-8 charset declaration, viewport meta tag, lang attribute on the html element, images without alt text, missing title tags, and non-HTTPS URLs. Results are output as JSON with issue and warning counts.

What are Core Web Vitals thresholds for a passing audit?▼

Core Web Vitals require LCP (Largest Contentful Paint) under 2.5 seconds, INP (Interaction to Next Paint) under 200 milliseconds, and CLS (Cumulative Layout Shift) under 0.1. Failing any of these is classified as a High severity issue to fix before launch.

Can the audit script scan an entire directory of HTML files?▼

Yes, the analyze.sh script accepts either a single file or a directory path. When given a directory, it recursively finds all .html and .htm files and analyzes each one for common quality issues.

What are the limitations of the automated HTML quality checks?▼

The shell script performs static grep-based checks, so it cannot measure actual runtime metrics like LCP or INP, detect color contrast failures, or execute JavaScript. Full audits require manual review against the documented checklist or real Lighthouse runs.