Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计通过

wp-cliWP CLI 搜索

Agent Skill

wp-cli 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

661

周安装

27

GitHub Stars

2

下载量

212
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:wp-cli(WP CLI 搜索)
来源仓库:https://github.com/johnie/skills
仓库路径:skills/wp-cli
安装命令:
npx skills add https://github.com/johnie/skills --skill wp-cli
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/johnie/skills --skill wp-cli

简介

wp-cli 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词快速定位候选结果时使用。

  • 适用于研究检索类任务,如命令行工具使用或 WordPress 相关查询。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前需确认权限范围和维护状态,注意可能触发联网或文件读写操作。
  • 建议结合原始 README 核验具体用法和功能边界。

SKILL.md

wp-cli

Terminal-first WordPress operations. Safer than wp-admin for bulk work, scriptable, SSH-friendly, and won't time out on 10k-row updates.

When to use

  • Site migration (local → staging → prod), including search-replace of URLs
  • Bulk plugin / theme / user / post / comment operations
  • Database export/import, optimization, repair
  • Reading or setting wp_options, config constants, or theme mods
  • Running or scheduling cron events
  • Multisite admin tasks (wp site...)
  • Anything scripted or SSH-driven where clicking through wp-admin isn't viable

When NOT to use

  • One-off edits a content editor would do in 10 seconds in the admin UI. CLI is overkill and error-prone for single-row clicks.
  • Data transformations that span millions of rows — WP's ORM will be slow; consider a direct SQL migration with an explicit transaction.
  • Anything that needs to run inside a WordPress plugin's hook lifecycle (e.g., REST validation, custom post type registration) — that's PHP code, not CLI.
  • Destructive commands without a current backup. wp db reset, wp db clean, bulk deletes — always snapshot first.

Preflight

Always verify before doing anything:

wp --version                  # wp-cli is installed
wp core is-installed          # WordPress is actually set up at this path
wp core version               # which WP version

If not at the WordPress root, pass --path=/path/to/wordpress or cd there first. On remote hosts, use --ssh=user@host/path or a configured alias (see Remote Execution).

Safety patterns

Backup before destructive work

# Database snapshot
wp db export backup-$(date +%Y%m%d-%H%M%S).sql

# Full site snapshot (db + content)
tar -czf site-backup-$(date +%Y%m%d-%H%M%S).tar.gz wp-content/ backup-*.sql

Dry-run when available

wp plugin update --all --dry-run
wp search-replace 'old.com' 'new.com' --dry-run

Dangerous commands — confirm explicitly

These are irreversible without a backup. Confirm with the user before running:

  • wp db reset — drops every table
  • wp db clean — removes tables
  • wp site delete (multisite) — removes a site and its content
  • wp user delete without --reassign — orphans the user's posts (they get deleted too). Always pass --reassign=<new_author_id> to reassign their content first. The flag exists because orphaning content is almost never what you want — the user's posts are the institutional record, not the user row.
  • wp post delete $(wp post list --format=ids) and similar bulk-delete pipes — quietly turn the whole site into a blank page if the filter is wrong.

Performance flags

--format=json              # machine-readable
--format=csv               # spreadsheet import
--format=ids               # space-separated IDs, for piping
--fields=ID,post_title     # return only what you need
--skip-plugins             # bypass plugin load (fast, may break plugin-dependent commands)
--skip-themes              # bypass theme load
--quiet                    # suppress info output

--skip-plugins is a scalpel: it makes wp db export instant, but breaks commands that rely on a plugin's hooks (e.g., ACF exporters, custom taxonomies registered by a plugin).

Command catalog

Full flag docs and gotchas are in references/commands.md. Categories:

CategoryPrefixTypical use
Databasewp dbexport, import, query, optimize, search-replace
Corewp coreinstall, update, verify-checksums, version
Pluginswp pluginlist, install, activate, update, delete
Themeswp themelist, install, activate, update, delete, theme mod
Userswp usercreate, list, delete (--reassign), update, roles, generate
Posts / Pageswp postlist, create, update, delete, generate, post term
Commentswp commentlist, approve, spam, trash, delete
Optionswp optionget, update, delete, list, pluck/patch for nested values
Cachewp cache / wp transientflush, delete, set, list
Cronwp cronevent list/run/schedule/delete, cron test
Configwp configcreate, get, set, shuffle-salts
Multisitewp sitelist, create, delete, empty, activate/archive

Workflows

Full step-by-step workflows — site migration, bulk plugin updates, user audit — live in references/examples.md. Load that file when the user is doing one of those tasks end-to-end.

Remote execution

Ad-hoc SSH

ssh user@example.com "cd /var/www/html && wp plugin list"

Configured aliases (preferred)

Define aliases once in ~/.wp-cli/config.yml:

@prod:
  ssh: user@example.com/var/www/html
@staging:
  ssh: user@staging.example.com/var/www/staging

Then:

wp @prod plugin list
wp @staging db export

Aliases beat ad-hoc SSH because they compose with every wp-cli flag (wp @prod --dry-run search-replace...) and don't invite shell-quoting bugs.

Common errors

ErrorCauseFix
The site you have requested is not installedNot at WordPress root / wp-config.php missingcd to root or --path=/path/to/wordpress
MySQL connection failedBad credentials or MySQL downCheck wp-config.php, confirm MySQL is running
Error: Can't select databaseDB doesn't existwp db create
PHP Fatal error: Allowed memory size exhaustedLarge op or heavy pluginsphp -d memory_limit=512M $(which wp) db export
This does not seem to be a WordPress installationWP files not foundCheck directory; confirm WP is actually installed
The \guid column is often used... but should not be updatedExpected warning--skip-columns=guid suppresses it; GUIDs are permanent IDs, not URLs

Antipatterns — when wp-cli is the wrong tool

  • Looping over millions of rows in shell with xargs or for. Each wp invocation bootstraps WordPress; 1M iterations = days. Prefer a single wp db query with a proper SQL statement, or a PHP-side batched job.
  • Using wp search-replace without --precise on serialized data larger than a hobby blog. --precise is slower but handles PHP serialized strings correctly; without it, serialized arrays silently corrupt.
  • Validation and domain logic. If the logic belongs inside a WP plugin's hook lifecycle, do it there. wp-cli is for operational work, not business rules.
  • Credential-bearing commands in your shell history. wp user create with --user_pass=... leaks. Pipe the password in or let wp-cli prompt.

Best practices

  1. Staging first, always. Never run an untested command on production.
  2. Track wp-config.php changes in version control when feasible (exclude secrets).
  3. Read the output. wp-cli warnings often precede data loss.
  4. Document non-obvious workflows — migrations, multisite conversions — as they happen; future-you will not remember which flags you used.
  5. --format=json whenever piping to jq or another script. The default human format rots.
  6. Verify after big changes — load the homepage, check admin, exercise critical paths.
  7. Keep wp-cli current: wp cli update.

References

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.53%
按下载量换算73

Claude

31.21%
按下载量换算66

Cursor

19.31%
按下载量换算41

Gemini CLI

9.52%
按下载量换算20

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/johnie/skills --skill wp-cli 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills