seo-optimizer — seo optimization techniques seo-optimizer, cc-skills, chongdashu, community, seo optimization techniques, ai agent skill, ide skills, agent automation, semantic communication protocols, search engine indexing, social platform optimization, ai crawler optimization

v1.0.0
GitHub

About this Skill

Perfect for Web Development Agents needing advanced SEO optimization and semantic communication capabilities. seo-optimizer is a skill that analyzes codebases and implements comprehensive SEO optimizations for clear semantic communication with machines.

Features

Analyzes codebase for SEO optimization opportunities
Implements comprehensive SEO optimizations for search engines
Enables clear semantic communication with social platforms
Improves content indexing and surfacing
Optimizes content for AI crawlers

# Core Topics

chongdashu chongdashu
[19]
[7]
Updated: 3/14/2026

Quality Score

Top 5%
60
Excellent
Based on code quality & docs
Installation
SYS Universal Install (Auto-Detect)
> npx killer-skills add chongdashu/cc-skills/seo-optimizer
Supports 19+ Platforms
Cursor
Windsurf
VS Code
Trae
Claude
OpenClaw
+12 more

Agent Capability Analysis

The seo-optimizer skill by chongdashu 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 optimization techniques, semantic communication protocols, search engine indexing.

Ideal Agent Persona

Perfect for Web Development Agents needing advanced SEO optimization and semantic communication capabilities.

Core Value

Empowers agents to transform web applications into discoverable content by analyzing codebases and implementing comprehensive SEO optimizations using semantic communication protocols, enabling search engines and social platforms to properly understand and surface content.

Capabilities Granted for seo-optimizer

Analyzing codebases for SEO optimization opportunities
Implementing semantic communication protocols for search engines and social platforms
Optimizing web application content for discoverability and indexing

! Prerequisites & Limits

  • Requires access to web application codebase
  • Limited to search engines and social platforms that support semantic communication protocols
Project
SKILL.md
12.5 KB
.cursorrules
1.2 KB
package.json
240 B
Ready
UTF-8

# Tags

[No tags]
SKILL.md
Readonly

SEO Optimizer

Transform your web application from invisible to discoverable. This skill analyzes your codebase and implements comprehensive SEO optimizations that help search engines and social platforms understand, index, and surface your content.

Philosophy: SEO as Semantic Communication

SEO is not about gaming algorithms—it's about clearly communicating what your content IS to machines (search engines, social platforms, AI crawlers) so they can properly understand and surface it.

Before optimizing, ask:

  • What is this page actually about? (not what keywords we want to rank for)
  • Who is the intended audience and what are they searching for?
  • What unique value does this content provide?
  • How should machines categorize and understand this content?

Core Principles:

  1. Accuracy Over Optimization: Describe what IS, not what you wish would rank
  2. User Intent First: Match content to what searchers actually want
  3. Semantic Clarity: Use structured data to make meaning machine-readable
  4. Progressive Enhancement: Basic SEO for all pages, rich optimization for key pages
  5. Framework-Native: Use each framework's idioms, not generic hacks

The SEO Hierarchy (prioritize in order):

1. Content Quality      ← Foundation: Valuable, accurate, unique content
2. Technical Access     ← Can crawlers find and index your pages?
3. Semantic Structure   ← Do machines understand your content's meaning?
4. Meta Optimization    ← Are your titles/descriptions compelling?
5. Structured Data      ← JSON-LD for rich search results
6. Performance          ← Core Web Vitals affect rankings

Codebase Analysis Workflow

ALWAYS analyze before implementing. Different codebases need different approaches.

Step 1: Discover Framework and Structure

Identify the framework and routing pattern:

  • Next.js: Look for next.config.js, app/ or pages/ directory
  • Astro: Look for astro.config.mjs, src/pages/
  • React Router: Look for route configuration, react-router-dom
  • Gatsby: Look for gatsby-config.js, gatsby-node.js
  • Static HTML: Look for .html files in root or public/

