skills$openclaw/wpclaw-connector
magnum-opus-v16.7k

by magnum-opus-v1

wpclaw-connector – OpenClaw Skill

wpclaw-connector is an OpenClaw Skills integration for design workflows. Connects to a WooCommerce store via the WPClaw Connector plugin to fetch orders and products.

6.7k stars1.2k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026design

Skill Snapshot

namewpclaw-connector
descriptionConnects to a WooCommerce store via the WPClaw Connector plugin to fetch orders and products. OpenClaw Skills integration.
ownermagnum-opus-v1
repositorymagnum-opus-v1/wpclaw-lite
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @magnum-opus-v1/wpclaw-lite
last updatedFeb 7, 2026

Maintainer

magnum-opus-v1

magnum-opus-v1

Maintains wpclaw-connector in the OpenClaw Skills directory.

View GitHub profile
File Explorer
6 files
.
scripts
index.js
3.9 KB
_meta.json
316 B
package.json
186 B
README.md
1.5 KB
SKILL.md
1.1 KB
SKILL.md

name: wpclaw-connector description: Connects to a WooCommerce store via the WPClaw Connector plugin to fetch orders and products. user-invocable: true

WPClaw Connector

This skill allows you to interact with a WooCommerce store. You can check order status, search for products, and verify the store's connection health.

Configuration

The following environment variables are required:

  • WPCLAW_STORE_URL: The full URL of your WordPress site (e.g., https://example.com).
  • WPCLAW_STORE_SECRET: The Secret Key from the WPClaw Connector plugin settings.

Tools

check_order

Use this tool to retrieve detailed information about a specific order.

  • Input: id (integer) - The Order ID.
  • Output: Formatted string with Status, Total, Customer, and Items.

find_product

Use this tool to search for products by name or SKU.

  • Input: query (string) - The search term.
  • Output: List of matching products with IDs, Stock, and Price.

store_status

Use this tool to check if the store is reachable and the plugin is active.

  • Input: (None)
  • Output: Connection status message.
README.md

WPClaw Connector Skill 🦞

This is an OpenClaw Skill designed to bridge the gap between your AI agents and your WooCommerce store. It works in tandem with the WPClaw Connector WordPress plugin.

🛠 Prerequisites

To use this skill, you must have the WPClaw Connector plugin installed and active on your WordPress site.

  1. Install the plugin on your WordPress site.
  2. Go to WPClaw Lite (or WooCommerce > Settings > WPClaw).
  3. Copy your Store Secret Key.

🚀 Installation (Skill)

  1. Place the wpclaw folder in your OpenClaw skills directory.
  2. Open a terminal in the folder and run:
    npm install
    

⚙️ Configuration

Configure your bot environment with the following variables:

VariableDescriptionExample
WPCLAW_STORE_URLYour website base URLhttps://yourstore.com
WPCLAW_STORE_SECRETThe sk_live_... key from the pluginsk_live_abc123...

🧰 Available Tools

Once installed, your agent will have access to:

  • check_order: Retrieve status, totals, customer info, and line items for any Order ID.
  • find_product: Search for products by name or SKU to check stock and pricing.
  • store_status: Quickly verify if the connection between the bot and the site is healthy.

🔒 Security

Connection is secured via HMAC-SHA256 signature verification. Every request sent by this skill is signed with your Store Secret, ensuring that your data can only be accessed by authorized bots.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

Configuration

The following environment variables are required: * `WPCLAW_STORE_URL`: The full URL of your WordPress site (e.g., https://example.com). * `WPCLAW_STORE_SECRET`: The Secret Key from the WPClaw Connector plugin settings.

FAQ

How do I install wpclaw-connector?

Run openclaw add @magnum-opus-v1/wpclaw-lite in your terminal. This installs wpclaw-connector into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/magnum-opus-v1/wpclaw-lite. Review commits and README documentation before installing.