Blog about WP and stuff

Insights, tips, and stories from the web.

Have a project? Let's go

WordPress Released a new AI Agent Skill

By Toni Q. ·

If you’ve been using AI coding agents to build WordPress plugins or themes, you know the drill: the code generation part is getting surprisingly good, but then you’re stuck manually spinning up a test environment, checking if things actually work, fixing stuff and repeating the whole cycle. It’s tedious.

A WordPress contributor named Brandon Payton decided to do something about it. He built wp-playground, an AI agent skill that lets tools like Claude Code or OpenAI Codex spin up a live WordPress instance automatically through the Playground CLI — no manual setup needed.

What does that actually mean for you?

Basically the skill handles the boring parts: it detects what you’re building (a plugin, a theme), mounts it in the right place inside WordPress, starts the environment and signals when it’s ready to test. The agent can then use tools like curl or Playwright to poke around the site, check if things work and iterate without you babysitting the process.

One detail that stood out: startup time dropped from roughly a minute to just a few seconds after the helper scripts were introduced. That kind of thing makes a real difference when you’re going through ten rounds of “generate → test → fix.”

The Playground CLI also handles automatic login to WP-Admin, so the agent isn’t stumbling over authentication either.

How do you try it?

You’ll need Node.js and npm. Then from your project folder:

npx openskills install WordPress/agent-skills

# If you're using something other than Claude Code:
npx openskills sync

It works with Claude Code, Codex and other AI agents. The whole thing lives at github.com/WordPress/agent-skills which is also meant to become a home for more community-contributed skills down the line.

Early days, but promising

This is clearly a first step — the repo is new and the roadmap mentions things like persistent Playground environments and wp-cli integration that aren’t there yet. But the core idea is solid: give AI agents a proper feedback loop so they can actually verify the code they write, not just generate it into the void. If you’re already using AI tools to work on WordPress projects it’s worth a try.

Get in Touch

send an email to tquinonero.web@gmail.com