wp-audit-rankmath

wp-audit-rankmath is an agent for Claude Code from yojahny55/claude-wp-builder. It costs 35 tokens per session (5,298 once invoked), scanned A, original, MIT.

A Rank Math SEO setup tool for WordPress. Rank Math is a plugin for managing search-engine settings; this tool configures its modules, metadata, structured data, breadcrumbs, robots.txt, and llms.txt.

In plain words
What is it for?
Use it to install and configure Rank Math, add SEO data to pages, create crawler instruction files, and add breadcrumb support to the theme.
Why use it?
It removes repetitive manual setup and helps keep SEO information consistent across the site.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: model in frontmatter; mentions CLAUDE.md.

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

Good fit Use it to install and configure Rank Math, add SEO data to pages, create crawler instruction files, and add breadcrumb support to the theme.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/yojahny55/claude-wp-builder/wp-audit-rankmath
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.

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-rankmath

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

Your own site · 80×15
<a href="https://agentmods.dev/agents/yojahny55/claude-wp-builder/wp-audit-rankmath"><img src="https://agentmods.dev/badge/agents/yojahny55/claude-wp-builder/wp-audit-rankmath.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 35 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 5,298 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.00035 $0.05298
Opus 5 $0.00017 $0.02649
Sonnet 5 $0.00007 $0.01060
Haiku 4.5 $0.00003 $0.00530

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

Security

Grade A, and why

wp-audit-rankmath 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.

agents/wp-audit-rankmath.md · 570 lines

How it starts

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

Rank Math SEO Configurator

You install and configure Rank Math SEO, seed SEO data for all pages, generate llms.txt and robots.txt, and add breadcrumbs to the theme. Reference the wp-audit-seo-standards skill for all option keys and patterns. All WordPress interaction via WP-CLI.

First Action (MANDATORY)

Before running ANY configuration commands, read the following project files:

  1. .claude/CLAUDE.md — Extract:

    • The function prefix (e.g., kairo_, acme_)
    • The theme slug
    • The industry (determines Organization vs LocalBusiness schema)
    • The languages configured
  2. .wp-create.json — Extract:

    • The WP-CLI wrapper command (wp_cli.wrapper) — assign to $WP

Step 1: Install Rank Math

$WP plugin install seo-by-rank-math --activate

Verify installation:

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

Step 1.5: Set the two flags the wizard would have set — MANDATORY

Configuring Rank Math from WP-CLI instead of its setup wizard leaves two options unset, and without them everything below this line is written to a database nobody reads:

Option What breaks without it
rank_math_registration_skip Registration::$invalid stays true and Rank Math loads no frontend and no sitemap at all — no canonical, no meta, no JSON-LD, and /sitemap_index.xml 404s. This, not a sitemap setting, is the usual cause of that 404.
rank_math_is_configured The wizard-completed flag. Without it the admin keeps redirecting to the wizard and some modules stay dormant.
$WP eval "
update_option('rank_math_registration_skip', 1);
update_option('rank_math_is_configured', 1);
echo 'flags set';
"

Both are easy to lose: a database reset or a re-import drops them and the SEO layer disappears with no error anywhere. Record them in .claude/CLAUDE.md, and put the whole configuration in a re-runnable seed file (inc/seed/rankmath.php) rather than leaving it as one-off CLI calls.

Read the full file on GitHub · 570 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 Changed · +45 lines 01e047aa73ac
  2. 9d ago First seen · 525 lines · 35 tokens per session scan A 8641b5010aea

Subscribe to this mod's changes

wp-audit-rankmath is an agent published in the GitHub repository yojahny55/claude-wp-builder (6 stars, last pushed yesterday), licensed MIT. It adds 35 tokens to every session and 5,298 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-31.

Related

Other agents, from other repositories

html-expert

Expert in HTML structure, semantics, and best practices for building clean, accessible, and optimized web pages.

andisab/swe-marketplace · 25 tokens

analytics-agent

Turns channel and video data into decisions — runs the diagnostic matrix over impressions, CTR, AVD and traffic source, reads retention curves shape by shape and maps each feature to a script-level cause, compares against the channel's own baseline rather than global averages, and returns a prioritized list of changes…

PedroMeloOfficial/Youtube-Agent-Matrix · 86 tokens

thumbnail-agent

Designs three deliberately different thumbnail concepts per video — Safe, Curiosity and Wildcard — each shipping a ready-to-paste image-generation prompt, overlay text, paired title, palette and a mobile legibility check. Use when a video needs packaging, when CTR is underperforming, or when an existing video is being…

PedroMeloOfficial/Youtube-Agent-Matrix · 84 tokens

design-auditor

Master audit orchestrator. Detects project stack, dispatches specialized agents, aggregates results into unified report.

Aboudjem/ui-ux-suite · 25 tokens

channel-auditor

Produces a scored channel health report across packaging and SEO, performance, content strategy and monetization, by fanning out into four parallel audit lenses and synthesizing them into an overall score, the single highest-leverage fix, and a prioritized action list. Use when a channel is underperforming, before a…

PedroMeloOfficial/Youtube-Agent-Matrix · 81 tokens

competitor-analyst

Maps the competitive landscape around a channel and returns a ranked list of exploitable openings, by fanning out into four parallel lenses covering outlier videos, keyword and topic gaps, format and packaging conventions, and audience demand mined from competitor comments. Use when the creator asks who they are…

PedroMeloOfficial/Youtube-Agent-Matrix · 81 tokens