wordpress-live-validation

wordpress-live-validation is a skill for Claude Code from notque/vexjoy-agent. It costs 15 tokens per session (2,288 once invoked), scanned A, original, MIT.

A browser-based checker for published WordPress posts using Playwright, a tool that controls a web browser automatically. It treats the page readers see as the source of truth rather than relying only on an API response.

In plain words
What is it for?
Use it to open live posts and check their content and rendering in an automated browser, including responsive checks where required.
Why use it?
It catches rendering problems that can remain hidden even when WordPress reports a successful upload.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Good fit Use it to open live posts and check their content and rendering in an automated browser, including responsive checks where required.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/notque/vexjoy-agent/wordpress-live-validation
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 notque/vexjoy-agent --skill wordpress-live-validation
Clone the repo
git clone --depth 1 https://github.com/notque/vexjoy-agent

Made for: Claude Code.

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 wordpress-live-validation

README.md
[![agentmods](https://agentmods.dev/badge/skills/notque/vexjoy-agent/wordpress-live-validation/github.svg)](https://agentmods.dev/skills/notque/vexjoy-agent/wordpress-live-validation)
Your own site
<a href="https://agentmods.dev/skills/notque/vexjoy-agent/wordpress-live-validation"><img src="https://agentmods.dev/badge/skills/notque/vexjoy-agent/wordpress-live-validation/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 wordpress-live-validation

Your own site · 80×15
<a href="https://agentmods.dev/skills/notque/vexjoy-agent/wordpress-live-validation"><img src="https://agentmods.dev/badge/skills/notque/vexjoy-agent/wordpress-live-validation.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 15 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,288 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00015 $0.02288
Opus 5 $0.00008 $0.01144
Sonnet 5 $0.00003 $0.00458
Haiku 4.5 $0.00002 $0.00229

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

Security

Grade A, and why

wordpress-live-validation 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 8d 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.

skills/content/wordpress-live-validation/SKILL.md · 192 lines

How it starts

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

WordPress Live Validation Skill

Overview

This skill loads a real WordPress post in a Playwright headless browser and verifies that what readers see matches what was uploaded. The browser is the source of truth -- REST API success does not guarantee correct rendering.

Browser backend selection: Playwright MCP (default) is used for automated validation and CI/CD. Use Chrome DevTools MCP when the user explicitly asks to "check in my browser" or "debug live", or when the task involves Lighthouse audits or performance profiling.

Reference Loading Table

Signal Load These Files Why
check specifications: severities, edge cases, JS extraction validation-checks.md Loads detailed guidance from validation-checks.md.
Playwright MCP tool signatures, pitfalls, availability detection playwright-tools.md Loads detailed guidance from playwright-tools.md.
step-by-step NAVIGATE, VALIDATE, RESPONSIVE procedures phase-checks.md Loads detailed guidance from phase-checks.md.
Phase 4 REPORT output format output-format.md Loads detailed guidance from output-format.md.
post-upload validation walkthrough; wordpress-uploader integration examples.md Loads detailed guidance from examples.md.
errors, error handling error-handling.md Loads detailed guidance from error-handling.md.

Instructions

Constraints (Always Applied)

  1. Read-Only Observation Only: Never click, type, fill forms, or modify anything on the WordPress site. This is observation-only validation—any write action risks mutating published content.

  2. Evidence-Based Reporting: Every check result must reference a concrete artifact (DOM value, network response, screenshot path). "Looks fine" is not acceptable. Report what the browser shows, not assumptions.

  3. Non-Blocking Reports: Failed validation produces a report but does not revert the upload or block the pipeline. The user decides how to act on findings.

Read the full file on GitHub · 192 lines

Files

What ships with it

6 files 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. 8d ago First seen · 192 lines · 15 tokens per session scan A 439a47fffbe8

Subscribe to this mod's changes

wordpress-live-validation is a skill published in the GitHub repository notque/vexjoy-agent (419 stars, last pushed 2d ago), licensed MIT. It adds 15 tokens to every session and 2,288 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-09-03.

Related

Other skills, from other repositories

playwright-cli

Automates browser interactions for testing and validating your own web applications using playwright-cli. Use when you need terminal-first browser control for navigation, form filling, screenshots, tracing, bound browser sessions, debugging, or generating Playwright test code. Only use against applications you own or…

testdino-hq/playwright-skill · 64 tokens

webapp-selenium-testing

Author and maintain versioned Selenium WebDriver tests with Java and JUnit 5. Use for creating, debugging, or running Selenium specs, implementing Page Objects, handling explicit waits, capturing screenshots, or setting up Maven test projects. Supports Chrome, Firefox, and Edge. Keywords: Selenium WebDriver, Java…

fugazi/test-automation-skills-agents · 84 tokens

playwright-best-practices

Use when writing Playwright tests, fixing flaky tests, debugging failures, implementing Page Object Model, configuring CI/CD, optimizing performance, mocking APIs, handling authentication or OAuth, testing accessibility (axe-core), file uploads/downloads, date/time mocking, WebSockets, geolocation, permissions…

currents-dev/playwright-best-practices-skill · 214 tokens

om-auto-qa-pr

QA a PR's UI change in a real browser through the configured browser-provider descriptor — first ensuring the PR has been reviewed (invoking om-auto-review-pr when it has not), then capturing screenshots and a pass/fail report, and optionally posting tracker evidence or self-QA labels without modifying source. Also…

open-mercato/skills · 81 tokens

om-integration-tests

Run and create integration/E2E tests by exploring the live app with the configured browser provider, preserving repository-native runners, reusing the shared test environment, and diagnosing failures from concrete artifacts.

open-mercato/skills · 43 tokens

sap-sac-test-automation

SAP Analytics Cloud (SAC) automated testing skill for designing capability-gated browser discovery and deterministic Playwright test suites for SAC stories, dashboards, reports, planning workflows, comments, permissions, visual regression, and reusable QA automation. This skill should be used when building SAC…

secondsky/sap-skills · 151 tokens