6.7k★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.
Skill Snapshot
| name | wpclaw-connector |
| description | Connects to a WooCommerce store via the WPClaw Connector plugin to fetch orders and products. OpenClaw Skills integration. |
| owner | magnum-opus-v1 |
| repository | magnum-opus-v1/wpclaw-lite |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @magnum-opus-v1/wpclaw-lite |
| last updated | Feb 7, 2026 |
Maintainer

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.
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.
- Install the plugin on your WordPress site.
- Go to WPClaw Lite (or WooCommerce > Settings > WPClaw).
- Copy your Store Secret Key.
🚀 Installation (Skill)
- Place the
wpclawfolder in your OpenClaw skills directory. - Open a terminal in the folder and run:
npm install
⚙️ Configuration
Configure your bot environment with the following variables:
| Variable | Description | Example |
|---|---|---|
WPCLAW_STORE_URL | Your website base URL | https://yourstore.com |
WPCLAW_STORE_SECRET | The sk_live_... key from the plugin | sk_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.
