seo

seo is a skill for Claude Code, Codex from roedyrustam/vibes-plug. It costs 54 tokens per session (2,597 once invoked), scanned A, original, MIT.

A search-engine-optimization audit guide covering how pages are found, understood, and displayed by search engines, including structured data and sitemaps.

In plain words
What is it for?
Use it to review page metadata, structured data, sitemaps, robots.txt, Core Web Vitals, and content signals related to search quality.
Why use it?
It helps identify technical and content problems that can reduce visibility in traditional and AI-powered search.

Skill for Claude CodeCodex

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

Good fit Use it to review page metadata, structured data, sitemaps, robots.txt, Core Web Vitals, and content signals related to search quality.

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

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/roedyrustam/vibes-plug/seo/github.svg)](https://agentmods.dev/skills/roedyrustam/vibes-plug/seo)
Your own site
<a href="https://agentmods.dev/skills/roedyrustam/vibes-plug/seo"><img src="https://agentmods.dev/badge/skills/roedyrustam/vibes-plug/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/roedyrustam/vibes-plug/seo"><img src="https://agentmods.dev/badge/skills/roedyrustam/vibes-plug/seo.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 54 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,597 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.00054 $0.02597
Opus 5 $0.00027 $0.01299
Sonnet 5 $0.00011 $0.00519
Haiku 4.5 $0.00005 $0.00260

Measured today against content hash fcdbd8044787, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, 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 today.

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 · 260 lines

How it starts

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

SEO Expert (2026 — AI Mode & Core Web Vitals Edition)

English | Bahasa Indonesia


English

Orchestration & Integration

Connects and orchestrates with relevant domain skills like brainstorming, zero-to-prod-orchestrator, and project-context-mapper to ensure cohesive execution.

Description

Comprehensive SEO audit covering technical SEO, on-page optimization, structured data, sitemaps, Core Web Vitals, E-E-A-T signals, and Generative Engine Optimization (GEO) for AI-powered search (Google AI Mode, ChatGPT Search, Perplexity).

Trigger Conditions

  • Running a full SEO audit on an existing web application.
  • Optimizing technical SEO for a new Next.js / Astro site.
  • Adding structured data (JSON-LD) for rich results and AI citation.
  • Optimizing Core Web Vitals (LCP, INP, CLS).
  • Preparing a site for Google AI Mode and ChatGPT Search indexing.
  • Setting up a sitemap and robots.txt.

2026 SEO Landscape Changes

2024 (Old) 2026 (Current)
AI Overviews (SGE) Google AI Mode — integrated AI answers
FID metric (deprecated) INP (Interaction to Next Paint)
Keyword density focus Topical authority + E-E-A-T
Backlinks only Citations in AI responses
robots.txt only robots.txt + /llms.txt

Technical SEO Checklist

Core Web Vitals (2026 Targets)
LCP (Largest Contentful Paint) < 2.5s
INP (Interaction to Next Paint) < 200ms   ← replaced FID
CLS (Cumulative Layout Shift)  < 0.1
TTFB (Time to First Byte)      < 600ms

INP Optimization (the new critical metric):

// INP is degraded by long tasks blocking the main thread
// Solution: Use React's useTransition to defer non-critical updates
import { useTransition } from 'react';

function SearchInput() {
  const [isPending, startTransition] = useTransition();

  const handleChange = (e: React.ChangeEvent<HTMLInputElement>) => {
    startTransition(() => {
      // Defer the expensive filtering to not block INP
      setFilteredResults(filterData(e.target.value));
    });
  };
  return <input onChange={handleChange} />;
}

Read the full file on GitHub · 260 lines

Files

What ships with it

4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. today Changed fcdbd8044787
  2. 8d ago First seen · 260 lines · 54 tokens per session scan A 5633fc7cc426

Subscribe to this mod's changes

seo is a skill published in the GitHub repository roedyrustam/vibes-plug (53 stars, last pushed today), licensed MIT. It adds 54 tokens to every session and 2,597 once invoked, about $0.0003 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

update-dependencies

Upgrade project dependencies with breaking change research for major version updates. Use when the user asks to "update dependencies", "upgrade packages", "upgrade dependencies", "update deps", "upgrade deps", "update npm deps", "update Swift packages", "cargo update", "go get updates", "bundle update", or "pip…

tobihagemann/turbo · 70 tokens

review-plan

Review a plan by running internal reviews and a peer review in parallel and returning combined findings. Use when the user asks to "review my plan", "check my plan", "critique my plan", or wants feedback on a plan.

tobihagemann/turbo · 50 tokens

finalize

Run the post-implementation quality assurance workflow including tests, code polishing, review, and commit. Use when the user asks to "finalize implementation", "finalize changes", "wrap up implementation", "finish up", "ready to commit", or "run QA workflow".

tobihagemann/turbo · 58 tokens

ai-cold-outreach

When the user wants to build an AI-powered outreach system, write cold emails, improve deliverability, or scale personalized outreach. Also use when the user mentions 'cold email,' 'cold outreach,' 'outreach automation,' 'Instantly,' 'Smartlead,' 'Clay,' 'email sequences,' 'deliverability,' 'personalization at scale,'…

tech-leads-club/agent-skills · 114 tokens

the-judge

Evidence-first pull request judge that reviews a PR and posts one consolidated GitHub review with inline comments via the gh CLI. Runs the repo's own deterministic checks first, researches current official docs before any claim about external libraries or APIs, then reviews correctness, security, structural quality…

tech-leads-club/agent-skills · 192 tokens

tlc-plan

Turns decided work — a PRD, design doc, RFC, or thread — into tasks a builder can act on without guessing. Finds slices that each prove something, grounds them in the code, and writes intent, observable criteria with concrete values, the boundary, what the change disturbs, and only the decisions that are hard to…

tech-leads-club/agent-skills · 180 tokens