wp-demo-verify

wp-demo-verify is a command for Claude Code from yojahny55/claude-wp-builder. It costs 36 tokens per session (1,732 once invoked), scanned A, original, MIT.

A browser-based page-checking command that scrolls through a demo or live web page, captures screenshots at several screen sizes, and reports machine-detected findings.

In plain words
What is it for?
Use it to inspect converted WordPress pages, responsive layouts, scrolling sections, and reduced-motion behavior.
Why use it?
It reveals layout or interaction problems that may appear between static views or only on mobile and desktop screens.

Command for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

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 to inspect converted WordPress pages, responsive layouts, scrolling sections, and reduced-motion behavior.

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-demo-verify

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

Your own site · 80×15
<a href="https://agentmods.dev/commands/yojahny55/claude-wp-builder/wp-demo-verify"><img src="https://agentmods.dev/badge/commands/yojahny55/claude-wp-builder/wp-demo-verify.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 36 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,732 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.00036 $0.01732
Opus 5 $0.00018 $0.00866
Sonnet 5 $0.00007 $0.00346
Haiku 4.5 $0.00004 $0.00173

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

Security

Grade A, and why

wp-demo-verify 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-demo-verify.md · 133 lines

How it starts

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

WP Demo Verify

A scroll page has no single state. Every scroll position is a different frame, and the failures live between the two you happened to look at. This walks the page mechanically, then hands you a contact sheet, because the half that matters is the half a machine cannot grade.

Step 1: Resolve the target

$ARGUMENTS is a file path or a URL. Default to demo/index.html. A URL lets this run against the converted WordPress page, which is the only way to prove the motion survived conversion. Serve files over HTTP when the page fetches anything; a file:// page silently falls back and proves nothing.

A directory (demo/) walks every *.html in it, one output folder per page under demo/.verify/<page>/, and findings.json carries a pages[] array. Craft builds always pass the directory: interior pages are where a build is emptiest.

node "${CLAUDE_PLUGIN_ROOT}/bin/demo-verify.mjs" --probe answers only "can this machine render?": exit 0 with the Chrome path, exit 2 with what is missing. /wp-demo runs it as the craft gate before writing any markup.

Step 2a: Detector

npx -y impeccable@4 detect <target> --json > <dir>/.verify/impeccable.json

impeccable is an external package this repo does not install, vendor or configure — it is fetched from the npm registry at run time via npx. Pin the major version (@4; @1 does not exist on the registry) so a future major release cannot silently change rule identifiers or output shape underneath this gate.

The exit code says whether the scan ran, not how many findings it made: 0 is a clean or advisory-only scan, 1 means a requested target could not be scanned at all, 2 means the scan completed and found at least one non-advisory finding — findings do not fail the process the way a linter's would, so a nonzero exit does not by itself mean "could not run." Only exit 1 is that case; treat it, any other exit code, a missing npx/no network reaching the registry, or stdout that fails to parse as JSON the same way: report "detector could not run" and fail the round on that basis, never read as zero findings. Human-readable text goes to stderr, so the redirect above captures only the JSON on stdout, which is what findings are counted from — never the exit code.

Read the full file on GitHub · 133 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 · +68 lines · +11 tokens per session edbf4dc06e1e
  2. 5d ago First seen · 65 lines · 25 tokens per session scan A 96de29b665f5

Subscribe to this mod's changes

wp-demo-verify is a command published in the GitHub repository yojahny55/claude-wp-builder (6 stars, last pushed today), licensed MIT. It adds 36 tokens to every session and 1,732 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-09-05.

Related

Other commands, from other repositories