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.
git clone --depth 1 https://github.com/yojahny55/claude-wp-builderWrote 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/agents/yojahny55/claude-wp-builder/wp-audit-rankmath)<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.
<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>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.00035 | $0.05298 |
| Opus 5 | $0.00017 | $0.02649 |
| Sonnet 5 | $0.00007 | $0.01060 |
| Haiku 4.5 | $0.00003 | $0.00530 |
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.
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:
-
.claude/CLAUDE.md— Extract:- The function prefix (e.g.,
kairo_,acme_) - The theme slug
- The industry (determines Organization vs LocalBusiness schema)
- The languages configured
- The function prefix (e.g.,
-
.wp-create.json— Extract:- The WP-CLI wrapper command (
wp_cli.wrapper) — assign to$WP
- The WP-CLI wrapper command (
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.
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 Changed · +45 lines 01e047aa73ac
- 9d ago First seen · 525 lines · 35 tokens per session scan A 8641b5010aea
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.
Other agents, from other repositories
html-expert
Expert in HTML structure, semantics, and best practices for building clean, accessible, and optimized web pages.
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…
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…
design-auditor
Master audit orchestrator. Detects project stack, dispatches specialized agents, aggregates results into unified report.
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…
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…