site-audit

site-audit is a skill for Claude Code from sivang/sivan-claude-plugins. It costs 47 tokens per session (2,676 once invoked), scanned A, original, MIT.

A website-checking tool that visits a supplied URL and reachable pages on the same website, then reports problems.

In plain words
What is it for?
Use it to audit a website before launch or after changes. It checks links, spelling and grammar, browser console errors, and page appearance.
Why use it?
It finds common website issues that are easy to miss during manual checks, such as broken links, writing mistakes, browser errors, and visual defects.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the site-audit plugin — 1 skill, 1 command shipped together

Good fit Use it to audit a website before launch or after changes. It checks links, spelling and grammar, browser console errors, and page appearance.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/sivang/sivan-claude-plugins/site-audit
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add sivang/sivan-claude-plugins --skill site-audit
Clone the repo
git clone --depth 1 https://github.com/sivang/sivan-claude-plugins

Made for: Claude Code.

Or install site-audit, the plugin that ships this one along with the rest of its 1 skill, 1 command.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for site-audit

README.md
[![agentmods](https://agentmods.dev/badge/skills/sivang/sivan-claude-plugins/site-audit/github.svg)](https://agentmods.dev/skills/sivang/sivan-claude-plugins/site-audit)
Your own site
<a href="https://agentmods.dev/skills/sivang/sivan-claude-plugins/site-audit"><img src="https://agentmods.dev/badge/skills/sivang/sivan-claude-plugins/site-audit/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for site-audit

Your own site · 80×15
<a href="https://agentmods.dev/skills/sivang/sivan-claude-plugins/site-audit"><img src="https://agentmods.dev/badge/skills/sivang/sivan-claude-plugins/site-audit.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 47 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,676 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00047 $0.02676
Opus 5 $0.00023 $0.01338
Sonnet 5 $0.00009 $0.00535
Haiku 4.5 $0.00005 $0.00268

Measured 8d ago against content hash 2441e3828494, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

site-audit scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

site-audit/skills/site-audit/SKILL.md · 257 lines

How it starts

The opening of the file, as written. The whole thing — 257 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Site Audit

Role: Thorough website quality auditor.

Objective: Crawl the provided URL and all reachable same-domain pages using Chrome browser navigation, checking for broken links, spelling/grammar errors, console errors, and visual issues. Produce a structured report of all findings.

Input

The user provides a target URL as an argument to /site-audit. Example: /site-audit https://example.com

If no URL is provided, ask the user for one. Validate that the input is a valid URL (starts with http:// or https://).

Execution

Phase 1: URL Validation & Browser Setup

  1. Extract the URL from the user's command
  2. Validate it starts with http:// or https://
  3. Set up Chrome browser tab:
    • Call tabs_context_mcp to get existing tab group (with createIfEmpty: true)
    • Call tabs_create_mcp to create one dedicated tab for the entire audit
    • Store the returned tab ID for all subsequent operations
  4. Navigate to the seed URL to verify it loads
  5. Confirm the target domain with the user

Phase 2: Chrome-Based Crawl

After URL validation, begin the breadth-first crawl using Chrome navigation.

Initialization:

  1. Parse the seed URL to extract protocol, domain (hostname), and path
  2. Initialize crawl state:
    • queue: List containing only the seed URL (normalized)
    • visited: Empty set for tracking crawled URLs
    • page_count: 0
    • max_pages: 20 (crawl limit — keeps audit focused)
    • broken_links: Empty list for recording dead links with source info
    • seed_hostname: Extracted hostname from seed URL (for same-domain checks)
    • link_sources: Map of {target_url: source_page} for dead link tracking
    • broken_links_count: 0
    • spelling_issues_count: 0
  3. Create .audit-data/ directory and initialize JSONL files:
    mkdir -p .audit-data
    touch .audit-data/findings-broken-links.jsonl
    touch .audit-data/findings-spelling.jsonl
    
  4. Reference @references/URL_RULES.md for URL normalization rules
  5. Reference @references/CHECKS.md for content analysis and broken link detection rules
  6. Display initialization summary to user:
    • Seed URL (normalized)
    • Domain to crawl
    • Max pages limit
    • Chrome tab ID being used
    • Findings will be written to .audit-data/ directory

Read the full file on GitHub · 257 lines

Files

What ships with it

4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 257 lines · 47 tokens per session scan A 2441e3828494

Subscribe to this mod's changes

site-audit is a skill published in the GitHub repository sivang/sivan-claude-plugins (1 stars, last pushed 7mo ago), licensed MIT. It adds 47 tokens to every session and 2,676 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

debug

Analyze errors and apply fixes. Use when you have an error message, traceback, or failing log to diagnose.

This-HW/claude-code-kit · 24 tokens

postmortem

Auto-generates a structured postmortem from a completed campaign. Reads the campaign file, telemetry logs, and feature ledger. Produces a documented analysis of what broke, what the safety systems caught, and what patterns emerged. Can also be invoked manually for any incident.

SethGammon/Citadel · 58 tokens

qa

Browser-based QA verification. Launches a real browser, navigates the app, clicks buttons, fills forms, and tests user flows. Works as a standalone skill or as a phase end condition in campaigns. Requires Playwright (optional dependency, graceful skip if not installed).

SethGammon/Citadel · 56 tokens

systematic-debugging

4-phase root cause analysis: observe, hypothesize, verify, fix. Enforces investigation before any code changes. Emergency stop after 2 failed fixes. Prevents shotgun debugging and fix cascades.

SethGammon/Citadel · 45 tokens

browser-doctor

Read-only health check on browser-control setup. Verifies browser binary, Playwright MCP Bridge extension presence, token file mode/contents, AIWG MCP registration, provider config injection, and optional workspace allow-list. Outputs pass/fail per check with remediation commands.

jmagly/aiwg · 56 tokens

codexless-browser-repair

Diagnose and temporarily repair Codexless Browser compatibility after a Codex, Chrome Skill, or Browser runtime update when Codexless Browser stopped working. Use for current-version Codexless Browser compatibility drift, not ordinary website bugs, general Browser operation, Codexless install/update work, or long-term…

liyana31811/Codexless · 70 tokens