Step 2: Audit Current SEO State

Check for existing implementations:

  • Meta tags in <head> (title, description, viewport)
  • Open Graph tags (og:title, og:image, etc.)
  • Twitter Card tags (twitter:card, twitter:image)
  • Structured data (<script type="application/ld+json">)
  • Sitemap (sitemap.xml or generation config)
  • Robots.txt file
  • Canonical URLs
  • Alt text on images

Step 3: Identify Page Types

Different pages need different SEO approaches:

Page TypePriorityKey Optimizations
Landing/HomeCriticalBrand keywords, comprehensive structured data
Product/ServiceHighProduct schema, reviews, pricing
Blog/ArticleHighArticle schema, author, publish date
DocumentationMediumHowTo/FAQ schema, breadcrumbs
About/ContactMediumOrganization schema, local business
Legal/PrivacyLowBasic meta only, often noindex

Step 4: Generate Implementation Plan

Based on analysis, prioritize:

  1. Quick wins: Missing meta tags, viewport, basic structure
  2. High impact: Structured data for key pages, sitemap
  3. Refinement: Performance, advanced schema, social optimization

See references/analysis-checklist.md for detailed audit procedures.


Meta Tags Implementation

Essential Meta Tags (Every Page)

html
1<!-- Required --> 2<meta charset="utf-8"> 3<meta name="viewport" content="width=device-width, initial-scale=1"> 4<title>{Page Title} | {Site Name}</title> 5<meta name="description" content="{150-160 char description}"> 6 7<!-- Recommended --> 8<link rel="canonical" href="{full canonical URL}"> 9<meta name="robots" content="index, follow">

Title Tag Best Practices

Format: {Primary Content} | {Brand} or {Primary Content} - {Brand}

Guidelines:

  • 50-60 characters (Google truncates at ~60)
  • Front-load important keywords
  • Unique for every page
  • Accurately describe page content
  • Include brand for recognition (usually at end)

Title Patterns by Page Type:

Homepage:     {Brand} - {Value Proposition}
Product:      {Product Name} - {Key Benefit} | {Brand}
Article:      {Article Title} | {Brand}
Category:     {Category} Products | {Brand}
Search:       Search Results for "{Query}" | {Brand}

Meta Description Best Practices

Guidelines:

  • 150-160 characters (Google may truncate at ~155)
  • Include a call to action when appropriate
  • Accurately summarize page content
  • Unique for every page
  • Include primary keyword naturally

DO NOT:

  • Stuff keywords unnaturally
  • Use the same description across pages
  • Write descriptions that don't match content
  • Start with "Welcome to..." or similar filler

Open Graph Tags (Social Sharing)

html
1<meta property="og:type" content="website"> 2<meta property="og:url" content="{canonical URL}"> 3<meta property="og:title" content="{title}"> 4<meta property="og:description" content="{description}"> 5<meta property="og:image" content="{1200x630 image URL}"> 6<meta property="og:site_name" content="{Site Name}">

Twitter Card Tags

html
1<meta name="twitter:card" content="summary_large_image"> 2<meta name="twitter:site" content="@{handle}"> 3<meta name="twitter:title" content="{title}"> 4<meta name="twitter:description" content="{description}"> 5<meta name="twitter:image" content="{image URL}">

See references/meta-tags-complete.md for comprehensive tag reference.


Structured Data (JSON-LD)

Structured data enables rich search results (star ratings, prices, FAQs, etc.).

When to Use Which Schema

Content TypeSchemaRich Result
Organization infoOrganizationKnowledge panel
ProductsProductPrice, availability, reviews
Articles/BlogArticleHeadline, image, date
How-to guidesHowToStep-by-step in search
FAQsFAQPageExpandable Q&A
EventsEventDate, location, tickets
RecipesRecipeImage, time, ratings
Local businessLocalBusinessMaps, hours, contact
BreadcrumbsBreadcrumbListNavigation path

