wp-yolo

wp-yolo is a command for Claude Code from yojahny55/claude-wp-builder. It costs 20 tokens per session (10,295 once invoked), scanned A, original, MIT.

A one-pass workflow that turns a complete, multi-page HTML demo into a WordPress theme. WordPress is a system for managing website content and themes control how that content looks.

In plain words
What is it for?
Use it after creating and initializing a project to normalize the demo, build its pages, add the content, finish the theme, and report the results.
Why use it?
It coordinates the existing conversion steps so a full demo can be processed in dependency order with either checkpoints or hands-off mode.

Command for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions CLAUDE.md.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

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

Good fit Use it after creating and initializing a project to normalize the demo, build its pages, add the content, finish the theme, and report the results.

Compare 6 commands from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add yojahny55/claude-wp-builder
Claude Code
/plugin install 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-yolo

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

Your own site · 80×15
<a href="https://agentmods.dev/commands/yojahny55/claude-wp-builder/wp-yolo"><img src="https://agentmods.dev/badge/commands/yojahny55/claude-wp-builder/wp-yolo.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 20 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 10,295 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.00020 $0.10295
Opus 5 $0.00010 $0.05147
Sonnet 5 $0.00004 $0.02059
Haiku 4.5 $0.00002 $0.01030

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

Security

Grade A, and why

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

commands/wp-yolo.md · 634 lines

How it starts

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

WP YOLO — Full-Site Demo → WordPress Theme

Convert a complete multi-page HTML demo into a working theme in one orchestrated pass, reusing the plugin's existing build pipeline end to end. Run this AFTER /wp-create + /wp-init have scaffolded the project. This command does not reimplement any builder — it dispatches the wp-normalize agent once, then drives the existing commands/agents in dependency order.

Step 1: Parse Arguments & Gate

Parse $ARGUMENTS:

  • First non-flag word = path to the demo folder (required). Error and exit if missing, or if the path is not a directory:
    Error: A demo folder is required.
    Usage: /wp-yolo <path-to-demo-folder> [--yolo] [--careful] [--force]
    
  • --yolo = no checkpoint at all (ingest → build → seed → finalize → report, hands-off).
  • --careful = checkpoint after normalization AND a per-page confirm before each inner page's build in Phase 2.
  • default (neither flag) = a single checkpoint after normalization, then hands-off.

Read .claude/CLAUDE.md at the project root. If it does not exist, refuse:

Error: No .claude/CLAUDE.md found. Run /wp-init first to scaffold the project.

Then refuse to run twice. This command has no resume entrypoint: a second run restarts at Step 2, re-dispatches wp-normalize, overwrites demo/.yolo-manifest.json and rebuilds the theme over whatever has been hand- corrected since. If the theme directory already holds built section template parts, or .claude/CLAUDE.md records a completed run, stop:

Error: <theme> already contains a built section flow (<n> template parts).
/wp-yolo rebuilds from the demo and would overwrite work done since the first run.
Use the per-step commands instead: /wp-section, /wp-page, /wp-seed, /wp-finalize.
Pass --force only to deliberately discard the current build.

Accept --force to override, and on a successful run append a ## Workflow — DONE, do not re-run note to .claude/CLAUDE.md recording the date and which steps completed. Extract function prefix, theme slug, languages (primary + secondary), template (basic|tailwind), CF plugin (scf|acf), and i18n strategy (suffix|polylang) — needed by every downstream command.

Read the full file on GitHub · 634 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. today Changed · +6 lines e9f3b568f258
  2. 4d ago Changed · +9 lines 6cd551e3d052
  3. 6d ago Changed · +68 lines a82fc135fd59
  4. 9d ago First seen · 551 lines · 20 tokens per session scan A 1ba4ab31f485

Subscribe to this mod's changes

wp-yolo is a command published in the GitHub repository yojahny55/claude-wp-builder (6 stars, last pushed yesterday), licensed MIT. It adds 20 tokens to every session and 10,295 once invoked, about $0.0001 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 commands, from other repositories