
Security News
Frontier AI Is Now Critical Infrastructure
The Fable shutdown shows how quickly model access can become a business continuity risk for AI-dependent engineering teams.
@robinpath/woocommerce
Advanced tools
WooCommerce REST API v3 — products, orders and customers on any self-hosted WooCommerce store. Uses the encrypted credential vault for per-store key/secret pairs.
WooCommerce module for RobinPath.
The woocommerce module lets you:
All functions are callable directly from RobinPath scripts with a simple, consistent API.
robinpath add @robinpath/woocommerce
1. Set up credentials
woocommerce.setCredentials "your-credentials"
2. listProducts
woocommerce.listProducts
| Function | Description |
|---|---|
woocommerce.setCredentials | Configure woocommerce credentials. |
woocommerce.listProducts | listProducts |
woocommerce.getProduct | getProduct |
woocommerce.createProduct | createProduct |
woocommerce.updateProduct | updateProduct |
woocommerce.deleteProduct | deleteProduct |
woocommerce.listOrders | listOrders |
woocommerce.getOrder | getOrder |
woocommerce.createOrder | createOrder |
woocommerce.updateOrder | updateOrder |
woocommerce.deleteOrder | deleteOrder |
woocommerce.listCustomers | listCustomers |
woocommerce.getCustomer | getCustomer |
woocommerce.createCustomer | createCustomer |
woocommerce.updateCustomer | updateCustomer |
woocommerce.listCategories | listCategories |
woocommerce.createCategory | createCategory |
woocommerce.listCoupons | listCoupons |
woocommerce.createCoupon | createCoupon |
woocommerce.getOrderNotes | getOrderNotes |
woocommerce.createOrderNote | createOrderNote |
woocommerce.getReport | getReport |
woocommerce.listShipping | listShipping |
woocommerce.listProducts
woocommerce.getProduct
woocommerce.createProduct
import { RobinPath } from "@wiredwp/robinpath";
import Module from "@robinpath/woocommerce";
const rp = new RobinPath();
rp.registerModule(Module.name, Module.functions);
rp.registerModuleMeta(Module.name, Module.functionMetadata);
const result = await rp.executeScript(`
woocommerce.setCredentials "your-credentials"
woocommerce.listProducts
`);
See MODULE.md for complete documentation including all parameters, return types, error handling, and advanced examples.
@robinpath/shopify — Shopify module for complementary functionality@robinpath/bigcommerce — BigCommerce module for complementary functionality@robinpath/square — Square module for complementary functionality@robinpath/json — JSON module for complementary functionalityMIT
FAQs
WooCommerce REST API v3 — products, orders and customers on any self-hosted WooCommerce store. Uses the encrypted credential vault for per-store key/secret pairs.
We found that @robinpath/woocommerce demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
The Fable shutdown shows how quickly model access can become a business continuity risk for AI-dependent engineering teams.

Security News
AI agents are pulling packages into environments no scanner is watching, creating exposure before security teams can see it.

Security News
GitHub Actions checkout now blocks risky pull_request_target checkouts by default to help prevent pwn request supply chain attacks.