seo-audit — seo-audit install seo-audit, templify, community, seo-audit install, ide skills, seo-audit for AI search, technical SEO audit tools, on-page SEO optimization techniques, Claude Code, Cursor, Windsurf

v1.0.0
GitHub

About this Skill

Perfect for Digital Marketing Agents needing advanced SEO analysis and optimization capabilities for traditional and AI-powered search systems. seo-audit is a technical skill that performs an in-depth analysis of a website's SEO, covering both on-page and technical aspects to optimize for search engines and AI-powered systems.

Features

Performs ultra-detailed technical and on-page SEO audits
Optimizes for traditional search engines like Google and Bing
Supports AI-powered search and chat systems
Analyzes website details for improved search visibility and discoverability
Suitable for pre-production website audits
Covers extreme detail for comprehensive SEO analysis

# Core Topics

stancld stancld
[5]
[0]
Updated: 3/6/2026

Agent Capability Analysis

The seo-audit skill by stancld is an open-source community AI agent skill for Claude Code and other IDE workflows, helping agents execute tasks with better context, repeatability, and domain-specific guidance. Optimized for seo-audit install, seo-audit for AI search, technical SEO audit tools.

Ideal Agent Persona

Perfect for Digital Marketing Agents needing advanced SEO analysis and optimization capabilities for traditional and AI-powered search systems.

Core Value

Empowers agents to conduct ultra-detailed technical and on-page SEO audits, optimized for Google, Bing, and AI search, utilizing protocols like HTTP and HTTPS, and analyzing file formats such as HTML, CSS, and JavaScript.

Capabilities Granted for seo-audit

Auditing website SEO issues for improved search visibility
Optimizing website content for AI-powered search and chat systems
Debugging technical SEO problems for better discoverability
Analyzing on-page SEO elements for enhanced user experience

! Prerequisites & Limits

  • Requires website access for analysis
  • Limited to traditional and AI-powered search systems
  • No support for offline or local website audits
Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

seo-audit

Install seo-audit, an AI agent skill for AI agent workflows and automation. Works with Claude Code, Cursor, and Windsurf with one-command setup.

SKILL.md
Readonly

SEO Audit Skill

Performs an ultra-detailed technical and on-page SEO audit optimized for both traditional search engines and AI-powered search/chat systems.

When to Use

  • User asks to "audit SEO" or "check SEO issues"
  • User wants to optimize for Google, Bing, or AI search
  • User asks about search visibility or discoverability
  • Before deploying a website to production

Audit Process

Go through the website in extreme detail. Ultra think about this. Find ALL technical and on-page SEO issues.

Phase 1: Technical SEO Foundation

1.1 Crawlability & Indexing

  • Check for robots.txt in /public/robots.txt
  • Verify XML sitemap exists and is valid
  • Check for proper canonical URLs
  • Verify no accidental noindex tags
  • Check for orphaned pages (no internal links)

1.2 Performance & Core Web Vitals

  • Analyze bundle size (target < 200KB initial JS)
  • Check for code-splitting and lazy loading
  • Verify image optimization (WebP, lazy loading, sizing)
  • Check for render-blocking resources
  • Verify proper caching headers

1.3 Mobile & Accessibility

  • Verify responsive meta viewport tag
  • Check touch target sizes (min 44x44px)
  • Verify semantic HTML structure
  • Check color contrast ratios
  • Verify keyboard navigation support

Phase 2: On-Page SEO

2.1 Meta Tags (in index.html or per-page)

html
1<!-- Essential --> 2<title>Primary Keyword - Brand Name</title> 3<meta name="description" content="150-160 chars, include keywords naturally"> 4 5<!-- Open Graph (Facebook, LinkedIn) --> 6<meta property="og:title" content="Page Title"> 7<meta property="og:description" content="Description"> 8<meta property="og:image" content="https://example.com/og-image.png"> 9<meta property="og:url" content="https://example.com/page"> 10<meta property="og:type" content="website"> 11 12<!-- Twitter Cards --> 13<meta name="twitter:card" content="summary_large_image"> 14<meta name="twitter:title" content="Page Title"> 15<meta name="twitter:description" content="Description"> 16<meta name="twitter:image" content="https://example.com/twitter-image.png">

2.2 Heading Structure

  • Single <h1> per page with primary keyword
  • Logical heading hierarchy (h1 → h2 → h3)
  • Descriptive headings (not "Section 1")
  • Keywords in headings where natural

2.3 Content Quality

  • Unique, valuable content on each page
  • Internal linking between related pages
  • External links to authoritative sources
  • Alt text for all images

Phase 3: Schema Markup (Structured Data)

