openclaw-connector
تایید شدهConnects to a WooCommerce store via the OpenClaw Connector Lite plugin to fetch orders and products.
(0)
۱.۰k
۳۳
۴۳
نصب مهارت
مهارتها کدهای شخص ثالث از مخازن عمومی GitHub هستند. SkillHub الگوهای مخرب شناختهشده را اسکن میکند اما نمیتواند امنیت را تضمین کند. قبل از نصب، کد منبع را بررسی کنید.
نصب سراسری (سطح کاربر):
npx skillhub install openclaw/skills/openclaw-connectorنصب در پروژه فعلی:
npx skillhub install openclaw/skills/openclaw-connector --projectمسیر پیشنهادی: ~/.claude/skills/openclaw-connector/
بررسی هوش مصنوعی
کیفیت دستورالعمل50
دقت توضیحات40
کاربردی بودن47
صحت فنی62
Scored 48 — functional WooCommerce integration with real script implementation and cryptographic signing. Loses points for requiring the OpenClaw Connector Lite plugin (limiting generality) and sparse documentation.
محتوای 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.