Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
kostja94 avatar

Seo On Page Metadata

  • 10 installs
  • 852 repo stars
  • Updated June 9, 2026
  • kostja94/marketing-skills

Helps with marketing & seo tasks.

About

seo-on-page-metadata is a Claude Code skill for marketing & seo. It helps solo builders move faster with AI-assisted development.

  • seo-on-page-metadata
  • Marketing & SEO
  • AI-coding skill

Seo On Page Metadata by the numbers

  • 10 all-time installs (skills.sh)
  • Ranked #1,523 of 1,879 Marketing & SEO skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/kostja94/marketing-skills --skill seo-on-page-metadata

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs10
repo stars852
Last updatedJune 9, 2026
Repositorykostja94/marketing-skills

What it does

Helps with marketing & seo tasks.

Files

SKILL.mdMarkdownGitHub ↗

SEO On-Page: Metadata (Other Meta Tags)

Guides optimization of meta tags beyond title, description, Open Graph, and Twitter Cards. Covers hreflang, robots, viewport, charset, and metadata completeness.

When invoking: On first use, if helpful, open with 1–2 sentences on what this skill covers and why it matters, then provide the main output. On subsequent use or when the user asks to skip, go directly to the main output.

Scope (On-Page SEO)

  • Hreflang: Language/region targeting for multilingual sites
  • Meta robots: index/noindex, follow/nofollow (page-level)
  • Viewport: Mobile responsiveness
  • Charset: Character encoding
  • Metadata completeness: All pages have title + meta description (see seo-on-page-title, seo-on-page-description)

Initial Assessment

Check for product marketing context first: If .claude/product-marketing-context.md or .cursor/product-marketing-context.md exists, read it for language/locale and indexing goals.

Identify: 1. Multi-language: zh, en, x-default if applicable 2. Indexing: Full index, noindex for specific pages 3. Tech stack: Next.js, HTML, etc.

hreflang (Multi-language)

  • Use alternates.languages in Next.js metadata
  • Include x-default for default language
  • Each language version should reference all others
  • References: Google hreflang

Next.js (App Router)

export const metadata = {
  alternates: {
    languages: {
      'en-US': '/en/page',
      'zh-CN': '/zh/page',
      'x-default': '/en/page',
    },
  },
};

HTML (generic)

<link rel="alternate" hreflang="en" href="https://example.com/en/page" />
<link rel="alternate" hreflang="zh" href="https://example.com/zh/page" />
<link rel="alternate" hreflang="x-default" href="https://example.com/en/page" />

Meta Robots (Page-level)

For pages that should not be indexed:

<meta name="robots" content="noindex, nofollow">

Or in Next.js: metadata.robots = { index: false }. See seo-technical-indexing for full indexing control.

Viewport

<meta name="viewport" content="width=device-width, initial-scale=1">

Required for mobile-friendly pages; affects Core Web Vitals and mobile search.

Charset

<meta charset="UTF-8">

Place in <head>; first child of <head> recommended.

Output Format

  • hreflang setup if multi-language
  • Meta robots if noindex needed
  • Viewport / charset if missing

Related Skills

  • seo-on-page-title: Title tag
  • seo-on-page-description: Meta description
  • seo-on-page-open-graph: Open Graph for social sharing
  • seo-on-page-twitter-cards: Twitter Cards for X previews
  • seo-technical-canonical: Canonical + hreflang for multi-language
  • seo-technical-indexing: noindex, Search Console
  • seo-on-page-schema: Structured data complements metadata
  • seo-on-page-heading: H1 should align with title
  • strategies-localization: Hreflang implementation

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.