Build, inspect, and extend WP-CLI command code using the documented stable internal API. Use when the task involves custom WP-CLI commands, package bootstrap...
Documents
WordPress WP-CLI Admin
Try itOperate WordPress installs through WP-CLI for inspection, core maintenance, plugin and theme management, users, options, content, media, cron, database tasks...
What it does
Operate WordPress installs through WP-CLI for inspection, core maintenance, plugin and theme management, users, options, content, media, cron, database tasks...
The skill document
WordPress WP-CLI Admin
Use this skill when a WordPress task belongs in wp, not /wp-json.
The point of this skill is not to memorize every command. The point is to get to the right command family, attach the right global flags, inspect the target install first, and avoid reckless write operations.
Use This Skill For
- checking whether a target install is healthy and reachable with
wp - plugin and theme management
- users, roles, comments, posts, pages, terms, and media operations
- options, transients, rewrites, cron, and cache-related site work
- core version, update, checksum, and maintenance tasks
- database export, import, and search-replace work
- multisite-aware administration when
--urlmatters
Do Not Use This Skill For
- REST-only integrations where the caller has HTTP access but not shell access
- building custom WP-CLI commands or packages
- blind destructive operations without a read-first pass or backup path
Workflow
1. Inspect The Install First
Start with:
scripts/inspect-install.sh --path /srv/www/site
scripts/inspect-install.sh --path /srv/www/site --url https://example.com
This checks that wp exists, confirms the path looks like a WordPress install, and prints useful status for core, URLs, plugins, and themes.
If you need the live command tree:
scripts/list-commands.sh
scripts/list-commands.sh --group plugin
2. Choose The Right Command Family
Read references/command-families.md.
Default mapping:
- core health or updates:
core - installed code:
plugin,theme,language - content and taxonomy:
post,page,comment,term,category,tag - accounts and permissions:
user,role,cap,super-admin - config and runtime:
option,transient,cron,rewrite,cache - database and migration:
db,search-replace - multisite:
site,network,super-admin
3. Attach The Right Global Flags
Read references/global-flags-and-safety.md.
Common flags:
--path=--url=--user=--ssh=--http=--skip-plugins--skip-themes--debug--quiet--format=json
4. Prefer Read-First Commands
Examples:
wp plugin list --format=table
wp theme list --format=table
wp option get home
wp core version
wp cron event list
Only then move to write operations such as plugin update, search-replace, option update, or db import.
5. Treat High-Risk Operations As Change Windows
Before destructive work:
- export the database
- use
search-replace --dry-runwhen available - verify the target URL in multisite
- avoid running broad updates without confirming versions and dependencies
Files
scripts/inspect-install.sh: inspect a target WordPress path with WP-CLIscripts/list-commands.sh: printwp helporwp helpfor live command discoveryreferences/command-families.md: command family cheat sheet for common WordPress admin tasksreferences/global-flags-and-safety.md: global arg patterns, remote execution, and destructive-operation rules
Related skills
Work with the WordPress REST API for route discovery, authentication, reads and writes, core endpoint selection, and custom namespace inspection. Use when a...
Read and write WordPress.com site content through WordPress.com's hosted MCP server. Thin pass-through to WordPress.com's official MCP; the live tool catalog...
Manage WordPress sites via REST API with explicit approvals, dry-run batches, and plugin/CPT tooling.
WP-CLI toolkit to audit, clean, and tune WordPress sites: database, autoload, slow queries, frontend.
Use when operating the installed `whoop` CLI for agent-friendly WHOOP access, cross-platform secret storage checks, daily briefs, summaries, health flags, ac...