seo-on-page-metadata

SEO On-Page: Metadata (Other Meta Tags)

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "seo-on-page-metadata" with this command: npx skills add kostja94/marketing-skills/kostja94-marketing-skills-seo-on-page-metadata

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:

  • Multi-language: zh, en, x-default if applicable

  • Indexing: Full index, noindex for specific pages

  • 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

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

google-search-console

No summary provided by upstream source.

Repository SourceNeeds Review
General

tiktok-captions

No summary provided by upstream source.

Repository SourceNeeds Review
General

email-marketing

No summary provided by upstream source.

Repository SourceNeeds Review
General

branding

No summary provided by upstream source.

Repository SourceNeeds Review