run_audit
Execute a detailed Lighthouse audit on any website to evaluate performance, accessibility, best practices, SEO, and PWA metrics. Specify URL, categories, device, and throttling for tailored results.
Instructions
Run a comprehensive Lighthouse audit on a website
Input Schema
Name | Required | Description | Default |
---|---|---|---|
categories | No | ||
device | No | Device to emulate (default: desktop) | desktop |
throttling | No | Whether to throttle the audit (default: false) | |
url | Yes | URL to audit |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"categories": {
"items": {
"description": "Categories to audit",
"enum": [
"performance",
"accessibility",
"best-practices",
"seo",
"pwa"
],
"type": "string"
},
"type": "array"
},
"device": {
"default": "desktop",
"description": "Device to emulate (default: desktop)",
"enum": [
"desktop",
"mobile"
],
"type": "string"
},
"throttling": {
"default": false,
"description": "Whether to throttle the audit (default: false)",
"type": "boolean"
},
"url": {
"description": "URL to audit",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}