โ† All skills
Tencent SkillHub ยท Developer Tools

Wordpress REST API

OpenClaw skill that provides a WordPress REST API CLI for posts, pages, categories, tags, users, and custom requests using plain HTTP.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

OpenClaw skill that provides a WordPress REST API CLI for posts, pages, categories, tags, users, and custom requests using plain HTTP.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
package.json, SKILL.md, env_example.md, assets/wordpress-rest-api-guide.md, scripts/wp-cli.js

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 14 sections Open source page

Purpose

Provide a production-ready CLI for WordPress REST API automation. This skill focuses on content workflows (posts/pages), taxonomy (categories/tags), user reads, and safe custom requests without external HTTP libraries.

Best fit

You want a stable CLI for automation and bot workflows. You need JSON-in/JSON-out for pipelines. You prefer simple HTTP with no extra dependencies.

Not a fit

You must handle OAuth flows or complex browser-based auth. You need advanced media uploads (multipart streaming).

Requirements

Node.js 18+ (for native fetch).

One-time setup

Enable the WordPress REST API (default in modern WordPress). Create an Application Password for a WordPress user. Confirm the user has the right role (e.g., Editor/Admin).

Install

cd wordpress npm install

Run

node scripts/wp-cli.js help node scripts/wp-cli.js posts:list --query per_page=5 node scripts/wp-cli.js posts:create '@post.json' You can also use npm: npm run wp -- posts:list --query per_page=5

Credentials

Supported options (first match wins): Basic auth token: WP_BASIC_TOKEN (base64 of user:app_password) User + app password: WP_USER + WP_APP_PASSWORD JWT bearer token: WP_JWT_TOKEN

Required env

WP_BASE_URL (e.g., https://example.com)

Input conventions

JSON can be inline or loaded from file with @path. Query params use --query key=value (repeatable) or --query key1=value1,key2=value2.

Command map (high level)

Posts: posts:list, posts:get, posts:create, posts:update, posts:delete Pages: pages:list, pages:get, pages:create, pages:update, pages:delete Taxonomy: categories:list, categories:create tags:list, tags:create Users: users:list, users:get Advanced: request (raw method + path)

Operational guidance

Prefer context=view for read-only list calls. Use status=draft when staging content. Implement retries for 429 and transient 5xx errors in orchestrators.

Expected output

JSON to stdout; non-zero exit code on errors.

Security notes

Never log or commit tokens or application passwords. Use a dedicated low-privilege WordPress account where possible.

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
3 Docs1 Scripts1 Config
  • SKILL.md Primary doc
  • assets/wordpress-rest-api-guide.md Docs
  • env_example.md Docs
  • scripts/wp-cli.js Scripts
  • package.json Config