seo-audit
Comprehensive SEO audit: meta tags, Open Graph/Twitter Card validation, heading hierarchy, image alt coverage, structured data (JSON-LD) extraction, hreflang, internal/external link analysis, and robots.txt/sitemap.xml checking.
What this skill does
# SEO Audit
Perform a comprehensive search engine optimization audit of a web page.
Extracts and validates meta tags (title, description, canonical, robots),
Open Graph and Twitter Card markup, heading hierarchy, image alt text
coverage, structured data (JSON-LD), hreflang annotations, and link
analysis. Supplements with robots.txt and sitemap.xml checks via curl.
## When to Use
- Pre-launch SEO review of new pages or redesigns.
- Diagnosing why a page is not appearing in search results.
- Validating Open Graph and Twitter Card previews before social sharing.
- Auditing structured data (JSON-LD) for rich snippet eligibility.
- Checking heading hierarchy for accessibility and SEO best practices.
- Identifying missing alt text on images.
- Verifying robots.txt and sitemap.xml configuration.
## Prerequisites
- **Playwright MCP server** connected and responding.
- **curl** available in the shell for robots.txt and sitemap.xml fetching.
- Target page must be reachable from the browser instance.
## Workflow
### Phase 1: Navigate to Target
```
browser_navigate({ url: "<target_url>" })
```
```
browser_wait_for({ time: 3 })
```
### Phase 2: Extract Meta Tags and Head Elements
```javascript
browser_evaluate({
function: `() => {
const getMeta = (name) => {
const el = document.querySelector(
'meta[name="' + name + '"], meta[property="' + name + '"]'
);
return el ? el.content : null;
};
// Core meta tags
const meta = {
title: document.title || null,
titleLength: (document.title || '').length,
description: getMeta('description'),
descriptionLength: (getMeta('description') || '').length,
robots: getMeta('robots'),
googlebot: getMeta('googlebot'),
canonical: null,
viewport: getMeta('viewport'),
charset: document.characterSet,
language: document.documentElement.lang || null
};
// Canonical
const canonicalEl = document.querySelector('link[rel="canonical"]');
meta.canonical = canonicalEl ? canonicalEl.href : null;
// Open Graph
const og = {};
document.querySelectorAll('meta[property^="og:"]').forEach(el => {
const prop = el.getAttribute('property').replace('og:', '');
og[prop] = el.content;
});
// Twitter Card
const twitter = {};
document.querySelectorAll('meta[name^="twitter:"]').forEach(el => {
const name = el.getAttribute('name').replace('twitter:', '');
twitter[name] = el.content;
});
// hreflang
const hreflang = [];
document.querySelectorAll('link[rel="alternate"][hreflang]').forEach(el => {
hreflang.push({
lang: el.hreflang,
href: el.href
});
});
// Preload/prefetch hints
const resourceHints = [];
document.querySelectorAll('link[rel="preload"], link[rel="prefetch"], link[rel="preconnect"], link[rel="dns-prefetch"]').forEach(el => {
resourceHints.push({
rel: el.rel,
href: el.href,
as: el.getAttribute('as') || null,
crossorigin: el.crossOrigin || null
});
});
return { meta, og, twitter, hreflang, resourceHints };
}`
})
```
### Phase 3: Analyze Heading Hierarchy
Use the accessibility tree for accurate heading structure, then supplement
with DOM analysis.
```
browser_snapshot()
```
```javascript
browser_evaluate({
function: `() => {
const headings = [];
document.querySelectorAll('h1, h2, h3, h4, h5, h6').forEach((el, index) => {
headings.push({
level: parseInt(el.tagName[1]),
text: el.textContent.trim().substring(0, 100),
index,
id: el.id || null,
isVisible: el.offsetParent !== null,
parentSection: el.closest('section, article, main, aside, nav')?.tagName || null
});
});
// Check hierarchy issues
const issues = [];
const h1Count = headings.filter(h => h.level === 1).length;
if (h1Count === 0) issues.push('No H1 element found');
if (h1Count > 1) issues.push('Multiple H1 elements found (' + h1Count + ')');
for (let i = 1; i < headings.length; i++) {
const gap = headings[i].level - headings[i - 1].level;
if (gap > 1) {
issues.push(
'Heading level skipped: H' + headings[i - 1].level +
' -> H' + headings[i].level +
' at "' + headings[i].text.substring(0, 40) + '"'
);
}
}
return {
total: headings.length,
h1Count,
hierarchy: headings,
issues
};
}`
})
```
### Phase 4: Image Alt Text Coverage
```javascript
browser_evaluate({
function: `() => {
const images = [];
document.querySelectorAll('img').forEach(img => {
const hasAlt = img.hasAttribute('alt');
const altText = img.getAttribute('alt');
const isDecorative = altText === '';
const isVisible = img.offsetParent !== null && img.naturalWidth > 0;
images.push({
src: (img.src || img.dataset.src || '').substring(0, 150),
alt: altText,
hasAlt,
isDecorative,
isVisible,
width: img.naturalWidth,
height: img.naturalHeight,
loading: img.loading || null,
fetchpriority: img.fetchPriority || null,
inViewport: img.getBoundingClientRect().top < window.innerHeight
});
});
const missingAlt = images.filter(i => !i.hasAlt && i.isVisible);
const emptyAlt = images.filter(i => i.isDecorative && i.isVisible);
const withAlt = images.filter(i => i.hasAlt && !i.isDecorative);
return {
total: images.length,
visible: images.filter(i => i.isVisible).length,
missingAlt: missingAlt.length,
decorative: emptyAlt.length,
withAlt: withAlt.length,
coveragePercent: images.length > 0
? Math.round((withAlt.length + emptyAlt.length) / images.filter(i => i.isVisible).length * 100)
: 100,
images: images.slice(0, 50)
};
}`
})
```
### Phase 5: Structured Data (JSON-LD) Extraction
```javascript
browser_evaluate({
function: `() => {
const jsonLdScripts = [];
document.querySelectorAll('script[type="application/ld+json"]').forEach(script => {
try {
const data = JSON.parse(script.textContent);
const items = Array.isArray(data) ? data : [data];
items.forEach(item => {
jsonLdScripts.push({
type: item['@type'] || 'unknown',
context: item['@context'] || null,
data: JSON.stringify(item).substring(0, 1000),
valid: true
});
});
} catch (e) {
jsonLdScripts.push({
type: 'parse-error',
error: e.message,
raw: script.textContent.substring(0, 200),
valid: false
});
}
});
// Also check for microdata
const microdataItems = [];
document.querySelectorAll('[itemscope]').forEach(el => {
microdataItems.push({
type: el.getAttribute('itemtype') || 'untyped',
properties: Array.from(el.querySelectorAll('[itemprop]')).map(p => ({
name: p.getAttribute('itemprop'),
value: (p.content || p.textContent || p.href || '').substring(0, 100)
})).slice(0, 20)
});
});
return {
jsonLd: {
count: jsonLdScripts.length,
items: jsonLdScripts
},
microdata: {
count: microdataItems.length,
items: microdataItems.slice(0, 10)
}
};
}`
})
```
### Phase 6: Link Analysis
```javascript
browser_evaluate({
function: `() => {
const pageOrigin = window.location.origin;
const pageUrl = window.location.href;
const links = [];
const issues = [];
document.querySelectorAll('a[href]').forEach(a => {
const href = a.href;
let type = 'internal';
try {
const linkOrigin = new URL(href, pageUrl).origin;
if (linkOrigin !== pageOrigin) type = 'external';
} catch { type = 'invalid'; }
if (href.startsWith('javascript:')) type = 'javascriRelated in Ads & Marketing
ads
IncludedMulti-platform paid advertising audit and optimization skill. Analyzes Google, Meta, YouTube, LinkedIn, TikTok, Microsoft, and Apple Ads. 250+ checks with scoring, parallel agents, industry templates, and AI creative generation.
banana
IncludedAI image generation Creative Director powered by Google Gemini Nano Banana models. Use this skill for ANY request involving image creation, editing, visual asset production, or creative direction. Triggers on: generate an image, create a photo, edit this picture, design a logo, make a banner, visual for my anything, and all /banana commands. Handles text-to-image, image editing, multi-turn creative sessions, batch workflows, and brand presets.
rpg-migration-analyzer
IncludedAnalyzes legacy RPG (Report Program Generator) programs from AS/400 and IBM i systems for migration to modern Java applications. Extracts business logic from RPG III/IV/ILE source code, identifies data structures (D-specs), file operations (F-specs), program dependencies (CALLB/CALLP), and converts RPG constructs to Java equivalents. Generates migration reports, complexity estimates, and Java implementation strategies with POJO classes, JPA entities, and service methods. Use when modernizing AS/400 or IBM i legacy systems, analyzing RPG source files (.rpg, .rpgle, .RPGLE), converting RPG to Java, mapping data specifications to Java classes, planning legacy system migration, or when user mentions RPG analysis, Report Program Generator, RPG III/IV/ILE, AS/400 modernization, IBM i migration, packed decimal conversion, or mainframe application rewrite.
brand-library-architect
IncludedBuild a complete brand library for a product — visual asset render pipeline, brand documentation set (BRAND, COPY, MANIFESTO, BIOS, FAQ, GLOSSARY, TONE, PRICING), open-source convention files (README, CONTRIBUTING, SECURITY, CODE_OF_CONDUCT), and a self-contained press kit. This skill should be used when the user asks to "build a brand library / brand kit / press kit / brand assets" for a product, "set up a brand library workflow," "create a positioning manifesto plus visual identity," or any combination of brand documentation + visual asset pipeline. Apply phase-by-phase or run end-to-end. Templates are product-agnostic and use {{TOKEN}} placeholders the skill prompts the user to fill.
writing-tech-post
IncludedAuthors engineering blog posts end-to-end: launch deep-dives, incident postmortems, architecture migrations, performance case studies, tutorials, AI/agent system writeups, security disclosures, and research-to-product translations. Picks the correct archetype, plans the abstraction ladder, enforces an evidence cadence (diagrams, benchmarks, profiles, traces, code, ablations), tunes voice against publisher house styles (Datadog, Vercel, GitHub, AWS, Meta, Cloudflare, Jane Street), and runs a pre-publish gate for narrative momentum and disclosure ethics. Use when drafting a new engineering post, restructuring a draft that feels flat, deciding which evidence form belongs where, validating that depth and product context are balanced, or preparing a postmortem, migration, or performance narrative for external publication. Do not use for API reference documentation, README authoring, marketing copy, release notes, generic SEO content, ghost-written executive thought leadership, or non-engineering long-form essays.
blog-google
IncludedGoogle API integration for blog performance: PageSpeed Insights, CrUX Core Web Vitals with 25-week history, Search Console performance, URL Inspection, Indexing API, GA4 organic traffic, NLP entity analysis for E-E-A-T, YouTube video search for embedding, and Google Ads Keyword Planner. Progressive feature availability based on credential tier (API key, OAuth/service account, GA4, Ads). Shares config with claude-seo at ~/.config/claude-seo/google-api.json. Use when user says "google data", "page speed", "core web vitals", "search console", "indexation", "GA4", "keyword research", "nlp entities", "blog performance", "youtube search", "google api setup".