wp-audit-seo-standards

wp-audit-seo-standards is a skill for Claude Code from yojahny55/claude-wp-builder. It costs 29 tokens per session (8,181 once invoked), scanned A, original, MIT.

A reference for configuring Rank Math, a WordPress SEO plugin, including structured-data templates, metadata patterns, and setup commands. Structured data is machine-readable information that helps search engines understand a page.

In plain words
What is it for?
Use it to configure Rank Math modules, seed SEO settings, and add JSON-LD schema to WordPress sites. It also helps set up local-business SEO when that applies.
Why use it?
It provides consistent SEO setup instructions and checks whether Rank Math is active before its commands are used. It also covers features such as sitemaps, breadcrumbs, redirects, and 404 monitoring.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter.

Part of the claude-wp-builder plugin — 15 skills, 30 commands, 15 agents shipped together

Good fit Use it to configure Rank Math modules, seed SEO settings, and add JSON-LD schema to WordPress sites. It also helps set up local-business SEO when that applies.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/yojahny55/claude-wp-builder/wp-audit-seo-standards
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 yojahny55/claude-wp-builder --skill wp-audit-seo-standards
Clone the repo
git clone --depth 1 https://github.com/yojahny55/claude-wp-builder

Made for: Claude Code.

Or install claude-wp-builder, the plugin that ships this one along with the rest of its 15 skills, 30 commands, 15 agents.

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 wp-audit-seo-standards

README.md
[![agentmods](https://agentmods.dev/badge/skills/yojahny55/claude-wp-builder/wp-audit-seo-standards/github.svg)](https://agentmods.dev/skills/yojahny55/claude-wp-builder/wp-audit-seo-standards)
Your own site
<a href="https://agentmods.dev/skills/yojahny55/claude-wp-builder/wp-audit-seo-standards"><img src="https://agentmods.dev/badge/skills/yojahny55/claude-wp-builder/wp-audit-seo-standards/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 wp-audit-seo-standards

Your own site · 80×15
<a href="https://agentmods.dev/skills/yojahny55/claude-wp-builder/wp-audit-seo-standards"><img src="https://agentmods.dev/badge/skills/yojahny55/claude-wp-builder/wp-audit-seo-standards.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 29 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 8,181 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00029 $0.08181
Opus 5 $0.00015 $0.04091
Sonnet 5 $0.00006 $0.01636
Haiku 4.5 $0.00003 $0.00818

Measured yesterday against content hash 9b8fd6e15005, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

wp-audit-seo-standards scanned grade A with 1 finding 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 yesterday.

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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

If Rank Math (or Yoast) is active and configured, do **not** also `echo` a hardcoded `<meta name="description">` from the theme `wp_head`. Two tags = a duplicate-description warning, and the plugin's dynamic/templated va
skills/wp-audit-seo-standards/SKILL.md · 949 lines

How it starts

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

SEO Standards — Rank Math Reference

This skill defines the SEO configuration standards, schema templates, and seeding commands for WordPress sites using Rank Math SEO as the primary SEO plugin.


1. Rank Math Plugin Detection

// Plugin slug: seo-by-rank-math
// Detection: defined('RANK_MATH_VERSION') or class_exists('RankMath')
// WP-CLI install: $WP plugin install seo-by-rank-math --activate

Before running any Rank Math commands, verify the plugin is active:

$WP eval "
if (defined('RANK_MATH_VERSION')) {
    echo 'Rank Math v' . RANK_MATH_VERSION . ' is active.';
} else {
    echo 'Rank Math is NOT active.';
}
"

2. Rank Math Modules Reference

Module Slug Recommended Notes
SEO Analysis seo-analysis Yes On-page content scoring
Sitemap sitemap Yes XML sitemap generation
Rich Snippets rich-snippet Yes JSON-LD structured data
Breadcrumbs breadcrumbs Yes Breadcrumb trail + schema
404 Monitor 404-monitor Yes Track broken links
Redirections redirections Yes 301/302 redirect manager
Local SEO local-seo Yes (business sites) LocalBusiness schema
Image SEO image-seo Yes Auto alt/title attributes
Instant Indexing instant-indexing Yes IndexNow / Bing
Link Counter link-counter Yes Internal/external link audit

Enable All Recommended Modules

$WP eval "
\$modules = get_option('rank_math_modules', []);
\$enable = ['seo-analysis','sitemap','rich-snippet','breadcrumbs','404-monitor','redirections','local-seo','image-seo','instant-indexing','link-counter'];
foreach (\$enable as \$mod) { if (!in_array(\$mod, \$modules)) { \$modules[] = \$mod; } }
update_option('rank_math_modules', \$modules);
echo 'Enabled modules: ' . implode(', ', \$modules);
"

3. Rank Math Option Keys

Option Purpose
rank_math_modules Array of active module slugs
rank-math-options-general Breadcrumbs, links, image SEO, strip category base
rank-math-options-titles Title templates, schema type, social profiles, noindex rules
rank-math-options-sitemap Sitemap inclusions, ping settings
rank-math-options-instant-indexing IndexNow configuration

Read the full file on GitHub · 949 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. yesterday Changed · +131 lines 9b8fd6e15005
  2. 8d ago Changed · +3 lines b49e3aa635b8
  3. 11d ago First seen · 815 lines · 29 tokens per session scan A 865c5e842d2f

Subscribe to this mod's changes

wp-audit-seo-standards is a skill published in the GitHub repository yojahny55/claude-wp-builder (6 stars, last pushed today), licensed MIT. It adds 29 tokens to every session and 8,181 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

scroll-craft

Build premium scroll-driven landing pages for service, product, food, and drink brands. Plan the visitor journey, page grammar, emotional peak, and bespoke signature move. Create dimensional heroes with independent visual planes, restrained motion, and separate mobile composition. Use supplied photos and footage or…

nateherkai/scroll-craft · 177 tokens

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

a11y-audit

Dedicated WCAG 2.2 AA/AAA accessibility audit across 10 dimensions (A1-A10) covering semantic HTML, keyboard navigation, ARIA patterns, color contrast, forms, images/media, responsive/zoom, motion/animation, reading/content, and legal compliance. Goes far beyond surface-level design-review checks with deep…

greglas75/zuvo · 147 tokens

design-audit

Full project design audit that orchestrates all agents, scores across 12 dimensions, and generates a prioritized action plan. Use when the user asks to audit their design, run a design review or UX audit, review their UI, or asks how their design looks.

Aboudjem/ui-ux-suite · 56 tokens

goshipit

Pre-launch codebase audit skill. Use this whenever someone is about to ship, deploy, launch, push to main/prod, or merge a release - even without "goshipit" explicitly. Trigger on: "is my app ready?", "can I deploy now?", "pre-deploy check", "review before launch", "is this production-ready?", "check my codebase"…

Capta1nRaj/goshipit · 222 tokens

design-score

Quick design score card covering 12 dimensions with the top 5 improvements, in under 2 minutes. Use when the user asks for a design score, to score their design, to rate their UI, or for a quick audit.

Aboudjem/ui-ux-suite · 50 tokens