wp-robin

wp-robin is a skill for Claude Code from yojahny55/claude-wp-builder. It costs 109 tokens per session (853 once invoked), scanned A, original, MIT.

A repair tool for Robin Image Optimizer, a WordPress plugin that converts website images into smaller WebP files.

In plain words
What is it for?
Use it to install or configure the plugin, generate missing WebP files, include all thumbnail sizes, and synchronize the optimization queue.
Why use it?
It fixes stuck conversion queues, missing converted files, incorrect database records, and missing plugin settings.

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 install or configure the plugin, generate missing WebP files, include all thumbnail sizes, and synchronize the optimization queue.

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

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/yojahny55/claude-wp-builder/wp-robin"><img src="https://agentmods.dev/badge/skills/yojahny55/claude-wp-builder/wp-robin.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 109 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 853 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.00109 $0.00853
Opus 5 $0.00055 $0.00426
Sonnet 5 $0.00022 $0.00171
Haiku 4.5 $0.00011 $0.00085

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

Security

Grade A, and why

wp-robin 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.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/robin-fix.sh), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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/wp-robin/SKILL.md · 77 lines

How it starts

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

wp-robin: Install, configure, and fix Robin Image Optimizer

What this skill does

  1. Installs Robin Image Optimizer if missing (via wp-cli or direct download)
  2. Configures the plugin with proven settings — WebP enabled, AVIF off, all thumbnails included, backup enabled, auto-optimize on upload
  3. Detects all registered thumbnail sizes from the theme/plugins and adds them to the optimization list
  4. Fixes stuck items — webp queue items frozen in processing status
  5. Registers attachments for optimization if the queue is empty
  6. Generates missing .webp files locally using ImageMagick, cwebp, or PHP GD
  7. Syncs the database — inserts correct wp_rio_process_queue records with proper sha256 hashes and file sizes
  8. Handles hash collisions from duplicate posts sharing the same file (uses $url|webp|$post_id fallback)

How to use

Run the bundled script. It auto-detects the WordPress root (walks up from current directory), reads DB credentials from wp-config.php, and discovers the site URL and uploads directory.

bash <path-to-skill>/scripts/robin-fix.sh

To target a specific WordPress install:

WP_ROOT=/srv/http/mysite bash <path-to-skill>/scripts/robin-fix.sh

Settings applied

The script installs these reference settings (optimized for a production site):

Setting Value
WebP conversion On
AVIF conversion Off
Auto-optimize on upload On
Backup originals On
Error log On
Optimization level Normal (lossy)
Thumbnails included All registered sizes (auto-detected from theme + plugins)

Requirements

  • bash and standard Unix tools (grep, sed, stat, sha256sum)
  • mariadb or mysql client (for DB queries)
  • One of: ImageMagick (convert), cwebp, or PHP GD (for webp generation)
  • wp-cli (optional — for installing/activating the plugin)

When wp-cli is not available

If wp-cli isn't found and the plugin isn't installed, the script falls back to downloading the plugin zip from WordPress.org and extracting it. Activation must be done manually (or install wp-cli).

Read the full file on GitHub · 77 lines

Files

What ships with it

1 file 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. 6d ago Changed · +1 lines d9cd037de943
  2. 9d ago First seen · 76 lines · 109 tokens per session scan A d85b665f8823

Subscribe to this mod's changes

wp-robin is a skill published in the GitHub repository yojahny55/claude-wp-builder (6 stars, last pushed yesterday), licensed MIT. It adds 109 tokens to every session and 853 once invoked, about $0.0005 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 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