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.
npx skills add LuuOW/meridian-mcp --skill seogit clone --depth 1 https://github.com/LuuOW/meridian-mcpWrote 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.
[](https://agentmods.dev/skills/luuow/meridian-mcp/seo)<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.
<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>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.
| Model | Per session | Once 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 |
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.
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)
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.
- 6d ago First seen · 181 lines · 42 tokens per session scan A 78d68b029711
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.
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.
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.
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.
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.
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.
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.