wordpress-wp-cli-admin

Operate WordPress installs through WP-CLI for inspection, core maintenance, plugin and theme management, users, options, content, media, cron, database tasks, and multisite-aware administration. Use when shell, SSH, or node-local access exists and the task should be done with `wp` instead of the REST API or custom WP-CLI package development.

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "wordpress-wp-cli-admin" with this command: npx skills add matthewxmurphy/wordpress-wp-cli-admin

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 --url matters

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=<path>
  • --url=<url>
  • --user=<login>
  • --ssh=<target>
  • --http=<url>
  • --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-run when 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-CLI
  • scripts/list-commands.sh: print wp help or wp help <group> for live command discovery
  • references/command-families.md: command family cheat sheet for common WordPress admin tasks
  • references/global-flags-and-safety.md: global arg patterns, remote execution, and destructive-operation rules

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

Content Collector

个人内容收藏与知识管理系统。收藏、整理、检索、二创。 Use when: (1) 用户分享链接/文字/截图并要求保存或收藏, (2) 用户说"收藏这个"/"存一下"/"记录下来"/"save this"/"bookmark"/"clip this", (3) 用户要求按关键词/标签搜索之前收藏的内容, (4) 用...

Registry SourceRecently Updated
Coding

Github Stars Tracker

GitHub 仓库 Stars 变化监控与通知。追踪指定仓库的 star 增长、fork 变化,发现新趋势。适合开发者关注项目动态。

Registry SourceRecently Updated
Coding

RabbitMQ client guide for Tencent Cloud TDMQ

RabbitMQ 客户端代码指南。当用户需要编写、调试或审查 RabbitMQ 应用代码时使用。涵盖:用任意语言(Java/Go/Python/PHP/.NET)写生产者或消费者;排查连接暴增、消息丢失、Broken pipe、消费慢、漏消费等客户端问题;审查 spring-boot-starter-amqp、a...

Registry SourceRecently Updated