Add JSON-LD schema to index.html for rich snippets:

3.1 WebApplication Schema (for SaaS/Tools)

json
1{ 2 "@context": "https://schema.org", 3 "@type": "WebApplication", 4 "name": "App Name", 5 "description": "What it does", 6 "url": "https://example.com", 7 "applicationCategory": "BusinessApplication", 8 "operatingSystem": "Web Browser", 9 "offers": { 10 "@type": "Offer", 11 "price": "0", 12 "priceCurrency": "USD" 13 } 14}

3.2 Organization Schema

json
1{ 2 "@context": "https://schema.org", 3 "@type": "Organization", 4 "name": "Company Name", 5 "url": "https://example.com", 6 "logo": "https://example.com/logo.png", 7 "sameAs": [ 8 "https://twitter.com/handle", 9 "https://github.com/handle" 10 ] 11}

3.3 FAQ Schema (if applicable)

json
1{ 2 "@context": "https://schema.org", 3 "@type": "FAQPage", 4 "mainEntity": [{ 5 "@type": "Question", 6 "name": "Question text?", 7 "acceptedAnswer": { 8 "@type": "Answer", 9 "text": "Answer text." 10 } 11 }] 12}

Phase 4: AI Search Optimization (LLM/ChatGPT/Perplexity)

AI-powered search engines extract and cite information differently than traditional crawlers.

4.1 Content Structure for AI

  • Use clear, factual statements that can be quoted
  • Structure content with clear Q&A patterns
  • Include "What is X?" and "How to Y?" sections
  • Use bullet points and numbered lists
  • Provide concise definitions and explanations

4.2 Cite-Worthy Information

  • Include unique data, statistics, or insights
  • Provide step-by-step instructions
  • Add comparison tables
  • Include pricing and feature information
  • Date content when relevant for freshness

4.3 Entity Clarity

  • Clearly state what the product/service IS
  • Define the target audience explicitly
  • List specific use cases
  • Compare to known alternatives (helps AI categorize)

4.4 llms.txt (Optional - Emerging Standard)

Create /public/llms.txt for AI crawlers:

# App Name

> Brief description of what this is

## About
Detailed description for AI systems.

## Features
- Feature 1: Description
- Feature 2: Description

## Use Cases
- Use case 1
- Use case 2

Phase 5: Files Checklist

Generate or verify these files exist:

FilePurpose
/public/robots.txtCrawler instructions
/public/sitemap.xmlPage discovery
/public/favicon.icoBrowser tab icon
/public/apple-touch-icon.pngiOS home screen
/public/og-image.pngSocial sharing (1200x630)
/public/llms.txtAI search optimization

Output Format

After completing the audit, provide:

  1. Critical Issues - Must fix before launch
  2. High Priority - Significant SEO impact
  3. Medium Priority - Improvements for better ranking
  4. Low Priority - Nice to have optimizations
  5. Implementation Plan - Ordered list of fixes with code snippets

Quick Commands

Run these to check common issues:

bash
1# Check for meta tags in index.html 2grep -E "<title>|<meta" index.html 3 4# Find images without alt text 5grep -r "<img" src/ | grep -v "alt=" 6 7# Check bundle size 8npm run build && ls -la dist/assets/*.js 9 10# Validate HTML structure 11npx html-validate dist/index.html

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is seo-audit?

Perfect for Digital Marketing Agents needing advanced SEO analysis and optimization capabilities for traditional and AI-powered search systems. seo-audit is a technical skill that performs an in-depth analysis of a website's SEO, covering both on-page and technical aspects to optimize for search engines and AI-powered systems.

How do I install seo-audit?

Run the command: npx killer-skills add stancld/templify. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for seo-audit?

Key use cases include: Auditing website SEO issues for improved search visibility, Optimizing website content for AI-powered search and chat systems, Debugging technical SEO problems for better discoverability, Analyzing on-page SEO elements for enhanced user experience.

Which IDEs are compatible with seo-audit?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for seo-audit?

Requires website access for analysis. Limited to traditional and AI-powered search systems. No support for offline or local website audits.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add stancld/templify. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use seo-audit immediately in the current project.

Related Skills

Looking for an alternative to seo-audit or another community skill for your workflow? Explore these related open-source skills.

View All

widget-generator

Logo of f
f

f.k.a. Awesome ChatGPT Prompts. Share, discover, and collect prompts from the community. Free and open source — self-host for your organization with complete privacy.

149.6k
0
AI

flags

Logo of vercel
vercel

flags is a Next.js feature management skill that enables developers to efficiently add or modify framework feature flags, streamlining React application development.

138.4k
0
Browser

zustand

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
AI

data-fetching

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
AI