skills$openclaw/openclaw-connector
magnum-opus-v11.4k

by magnum-opus-v1

openclaw-connector – OpenClaw Skill

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

1.4k stars738 forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026design

Skill Snapshot

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

Maintainer

magnum-opus-v1

magnum-opus-v1

Maintains openclaw-connector in the OpenClaw Skills directory.

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

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

OpenClaw 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:

  • OPENCLAW_STORE_URL: The full URL of your WordPress site (e.g., https://example.com).
  • OPENCLAW_STORE_SECRET: The Secret Key from the OpenClaw Connector Lite 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

OpenClaw 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 OpenClaw Connector Lite WordPress plugin.

🛠 Prerequisites

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

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

🚀 Installation (Skill)

  1. Place the openclaw 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
OPENCLAW_STORE_URLYour website base URLhttps://yourstore.com
OPENCLAW_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: * `OPENCLAW_STORE_URL`: The full URL of your WordPress site (e.g., https://example.com). * `OPENCLAW_STORE_SECRET`: The Secret Key from the OpenClaw Connector Lite plugin settings.

FAQ

How do I install openclaw-connector?

Run openclaw add @magnum-opus-v1/wooclaw-lite in your terminal. This installs openclaw-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/wooclaw-lite. Review commits and README documentation before installing.