Implementation Pattern

html
1<script type="application/ld+json"> 2{ 3 "@context": "https://schema.org", 4 "@type": "Organization", 5 "name": "Company Name", 6 "url": "https://example.com", 7 "logo": "https://example.com/logo.png", 8 "sameAs": [ 9 "https://twitter.com/company", 10 "https://linkedin.com/company/company" 11 ] 12} 13</script>

Multiple Schemas Per Page

Use @graph to combine schemas:

json
1{ 2 "@context": "https://schema.org", 3 "@graph": [ 4 { "@type": "Organization", ... }, 5 { "@type": "WebSite", ... }, 6 { "@type": "BreadcrumbList", ... } 7 ] 8}

See references/structured-data-schemas.md for complete schema examples.


Technical SEO

Sitemap Generation

XML Sitemap Requirements:

  • Include all indexable pages
  • Exclude noindex pages, redirects, error pages
  • Update <lastmod> when content changes
  • Submit to Google Search Console

Framework implementations: See references/framework-implementations.md

Robots.txt

Standard Template:

txt
1User-agent: * 2Allow: / 3 4# Block admin/private areas 5Disallow: /admin/ 6Disallow: /api/ 7Disallow: /private/ 8 9# Point to sitemap 10Sitemap: https://yourdomain.com/sitemap.xml

Canonical URLs

Always set canonical URLs to:

  • Prevent duplicate content issues
  • Consolidate link equity
  • Specify preferred URL version

Handle:

  • www vs non-www
  • http vs https
  • Trailing slashes
  • Query parameters

Performance (Core Web Vitals)

Core Web Vitals affect rankings. Monitor:

MetricTargetWhat It Measures
LCP< 2.5sLargest Contentful Paint (loading)
INP< 200msInteraction to Next Paint (interactivity)
CLS< 0.1Cumulative Layout Shift (visual stability)

Quick wins:

  • Optimize images (WebP, lazy loading, proper sizing)
  • Minimize JavaScript bundles
  • Use efficient fonts (display: swap)
  • Implement proper caching

Anti-Patterns to Avoid

Keyword Stuffing

html
1<!-- BAD --> 2<title>Best Shoes | Buy Shoes | Cheap Shoes | Shoes Online | Shoe Store</title> 3 4<!-- GOOD --> 5<title>Running Shoes for Marathon Training | SportShop</title>

Why bad: Search engines penalize unnatural keyword repetition. Users don't click spammy titles.

Duplicate Descriptions Using the same meta description across multiple pages. Why bad: Misses opportunity for page-specific relevance. Google may ignore and auto-generate.

Description/Content Mismatch Writing descriptions for keywords rather than actual content. Why bad: High bounce rates signal low quality. Users feel deceived.

Missing Alt Text

html
1<!-- BAD --> 2<img src="product.jpg"> 3 4<!-- GOOD --> 5<img src="product.jpg" alt="Blue Nike Air Max running shoe, side view">

Why bad: Accessibility violation. Missed image search opportunity.

Blocking Crawlers Unintentionally

txt
1# Accidentally blocking everything 2User-agent: * 3Disallow: /

Why bad: Complete deindexing. Check robots.txt carefully.

Ignoring Mobile Not having responsive design or mobile-specific considerations. Why bad: Google uses mobile-first indexing. Most traffic is mobile.

Over-Optimization Adding structured data for content that doesn't exist. Why bad: Schema violations can result in penalties. Trust erosion.

Generic Auto-Generated Content

html
1<!-- BAD: Template without customization --> 2<meta name="description" content="Welcome to our website. We offer great products and services.">

Why bad: Provides no value. Won't rank. Won't get clicks.


Variation Guidance

IMPORTANT: SEO implementation should vary based on context.

Vary based on:

  • Industry: E-commerce needs Product schema; SaaS needs Software schema
  • Content type: Blog posts vs landing pages vs documentation
  • Audience: B2B vs B2C affects tone and keywords
  • Competition: Highly competitive niches need more sophisticated optimization
  • Framework: Use native patterns (Next.js metadata API vs manual tags)

