Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问clear审计未展示

wp-playgroundWP 游乐场

Agent Skill

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

总安装

945

周安装

39

GitHub Stars

公开资料未说明

下载量

309
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add vapvarun/claude-backup --skill "wp-playground"

简介

用于在 WP 游乐场相关生态中查找和检索相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。
  • 通过关键词、任务场景或来源线索进行信息筛选。
  • 安装命令:npx skills add vapvarun/claude-backup --skill "wp-playground"。
  • 建议确认权限范围和维护状态后再使用。

SKILL.md

name
wp-playground
description
Use for WordPress Playground workflows: fast disposable WP instances in browser or locally via @wp-playground/cli, auto-mounting plugins/themes, switching WP/PHP versions, blueprints, and debugging with Xdebug.
compatibility
Playground CLI requires Node.js 20.18+. Runs WP in WebAssembly with SQLite.

WordPress Playground

When to use

  • Spin up a disposable WordPress to test a plugin/theme without full stack setup
  • Run or iterate on Playground Blueprints (JSON) locally
  • Build a reproducible snapshot for sharing or CI
  • Switch WP/PHP versions quickly to reproduce issues
  • Debug plugin/theme code with Xdebug in isolation

Inputs required

  • Node.js 20.18+ (node -v)
  • Project path to mount
  • Desired WP version/PHP version (optional)
  • Blueprint location if using one
  • Port preference (default 9400)

Procedure

1) Quick local spin-up

cd /path/to/your-plugin-or-theme
npx @wp-playground/cli@latest server --auto-mount

Opens on http://localhost:9400. Auto-detects and installs plugin/theme.

Common options:

# Specify WP version
npx @wp-playground/cli@latest server --auto-mount --wp=6.9

# Specify PHP version
npx @wp-playground/cli@latest server --auto-mount --php=8.2

# Change port
npx @wp-playground/cli@latest server --auto-mount --port=9500

2) Manual mounts

For complex setups:

npx @wp-playground/cli@latest server \
  --mount=/path/to/plugin:/wordpress/wp-content/plugins/my-plugin \
  --mount=/path/to/theme:/wordpress/wp-content/themes/my-theme

3) Run a Blueprint

Blueprints define site setup in JSON:

# Run from local file
npx @wp-playground/cli@latest run-blueprint --blueprint=./my-blueprint.json

# Run from URL
npx @wp-playground/cli@latest run-blueprint --blueprint=https://example.com/blueprint.json

Example blueprint.json:

{
  "landingPage": "/wp-admin/",
  "preferredVersions": {
    "php": "8.2",
    "wp": "6.9"
  },
  "steps": [
    {
      "step": "login",
      "username": "admin",
      "password": "password"
    },
    {
      "step": "installPlugin",
      "pluginZipFile": {
        "resource": "url",
        "url": "https://downloads.wordpress.org/plugin/query-monitor.zip"
      }
    },
    {
      "step": "activatePlugin",
      "pluginPath": "query-monitor/query-monitor.php"
    }
  ]
}

4) Build a snapshot

Create shareable ZIP:

npx @wp-playground/cli@latest build-snapshot \
  --blueprint=./setup.json \
  --outfile=./my-site.zip

5) Debug with Xdebug

npx @wp-playground/cli@latest server --auto-mount --xdebug

Connect your IDE (VS Code/PhpStorm) to the port shown in output.

6) Browser-only workflows

No CLI needed:

  • Quick preview: https://playground.wordpress.net/
  • With blueprint: https://playground.wordpress.net/?blueprint-url=YOUR_JSON_URL
  • Blueprint editor: Use the live editor at playground.wordpress.net

7) Version testing matrix

Test across versions:

# Test on WP 6.8
npx @wp-playground/cli@latest server --auto-mount --wp=6.8

# Test on WP 6.9
npx @wp-playground/cli@latest server --auto-mount --wp=6.9

# Test on PHP 8.1
npx @wp-playground/cli@latest server --auto-mount --php=8.1

Verification

  • Plugin/theme appears in admin and is active
  • For blueprints: re-run with --verbosity=debug to confirm steps executed
  • Test the specific functionality you're debugging

Failure modes / debugging

CLI exits complaining about Node:

  • Upgrade to Node.js 20.18+

Mount not applied:

  • Use absolute paths
  • Add --verbosity=debug

Blueprint cannot read local assets:

  • Add --blueprint-may-read-adjacent-files

Port already used:

  • Change with --port=9500

Slow/locked UI:

  • Try disabling or enabling --experimental-multi-worker

Limitations

Playground uses WebAssembly + SQLite, so:

  • No MySQL (uses SQLite)
  • Some PHP extensions may not work
  • Not suitable for production data

Escalation

If PHP extensions or native DB access are required:

  • Fall back to wp-env, Docker, or Local

Consult:

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

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

平台分布

Claude Code

32.19%
按下载量换算99

windsurf

23.5%
按下载量换算73

OpenCode

17.1%
按下载量换算53

Codex

12.5%
按下载量换算39

Antigravity

7.9%
按下载量换算24

Gemini CLI

3.22%
按下载量换算10

安全审计

暂无安全审计结果可展示。

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills