with one click
studio
// Use WordPress Studio for local WordPress development, preferring MCP and falling back to the Studio CLI when needed.
// Use WordPress Studio for local WordPress development, preferring MCP and falling back to the Studio CLI when needed.
Audit a Studio-backed WordPress site for performance, accessibility, and visible frontend quality issues, then recommend or validate improvements.
Create, edit, build, and review a custom WordPress Gutenberg block plugin inside a Studio-backed site.
Create or update a custom WordPress plugin for site functionality that should not live in a theme or a block. Use when the user needs reusable behavior, admin/settings UI, hooks, REST endpoints, scheduled tasks, integrations, or server-side logic for a Studio-backed site.
Create a WordPress site from a rough idea using Studio and shared WordPress skills.
Create a modern WordPress block theme.
Route WordPress build and audit requests to the right implementation path for a Studio-backed site. Use when the user wants WordPress work and it is not yet clear whether the task should be handled as site creation, theme work, a custom block, a plugin, or an audit.
| name | studio |
| description | Use WordPress Studio for local WordPress development, preferring MCP and falling back to the Studio CLI when needed. |
Use this skill whenever the user wants to work with a local WordPress site in WordPress Studio.
This skill is the canonical source for:
Other skills should reference this skill for review and iteration instead of restating those steps.
Prefer WordPress Studio MCP tools over shell commands for WordPress operations.
Use the Studio CLI only when MCP is unavailable, failing, or explicitly required.
Keep this skill minimal. Do not duplicate command syntax or generic WordPress guidance that can be inferred from the tool surface.
Use MCP for:
wp_cliUse the CLI for:
studio wp actionsUse direct file edits for theme and plugin files when writing code.
studio site listSTUDIO_HOME from the common parent of existing site paths, or default to ~/Studio if no sites exist yet.mcp.json entry for normal usesite_list or site_info when you need to confirm connectivitysite_list or site_info.<site-path> as the root for generated artifacts rather than the Codex launch directory.wp_cli, block validation, or audit tools.wp_cli for arbitrary WordPress operations instead of dropping to the shell.studio CLI command that gets the job done.wp_cli content update that contains serialized WordPress block markup, run validate_blocks immediately.validate_blocks reports invalid blocks, treat that as a required fix step:Expected versus Actual markup to identify the serialization mismatchvalidate_blocksvalidate_blocks is mandatory after block-content writes or updates.auditing rather than embedding that workflow here.record_workflow_event only for meaningful workflow milestones such as started or completed when a specialist skill asks for it.