seo

Audit and implement SEO for Next.js applications with structured data and Core Web Vitals guidance.

2|Updated Jun 8, 2026
One-click install
npx skills add https://github.com/lunaticwithaduck/easytech3d --skill seo-lunaticwithaduck
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: seo
Source: https://github.com/lunaticwithaduck/easytech3d/tree/main/.claude/skills/seo
Command: npx skills add https://github.com/lunaticwithaduck/easytech3d --skill seo-lunaticwithaduck

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve? Web applications often ship without proper metadata, sitemaps, structured data, or performance optimization, causing poor search rankings and low click-through rates. This Skill provides a systematic six-phase SEO audit workflow plus Next.js-specific implementation patterns to find and fix these issues. ## Core Features & Use Cases - Automated SEO Audits: Python CLI scripts scan a codebase for missing meta tags, heading hierarchy violations, missing alt text, absent JSON-LD, and sitemap/robots.txt problems, producing a scored report. - Next.js Implementation Patterns: Ready-to-use Metadata API, generateMetadata, sitemap.ts, robots.ts, dynamic OG image, and JSON-LD component patterns for App Router projects. - Structured Data Templates: Copy-paste JSON-LD builders for Article, Product, FAQ, BreadcrumbList, Organization, and LocalBusiness schemas. - Use Case: Run the audit script against a Next.js storefront, get a prioritized list of critical issues (e.g., missing canonical URLs, no sitemap), then apply the provided metadata and JSON-LD patterns to fix them. ## Quick Start Ask the assistant to run an SEO audit on your Next.js project directory and fix the critical issues it reports.

Frequently Asked Questions about seo

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I audit SEO for a Next.js application?▼

Run the included audit.py script against your project directory with the --full flag to scan for missing metadata, heading hierarchy issues, missing alt text, absent JSON-LD, and sitemap or robots.txt problems. It outputs a severity-ranked report with a health score and specific fixes.

How to add dynamic metadata in Next.js App Router?▼

Export an async generateMetadata function from your page.tsx that fetches the entity data and returns a Metadata object with title, description, openGraph, and canonical alternates. Set metadataBase and a title template in the root layout for consistent branding.

What structured data schema types should a website include?▼

At minimum, add Organization schema site-wide and BreadcrumbList on navigable pages. Product pages need Product schema with offers, articles need Article schema, and FAQ sections can use FAQPage schema for rich results eligibility.

Does the SEO audit script work with frameworks other than Next.js?▼

The analyzers scan .tsx, .jsx, .vue, .svelte, .astro, and .html files for headings, images, and JSON-LD, so partial analysis works on other frameworks. However, sitemap, robots, and metadata checks are specific to the Next.js app directory conventions.

What are the Core Web Vitals targets for good SEO?▼

LCP should be under 2.5 seconds, INP under 200 milliseconds, and CLS under 0.1. The Skill's references cover Next.js-specific optimizations like next/image priority loading, useTransition for interactions, and next/font to prevent layout shift.