run-lighthouse
Analyze website performance, accessibility, SEO, and best practices by running Lighthouse audits on any URL, providing actionable insights for optimization.
Instructions
Runs a Lighthouse performance analysis on the currently open page
Input Schema
Name | Required | Description | Default |
---|---|---|---|
categories | No | Categories to analyze (performance, accessibility, best-practices, seo, pwa) | |
maxItems | No | Maximum number of improvement items to display for each category | |
url | Yes | URL of the website you want to analyze |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"categories": {
"default": [
"performance"
],
"description": "Categories to analyze (performance, accessibility, best-practices, seo, pwa)",
"items": {
"enum": [
"performance",
"accessibility",
"best-practices",
"seo",
"pwa"
],
"type": "string"
},
"type": "array"
},
"maxItems": {
"default": 3,
"description": "Maximum number of improvement items to display for each category",
"maximum": 5,
"minimum": 1,
"type": "number"
},
"url": {
"description": "URL of the website you want to analyze",
"format": "uri",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}