Audit a website
audit_websiteRun the full 200-check audit of a website and return the overall score, every category score, and the ranked list of what to fix first. Use this when the user asks a broad question about a site — "how is my website", "what is wrong with it", "is this site any good" — or when you need grounding before advising on changes. Takes roughly 2-8 seconds. If the user only cares about one area, check_category is faster and returns less.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | The website to inspect. A bare domain works — "example.com" is treated as https://example.com. | |
| detail | No | summary: scores plus priority actions (default, best for most answers). markdown: the whole report as prose written for a model to read. full: the complete JSON including every check, link, script and email found. | summary |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | The URL that was measured, after redirects. | |
| grade | Yes | Letter grade from A+ to F. | |
| score | Yes | Overall score out of 100. | |
| counts | Yes | Checks by status. The last five are undetermined states and are never scored as passes. | |
| categories | Yes | Every category with its own score. | |
| undetermined | No | Check ids that reached no verdict. Never treat these as passes. | |
| priorityActions | No | Findings ranked by points recovered per unit of effort. |