Avoid converging on:

  • Same title format for all page types
  • Generic descriptions that could apply to any site
  • Identical structured data without page-specific content
  • One-size-fits-all sitemap configuration

Framework Quick Reference

Next.js (App Router)

typescript
1// app/page.tsx 2import { Metadata } from 'next' 3 4export const metadata: Metadata = { 5 title: 'Page Title | Brand', 6 description: 'Page description', 7 openGraph: { 8 title: 'Page Title', 9 description: 'Page description', 10 images: ['/og-image.png'], 11 }, 12}

Next.js (Pages Router)

typescript
1// pages/index.tsx 2import Head from 'next/head' 3 4export default function Page() { 5 return ( 6 <Head> 7 <title>Page Title | Brand</title> 8 <meta name="description" content="Page description" /> 9 </Head> 10 ) 11}

Astro

astro
1--- 2// src/pages/index.astro 3import Layout from '../layouts/Layout.astro'; 4--- 5<Layout 6 title="Page Title | Brand" 7 description="Page description" 8 ogImage="/og-image.png" 9/>

React (react-helmet)

jsx
1import { Helmet } from 'react-helmet'; 2 3function Page() { 4 return ( 5 <Helmet> 6 <title>Page Title | Brand</title> 7 <meta name="description" content="Page description" /> 8 </Helmet> 9 ); 10}

See references/framework-implementations.md for complete guides.


Scripts

analyze_seo.py

Analyzes a codebase for SEO issues and opportunities:

bash
1python scripts/analyze_seo.py <path-to-project>

Output:

  • Current SEO state (what's implemented)
  • Missing elements by priority
  • Page-by-page recommendations
  • Structured data opportunities

generate_sitemap.py

Generates sitemap.xml from project routes:

bash
1python scripts/generate_sitemap.py <path-to-project> --domain https://example.com

Remember

SEO is semantic communication, not algorithm manipulation.

The best SEO:

  • Accurately describes what content IS
  • Helps machines understand meaning through structured data
  • Prioritizes user value over keyword optimization
  • Uses framework-native patterns
  • Implements progressively based on page importance

Focus on making your content findable and understandable. The rankings follow from genuine value clearly communicated.

Claude is capable of comprehensive SEO analysis and implementation. These guidelines illuminate the path—they don't fence it.

FAQ & Installation Steps

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

? Frequently Asked Questions

What is seo-optimizer?

Perfect for Web Development Agents needing advanced SEO optimization and semantic communication capabilities. seo-optimizer is a skill that analyzes codebases and implements comprehensive SEO optimizations for clear semantic communication with machines.

How do I install seo-optimizer?

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

What are the use cases for seo-optimizer?

Key use cases include: Analyzing codebases for SEO optimization opportunities, Implementing semantic communication protocols for search engines and social platforms, Optimizing web application content for discoverability and indexing.

Which IDEs are compatible with seo-optimizer?

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-optimizer?

Requires access to web application codebase. Limited to search engines and social platforms that support semantic communication protocols.

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 chongdashu/cc-skills/seo-optimizer. 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-optimizer immediately in the current project.

Related Skills

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

View All

openclaw-release-maintainer

Logo of openclaw
openclaw

openclaw-release-maintainer is a specialized AI agent skill for automating release management workflows.

333.8k
0
Data

widget-generator

Logo of f
f

Generate customizable widget plugins for the prompts.chat feed system

149.6k
0
Design

flags

Logo of vercel
vercel

flags is a skill for managing feature flags in Next.js internals, enabling developers to efficiently configure and optimize their React applications.

138.4k
0
Browser

x-api

[ Featured ]
Logo of affaan-m
affaan-m

x-api is a skill that harnesses performance optimization for AI agents, enabling efficient interactions with Twitter and other platforms.

103.8k
0
Productivity