seo-audit-report

seo-audit-report is a skill for Claude Code from strikersam/autonomous-ai-agency. It costs 91 tokens per session (1,442 once invoked), scanned A, original, MIT.

A website auditing tool that crawls pages and checks technical SEO, content, security, social metadata, and newer search formats such as GEO and AEO.

In plain words
What is it for?
Use it to review a public website, find search-related problems, and export findings as PDF, CSV, JSON, or Markdown.
Why use it?
It replaces a manual review of many pages with one structured audit and report. It can also crawl sites that block basic automated requests.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is python scripts/run_seo_audit.py \.

Good fit Use it to review a public website, find search-related problems, and export findings as PDF, CSV, JSON, or Markdown.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/strikersam/autonomous-ai-agency
agentmods
npx agentmods add skills/strikersam/autonomous-ai-agency/seo-audit-report

Made for: Claude Code.

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 seo-audit-report

README.md
[![agentmods](https://agentmods.dev/badge/skills/strikersam/autonomous-ai-agency/seo-audit-report/github.svg)](https://agentmods.dev/skills/strikersam/autonomous-ai-agency/seo-audit-report)
Your own site
<a href="https://agentmods.dev/skills/strikersam/autonomous-ai-agency/seo-audit-report"><img src="https://agentmods.dev/badge/skills/strikersam/autonomous-ai-agency/seo-audit-report/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 seo-audit-report

Your own site · 80×15
<a href="https://agentmods.dev/skills/strikersam/autonomous-ai-agency/seo-audit-report"><img src="https://agentmods.dev/badge/skills/strikersam/autonomous-ai-agency/seo-audit-report.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 91 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,442 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. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Tool Misuse · line 77
    Tool parameters are crafted to achieve unintended or unsafe behavior. Parameter abuse can bypass intended safety checks (e.g. shell=True, --force, dangerous glob patterns).
    Fix: Validate all tool parameters against an allowlist. Reject dangerous parameter values (shell=True, --force, -rf /) and use safe defaults.
How audits are shown
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.00091 $0.01442
Opus 5 $0.00046 $0.00721
Sonnet 5 $0.00018 $0.00288
Haiku 4.5 $0.00009 $0.00144

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

Security

Grade A, and why

seo-audit-report 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 9d 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.

.claude/skills/seo-audit-report/SKILL.md · 152 lines

How it starts

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

Skill: seo-audit-report

Purpose

Run a full SEO / GEO / AEO / AIO audit against any public website and produce an executive-level PDF report suitable for CTO or client delivery.

The crawl uses curl_cffi with Chrome 120 TLS impersonation to bypass bot-protection layers (Akamai, Cloudflare) that block plain httpx crawlers. Playwright browser mode is supported when system dependencies are available; curl_cffi is the reliable fallback.

Quick Start

python scripts/run_seo_audit.py \
  --website-url https://www.example.com \
  --output-dir ./seo-output

All other parameters have sensible defaults. See --help for full options.

Parameters

Parameter Default Description
--website-url required Site to audit
--max-pages 100 Crawl budget (pages)
--max-depth 3 Link-follow depth
--output-dir ./seo-audit-output Where to write files
--monthly-organic-revenue 0 Revenue baseline for at-risk modelling
--check-image-sizes true HEAD-request image sizes (slower)
--no-check-image-sizes Skip image size checks for speed

Output Files

File Contents
{domain}_seo_audit.pdf Executive PDF report (cover, executive summary, pillar deep-dives, full findings, delegation plan, methodology)
{domain}_report.json Full machine-readable report (all pages, all issues, pillar scores)
{domain}_report.md Markdown version of the report
{domain}_findings.csv Summary CSV: one row per finding type with priority, URLs affected, how-to-fix
{domain}_pages.csv Per-page CSV: URL, status, title, H1, word count, issues found
{domain}_issues.csv Per-issue-instance CSV: URL × check_code × details

Verify Bypass Quality

Before trusting results, spot-check the JSON:

import json
with open("seo-output/example.com_report.json") as f:
    r = json.load(f)
pages = r["pages"]
# All should show status_code=200 and via="curl_cffi"
print({p["url"]: (p["status_code"], p.get("fetch_via","?")) for p in pages[:5]})

Read the full file on GitHub · 152 lines

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. 9d ago First seen · 152 lines · 91 tokens per session scan A e5683ffb638b

Subscribe to this mod's changes

seo-audit-report is a skill published in the GitHub repository strikersam/autonomous-ai-agency (8 stars, last pushed today), licensed MIT. It adds 91 tokens to every session and 1,442 once invoked, about $0.0005 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-09-03.

Related

Other skills, from other repositories

assimilate-popular-workflows

This skill should be used when the user asks to "find skills in the wild", "assimilate popular workflows", "discover SKILL.md files in repos", "research external skills", "find workflow patterns", "survey the skill landscape", "what skills exist out there", or wants to investigate public repositories for extractable…

a5c-ai/babysitter · 110 tokens

process-builder

Scaffold new babysitter process definitions following SDK patterns, proper structure, and best practices. Guides the 3-phase workflow from research to implementation.

a5c-ai/babysitter · 32 tokens

mcp-app-verification

Comprehensive verification checklists for MCP Apps. Tests with basic-host reference, validates handler-before-connect, text fallback, resource URI linking, single-file bundling, host styling, CSP, and legacy pattern detection.

a5c-ai/babysitter · 48 tokens

guardrails-ai-setup

Guardrails AI validation framework setup for LLM applications. Implement input/output validation, safety checks, and structured output enforcement.

a5c-ai/babysitter · 30 tokens

mcp-app-scaffolding

Scaffolds MCP App project structure with correct directory layout, dependencies, entry points, and framework-specific templates. Handles React (useApp hook), Vanilla JS, Vue, Svelte, Preact, and Solid.

a5c-ai/babysitter · 50 tokens

mcp-csp-investigation

Comprehensive Content Security Policy audit for MCP Apps in sandboxed iframes. Discovers all network origins, traces them to source, and generates CSP configuration for registerAppResource.

a5c-ai/babysitter · 43 tokens