seo

seo is a skill for Claude Code, Codex from LuuOW/meridian-mcp. It costs 42 tokens per session (1,717 once invoked), scanned A, original, MIT.

A guide to improving how websites appear in search engines and in AI-generated answers. It covers finding useful search terms, checking technical site issues, and structuring content and metadata.

In plain words
What is it for?
Use it to research keywords, audit website search settings, plan content, and add structured information such as FAQ markup.
Why use it?
It helps identify why pages may be hard for search systems or answer tools to understand and how content can better match real questions.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to research keywords, audit website search settings, plan content, and add structured information such as FAQ markup.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/luuow/meridian-mcp/seo
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 LuuOW/meridian-mcp --skill seo
Clone the repo
git clone --depth 1 https://github.com/LuuOW/meridian-mcp

Made for: Claude Code, Codex.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/luuow/meridian-mcp/seo/github.svg)](https://agentmods.dev/skills/luuow/meridian-mcp/seo)
Your own site
<a href="https://agentmods.dev/skills/luuow/meridian-mcp/seo"><img src="https://agentmods.dev/badge/skills/luuow/meridian-mcp/seo/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

Your own site · 80×15
<a href="https://agentmods.dev/skills/luuow/meridian-mcp/seo"><img src="https://agentmods.dev/badge/skills/luuow/meridian-mcp/seo.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 42 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,717 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.
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.00042 $0.01717
Opus 5 $0.00021 $0.00859
Sonnet 5 $0.00008 $0.00343
Haiku 4.5 $0.00004 $0.00172

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

Security

Grade A, and why

seo 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 6d 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/SKILL.md · 181 lines

How it starts

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

seo

Authoritative reference for search engine optimisation across traditional SERP, Generative Engine Optimisation (GEO), and Answer Engine Optimisation (AEO). Covers research, technical audits, and the full content-to-ranking pipeline.

1) Keyword research pipeline

# Seed → cluster → prioritise
def keyword_pipeline(seed: str, domain: str) -> list[dict]:
    # 1. Expand seed via SERP "People Also Ask" + autocomplete
    # 2. Cluster by semantic similarity (embeddings or manual)
    # 3. Score each cluster: volume × (1 - difficulty) × relevance
    pass

# Scoring formula
def priority_score(volume: int, difficulty: float, relevance: float) -> float:
    return volume * (1 - difficulty) * relevance

# Target: difficulty < 0.40, relevance > 0.70, volume > 500/mo

2) GEO — Generative Engine Optimisation

GEO targets AI-generated answers (ChatGPT, Perplexity, Gemini) rather than blue links.

# GEO citation requirements (per article)
- Cite 3+ primary sources (academic, government, or high-DA publications)
- Include a structured "Key Takeaways" section at H2 level
- Add FAQ schema with 5+ Q&A pairs that mirror natural language queries
- Use direct answer format: lead with the answer, then explain
- Entity density: 2-4 named entities per 200 words
- Include a data table or comparison table — AI engines frequently quote tables
# Detect citation gaps vs. top-3 SERP competitors
async def find_citation_gaps(slug: str, domain: str) -> list[str]:
    competitor_urls = await get_top3_serp(slug)
    their_citations = await extract_citations(competitor_urls)
    our_citations   = await extract_citations([f"/{slug}"])
    return [c for c in their_citations if c not in our_citations]

3) AEO — Answer Engine Optimisation

# AEO structural requirements
- H1 must contain the primary keyword verbatim
- First paragraph answers the query in ≤ 50 words (featured snippet target)
- Use question-format H2s: "What is X?", "How does X work?"
- Structured data: Article + FAQPage + BreadcrumbList schemas
- Reading level: Flesch-Kincaid grade 8-10 (accessible to AI parsers)

Read the full file on GitHub · 181 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. 6d ago First seen · 181 lines · 42 tokens per session scan A 78d68b029711

Subscribe to this mod's changes

seo is a skill published in the GitHub repository LuuOW/meridian-mcp (0 stars, last pushed today), licensed MIT. It adds 42 tokens to every session and 1,717 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-09-03.

Related

Other skills, from other repositories

build-backlinks

Finds free backlink and brand mention opportunities across Hacker News, Quora, GitHub, directories, and niche communities. Outputs a prioritized action plan with draft responses ready to post. Use after brand research and content creation to amplify reach and AI engine citations.

onvoyage-ai/gtm-engineer-skills · 55 tokens

geo-content-research

Researches what prompts people ask AI engines (ChatGPT, Gemini, Perplexity, Claude) about a product category and produces a prompts.csv artifact — a prioritized, strictly-schema'd list of the queries where the brand should be cited. Feeds the monitor workflow.

onvoyage-ai/gtm-engineer-skills · 59 tokens

improve-aeo-geo

Audits a website codebase and makes code changes so AI engines (ChatGPT, Claude, Perplexity, Google AI Overviews) can better discover, parse, quote, and cite the site. Covers structured data, content structure, technical signals, and freshness.

onvoyage-ai/gtm-engineer-skills · 61 tokens

create-geo-charts

Creates data visualizations (charts, graphs, tables) optimized for AI engine parsing and citation. Produces inline SVG/HTML with text summaries, data tables, and JSON-LD so AI engines can quote the data.

onvoyage-ai/gtm-engineer-skills · 50 tokens

research-keywords

Finds high-value SEO and GEO keywords using web search, AI analysis, and optionally paid tools like Ahrefs or Semrush. Produces a validated keywords.csv file with a fixed schema for downstream pipeline consumption.

onvoyage-ai/gtm-engineer-skills · 46 tokens

write-seo-geo-content

Writes product-led content pages optimized for both search engines and AI engine citations. Produces markdown files with frontmatter, following page-type frameworks (comparison, guide, use case, learn, trust) with verified sources and no fabricated data.

onvoyage-ai/gtm-engineer-skills · 54 tokens