Agentic SEO Audit Skill
An LLM-first SEO audit skill that inspects websites, blog posts, and GitHub repos, then ships a prioritized report plus action plan.
Marketing & SEOIntermediate★ 931⑂ 146AI score 10/10Last updated: Jul 23, 2026
What it does
- Detects requests like "run SEO audit", "check technical SEO", "review schema", "Core Web Vitals", "hreflang", "GEO/AEO" and routes them to one of 16 sub-skills (audit, page, technical, content, schema, sitemap, images, links, GitHub, plan, and more).
- Reads the page content directly as baseline evidence, then backs it with bundled Python scripts for robots.txt, llms.txt, PageSpeed/CWV, security headers, broken links, redirect chains, readability, social meta, and internal linking.
- Formats every finding as
Finding → Evidence → Impact → Fix, separating confirmed issues, likely issues, and unknowns with confidence labels. - Always writes
FULL-AUDIT-REPORT.mdandACTION-PLAN.md, and can generate a self-contained interactive HTML dashboard. - Encodes current Google rules (INP not FID, FAQPage restricted, HowTo deprecated, JSON-LD only) so recommendations stay up to date.
Who it's for
- Marketers and content owners who need repeatable SEO checkups on sites and blogs
- Developers handling technical SEO: crawlability, indexing, structured data, performance
- Open source maintainers who want better repo discoverability and a stronger README
- Agencies and freelancers who must hand clients a documented audit
Example uses
seo audit https://example.com— full-site crawl with weighted category scores and a prioritized remediation plan.seo page https://blog.example.com/post— deep single-page review of title, meta, schema, readability, and E-E-A-T.seo github owner/repo— README lint, topic/description tuning, community health, competitor benchmarking.seo plan https://store.example.com— detects e-commerce and builds a strategy from the matching industry template.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/Bhanunamikaze/Agentic-SEO-Skill/HEAD/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the SKILL.m folder from the GitHub repo Bhanunamikaze/Agentic-SEO-Skill into my ~/.claude/skills/seo/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/Bhanunamikaze/Agentic-SEO-Skill.git ~/.claude/skills/seo && pip install requests beautifulsoup4⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal and create the skills directory:
mkdir -p ~/.claude/skills - Clone the repo into it:
git clone https://github.com/Bhanunamikaze/Agentic-SEO-Skill.git ~/.claude/skills/seo - Confirm
~/.claude/skills/seo/SKILL.mdexists; if it sits in a subfolder, move contents so SKILL.md is at the top level. - Install Python dependencies:
pip install requests beautifulsoup4(Python 3.8+ required). - For screenshots and visual analysis, also run:
pip install playwright && playwright install chromium - Optional: if you have API keys (PageSpeed, GitHub, GSC), copy
.env.exampleto.envand fill only the keys you own — never paste secrets into prompts. - Restart Claude Code and try:
perform seo analysis on example.com.
View source on GitHub ↗License: MIT