seo-discover

seo-discover is a skill for Claude Code from seoskillsai/seo-skills-ai. It costs 31 tokens per session (613 once invoked), scanned A, original, MIT.

A standard for preparing editorial websites for Google Discover, a personalized stream of news and articles, using large images, Media RSS feeds, and clear disclosure when AI helped produce content.

In plain words
What is it for?
Use it to configure robots metadata, signal large featured images, generate Media RSS enclosures, and disclose AI involvement in editorial bylines.
Why use it?
It brings together the page, image, feed, and byline requirements needed for content to be represented consistently in Discover and feed systems.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the seo-skills plugin — 27 skills, 2 hooks, 1 MCP server shipped together

Good fit Use it to configure robots metadata, signal large featured images, generate Media RSS enclosures, and disclose AI involvement in editorial bylines.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/seoskillsai/seo-skills-ai/seo-discover
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add seoskillsai/seo-skills-ai --skill seo-discover
Clone the repo
git clone --depth 1 https://github.com/seoskillsai/seo-skills-ai

Made for: Claude Code.

Or install seo-skills, the plugin that ships this one along with the rest of its 27 skills, 2 hooks, 1 MCP server.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for seo-discover

README.md
[![agentmods](https://agentmods.dev/badge/skills/seoskillsai/seo-skills-ai/seo-discover/github.svg)](https://agentmods.dev/skills/seoskillsai/seo-skills-ai/seo-discover)
Your own site
<a href="https://agentmods.dev/skills/seoskillsai/seo-skills-ai/seo-discover"><img src="https://agentmods.dev/badge/skills/seoskillsai/seo-skills-ai/seo-discover/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for seo-discover

Your own site · 80×15
<a href="https://agentmods.dev/skills/seoskillsai/seo-skills-ai/seo-discover"><img src="https://agentmods.dev/badge/skills/seoskillsai/seo-skills-ai/seo-discover.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 31 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 613 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00031 $0.00613
Opus 5 $0.00015 $0.00307
Sonnet 5 $0.00006 $0.00123
Haiku 4.5 $0.00003 $0.00061

Measured 12d ago against content hash d8de7a5e408a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

seo-discover scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/seo-discover/SKILL.md · 69 lines

How it starts

The opening of the file, as written. The whole thing — 69 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Google Discover, Media RSS & AI Disclosure Standard

This skill establishes the protocol for maximizing Google Discover traffic via high-resolution image signaling, Media RSS XML syndication, and transparent AI editorial disclosure bylines.


📸 1. Google Discover Technical Prerequisites

  1. Meta Robots Directive: Every page <head> must include:

    <meta name="robots" content="index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1" />
    

    max-image-preview:large enables Google Discover to display high-resolution 16:9 thumbnails, increasing click-through rates by up to 300%.

  2. Image Dimensions: Featured images must be at least 1200px wide with a 16:9 aspect ratio (e.g. 1200x675 or 1600x900).


📰 2. Media RSS Syndication Engine

Standard RSS feeds only deliver text. Google Discover and feed aggregators prioritize feeds with explicit Media RSS <media:content> enclosures.

<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" 
     xmlns:content="http://purl.org/rss/1.0/modules/content/"
     xmlns:media="http://search.yahoo.com/mrss/"
     xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Site Name — Verified Articles</title>
    <link>https://example.com/</link>
    <item>
      <title>Article Title</title>
      <link>https://example.com/article-slug/</link>
      <pubDate>Wed, 19 Aug 2026 00:00:00 GMT</pubDate>
      <media:content 
        url="https://example.com/images/feature.jpg" 
        medium="image" 
        type="image/jpeg" 
        width="1200" 
        height="675">
        <media:title>Feature Image</media:title>
        <media:credit>Editorial Staff</media:credit>
      </media:content>
    </item>
  </channel>
</rss>

🛡️ 3. First-Exposure AI Editorial Disclosure

Every article features a transparent editorial disclosure directly beneath the H1:

  • Human Verification: Verified by named subject-matter experts.
  • AI Assistance: Discloses algorithmic synthesis under human oversight.
  • Zero Hallucination Guarantee: Facts and citations cross-checked against primary sources.

Read the full file on GitHub · 69 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 69 lines · 31 tokens per session scan A d8de7a5e408a

Subscribe to this mod's changes

seo-discover is a skill published in the GitHub repository seoskillsai/seo-skills-ai (15 stars, last pushed 2d ago), licensed MIT. It adds 31 tokens to every session and 613 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

Website Audit

Comprehensive website auditing skill using Lighthouse, PageSpeed Insights, and web performance APIs to audit performance, accessibility, SEO, best practices, and security.

PramodDutta/qaskills · 33 tokens

github

When the user wants to use GitHub for SEO, parasite SEO, GEO, open source marketing, README optimization, or curated Awesome lists. Also use when the user mentions "GitHub," "GitHub SEO," "GitHub parasite SEO," "GitHub GEO," "awesome list," "GitHub README," "profile README," "pinned repositories," "Trending,"…

kostja94/marketing-skills · 165 tokens

grokipedia-recommendations

When the user wants to add recommendations, links, or content to Grokipedia. Also use when the user mentions "Grokipedia," "GEO wiki," "AI encyclopedia," "suggest Grokipedia article," "Grokipedia citation," "Grokipedia listing," "AI search citation," "GEO visibility," or "Grokipedia optimization." For multi-platform…

kostja94/marketing-skills · 110 tokens

schema-markup

When the user wants to add or optimize structured data (Schema.org, JSON-LD). Also use when the user mentions "schema," "structured data," "JSON-LD," "rich results," "rich snippets," "Google rich snippets," "featured snippet schema," "add schema to page," "missing structured data," "schema validation error," "Schema…

kostja94/marketing-skills · 181 tokens

google-search-console

When the user wants to analyze Google Search Console data, use the GSC API, or interpret search performance. Also use when the user mentions "GSC," "Search Console," "indexing report," "Core Web Vitals," "Enhancements," "Insights report," "search performance," "search queries," "search performance report," "URL…

kostja94/marketing-skills · 137 tokens

brand-visual-generator

When the user wants to define, audit, or apply visual identity (typography, colors, spacing, design tokens, frontend aesthetics). Also use when the user mentions "brand style guide," "visual identity," "design system," "typography," "color palette," "brand guidelines," "AI brand aesthetics," "brand colors," "font…

kostja94/marketing-skills · 124 tokens